/* ============================
   PureFlow Water Filtration
   Blue & White Theme
   ============================ */

/* ---- INLINE LEAD SECTION ---- */
.inline-lead-section {
  background: linear-gradient(90deg, var(--primary-dark) 0%, var(--primary) 65%, var(--accent) 100%);
  padding: 1rem 0;
  box-shadow: 0 2px 12px rgba(26,86,219,0.2);
}
.inline-lead-section .container {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.inline-lead-text {
  color: rgba(255,255,255,0.95);
  font-size: 0.9rem;
  flex-shrink: 0;
}
.inline-lead-form {
  display: flex;
  gap: 0.5rem;
  flex: 1;
  align-items: center;
  flex-wrap: wrap;
}
.inline-lead-form input {
  flex: 1;
  min-width: 140px;
  padding: 0.55rem 0.9rem;
  border: none;
  border-radius: 7px;
  font-size: 0.88rem;
  outline: none;
  background: rgba(255,255,255,0.95);
  color: var(--gray-800);
}
.inline-lead-form input::placeholder { color: var(--gray-400); }
.inline-lead-btn {
  background: #10b981;
  color: white;
  border: none;
  padding: 0.55rem 1.25rem;
  border-radius: 7px;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
  flex-shrink: 0;
}
.inline-lead-btn:hover { background: #059669; }
@media (max-width: 768px) {
  .inline-lead-text { display: none; }
  .inline-lead-form { flex-wrap: nowrap; }
}
@media (max-width: 480px) {
  .inline-lead-form input:first-child { display: none; }
}

/* ---- FOOTER ALL AREAS ---- */
.footer-areas-all {
  background: var(--primary-deeper);
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-areas-title {
  color: rgba(255,255,255,0.55);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}
.footer-areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 0.5rem;
}
.footer-area-link {
  color: rgba(255,255,255,0.6);
  font-size: 0.8rem;
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}
.footer-area-link:hover { color: white; }
.footer-area-link:not(:last-child)::after {
  content: '·';
  margin-left: 0.5rem;
  color: rgba(255,255,255,0.25);
}

@media (max-width: 768px) {
  .sticky-lead-text { display: none; }
  body.has-sticky-bar { padding-top: 54px; }
}
@media (max-width: 480px) {
  .sticky-lead-form input:first-child { display: none; }
  .sticky-lead-inner { gap: 0.4rem; }
}

:root {
  --primary: #1a56db;
  --primary-dark: #1e3a8a;
  --primary-deeper: #0f2563;
  --primary-light: #dbeafe;
  --accent: #0ea5e9;
  --accent-light: #bae6fd;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;
  --success: #10b981;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
  --shadow: 0 4px 16px rgba(26,86,219,0.12);
  --shadow-lg: 0 8px 32px rgba(26,86,219,0.18);
  --radius: 10px;
  --radius-lg: 16px;
  --transition: 0.25s ease;
}

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

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

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.25;
  color: var(--gray-900);
}
h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.125rem; }
p { margin-bottom: 1rem; color: var(--gray-600); }

.section-label {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: 100px;
  margin-bottom: 0.75rem;
}
.section-title { margin-bottom: 0.75rem; }
.section-subtitle { font-size: 1.1rem; color: var(--gray-600); max-width: 640px; }
.text-center { text-align: center; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }

/* ---- LAYOUT ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.section-bg { background: var(--gray-50); }
.section-blue { background: var(--primary-light); }
.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-6 { margin-bottom: 3rem; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}
.btn-white {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--primary-light);
  color: var(--primary-dark);
  border-color: var(--primary-light);
}
.btn-lg { padding: 1rem 2.25rem; font-size: 1.1rem; }
.btn-sm { padding: 0.55rem 1.2rem; font-size: 0.9rem; }

/* ---- TOP BAR ---- */
.topbar {
  background: var(--primary-deeper);
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  padding: 0.5rem 0;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.topbar a { color: rgba(255,255,255,0.85); }
.topbar a:hover { color: var(--white); }
.topbar-items { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.topbar-item { display: flex; align-items: center; gap: 0.4rem; }
.topbar-item svg { opacity: 0.7; flex-shrink: 0; }

/* ---- HEADER / NAV ---- */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
  gap: 1rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
.logo-text { line-height: 1.15; }
.logo-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary-dark);
  display: block;
}
.logo-tag {
  font-size: 0.7rem;
  color: var(--gray-400);
  display: block;
  letter-spacing: 0.04em;
}

.nav { display: flex; align-items: center; gap: 0.25rem; }
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 0.85rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray-700);
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--primary); background: var(--primary-light); }
.nav-link svg { transition: transform var(--transition); }
.nav-item:hover .nav-link svg { transform: rotate(180deg); }

.dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  min-width: 240px;
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
  z-index: 100;
}
.nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 0.85rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-700);
  border-radius: 8px;
  transition: all var(--transition);
}
.dropdown-link:hover { background: var(--primary-light); color: var(--primary); }
.dropdown-link svg { color: var(--primary); opacity: 0.7; flex-shrink: 0; }
.dropdown-divider { height: 1px; background: var(--gray-200); margin: 0.35rem 0; }

.nav-cta { display: flex; align-items: center; gap: 0.75rem; margin-left: 0.5rem; }
.nav-phone {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  color: var(--primary-dark);
  font-size: 1rem;
}
.nav-phone:hover { color: var(--primary); }

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  background: none;
  border: none;
}
.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ---- HERO ---- */
.hero {
  background: linear-gradient(135deg, var(--primary-deeper) 0%, var(--primary-dark) 50%, var(--primary) 100%);
  color: var(--white);
  padding: 5.5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='30'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero .container {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.12);
  color: var(--accent-light);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(255,255,255,0.2);
}
.hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero h1 span { color: var(--accent-light); }
.hero-desc { font-size: 1.15rem; color: rgba(255,255,255,0.8); margin-bottom: 2rem; max-width: 520px; }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-trust { display: flex; gap: 2rem; flex-wrap: wrap; }
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
}
.hero-trust-item svg { color: var(--accent-light); }

.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.hero-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  color: white;
}
.hero-card-title { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--accent-light); margin-bottom: 0.75rem; }
.hero-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.hero-stat { text-align: center; }
.hero-stat-num { font-size: 1.75rem; font-weight: 800; color: white; }
.hero-stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.7); }

.hero-services { display: flex; flex-direction: column; gap: 0.5rem; }
.hero-service-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
}
.hero-service-item::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-light);
  flex-shrink: 0;
}

/* ---- TRUST BAR ---- */
.trust-bar {
  background: var(--primary);
  color: white;
  padding: 1.25rem 0;
}
.trust-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
  font-weight: 600;
}
.trust-item svg { color: var(--accent-light); flex-shrink: 0; }
.trust-divider { width: 1px; height: 30px; background: rgba(255,255,255,0.2); }

/* ---- SERVICE CARDS ---- */
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.service-icon {
  width: 56px;
  height: 56px;
  background: var(--primary-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 1.25rem;
  transition: all var(--transition);
}
.service-card:hover .service-icon {
  background: var(--primary);
  color: white;
}
.service-card h3 { margin-bottom: 0.6rem; font-size: 1.2rem; }
.service-card p { flex: 1; font-size: 0.95rem; margin-bottom: 1.25rem; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  margin-top: auto;
}
.service-link:hover { gap: 0.6rem; }

/* ---- WHY CHOOSE US ---- */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.why-content { }
.why-features { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem; }
.why-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.why-feature-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--primary-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}
.why-feature-title { font-weight: 700; margin-bottom: 0.25rem; color: var(--gray-800); }
.why-feature-desc { font-size: 0.92rem; color: var(--gray-600); margin: 0; }

.why-visual {
  background: linear-gradient(135deg, var(--primary-light), var(--accent-light));
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.cert-badge {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: var(--shadow-sm);
}
.cert-badge svg { color: var(--primary); flex-shrink: 0; }
.cert-badge-title { font-weight: 700; font-size: 0.95rem; color: var(--gray-800); }
.cert-badge-desc { font-size: 0.8rem; color: var(--gray-600); }

/* ---- HOW IT WORKS ---- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; position: relative; }
.steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 28px);
  right: calc(12.5% + 28px);
  height: 2px;
  background: linear-gradient(90deg, var(--primary-light), var(--primary), var(--primary-light));
}
.step { text-align: center; position: relative; }
.step-num {
  width: 56px;
  height: 56px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 800;
  margin: 0 auto 1.25rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 6px var(--primary-light);
}
.step h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.step p { font-size: 0.88rem; }

/* ---- PRODUCTS ---- */
.product-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--primary); }
.product-img {
  background: linear-gradient(135deg, var(--primary-light), var(--accent-light));
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}
.product-body { padding: 1.5rem; }
.product-tag {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  margin-bottom: 0.6rem;
}
.product-name { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; }
.product-desc { font-size: 0.88rem; color: var(--gray-600); margin-bottom: 1rem; }
.product-features { margin-bottom: 1.25rem; }
.product-feature {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--gray-600);
  margin-bottom: 0.3rem;
}
.product-feature svg { color: var(--success); flex-shrink: 0; }

/* ---- AREAS ---- */
.areas-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0.75rem; }
.area-chip {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 0.6rem 1rem;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: all var(--transition);
  text-decoration: none;
}
.area-chip:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* ---- TESTIMONIALS ---- */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 0.5rem;
  left: 1.25rem;
  font-size: 4rem;
  color: var(--primary-light);
  font-family: Georgia, serif;
  line-height: 1;
}
.stars { display: flex; gap: 0.2rem; color: #f59e0b; margin-bottom: 1rem; }
.testimonial-text { font-size: 0.95rem; color: var(--gray-600); margin-bottom: 1.25rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.author-name { font-weight: 700; font-size: 0.95rem; }
.author-location { font-size: 0.8rem; color: var(--gray-400); }

/* ---- FAQ ---- */
.faq-list { display: flex; flex-direction: column; gap: 1rem; max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  font-weight: 700;
  font-size: 1rem;
  color: var(--gray-800);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background var(--transition);
}
.faq-q:hover { background: var(--gray-50); }
.faq-q.active { color: var(--primary); background: var(--primary-light); }
.faq-q svg { flex-shrink: 0; transition: transform var(--transition); }
.faq-q.active svg { transform: rotate(45deg); }
.faq-a { padding: 0 1.5rem; max-height: 0; overflow: hidden; transition: all 0.35s ease; }
.faq-a.open { max-height: 500px; padding: 0 1.5rem 1.25rem; }
.faq-a p { font-size: 0.95rem; color: var(--gray-600); margin: 0; }

/* ---- BLOG ---- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.blog-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.blog-thumb {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  padding: 1.5rem;
}
.blog-thumb-title { font-size: 1rem; font-weight: 700; text-align: center; }
.blog-body { padding: 1.5rem; }
.blog-cat {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  margin-bottom: 0.6rem;
}
.blog-title { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--gray-800); }
.blog-title a { color: inherit; }
.blog-title a:hover { color: var(--primary); }
.blog-excerpt { font-size: 0.88rem; color: var(--gray-600); margin-bottom: 1rem; }
.blog-meta { display: flex; align-items: center; gap: 1rem; font-size: 0.8rem; color: var(--gray-400); }

/* ---- CTA SECTION ---- */
.cta-section {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: white;
  padding: 5rem 0;
  text-align: center;
}
.cta-section h2 { color: white; margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,0.8); font-size: 1.1rem; max-width: 600px; margin: 0 auto 2rem; }
.cta-section .btn-group { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---- BREADCRUMBS ---- */
.breadcrumbs {
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
  padding: 0.75rem 0;
  font-size: 0.85rem;
  color: var(--gray-600);
}
.breadcrumbs ol { display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; }
.breadcrumbs li { display: flex; align-items: center; gap: 0.5rem; }
.breadcrumbs li:not(:last-child)::after { content: '/'; color: var(--gray-400); }
.breadcrumbs a { color: var(--gray-600); }
.breadcrumbs a:hover { color: var(--primary); }
.breadcrumbs li:last-child { color: var(--primary); font-weight: 600; }

/* ---- PAGE HERO ---- */
.page-hero {
  background: linear-gradient(135deg, var(--primary-deeper) 0%, var(--primary-dark) 60%, var(--primary) 100%);
  color: white;
  padding: 4rem 0;
  text-align: center;
}
.page-hero h1 { color: white; margin-bottom: 1rem; }
.page-hero p { color: rgba(255,255,255,0.8); font-size: 1.1rem; max-width: 640px; margin: 0 auto; }

/* ---- DARK HERO (keyword pages) ---- */
.kw-hero {
  position: relative;
  background: linear-gradient(135deg, #000000 0%, #0a0a1a 40%, #0f1e4a 100%);
  color: white;
  padding: 5rem 0 4.5rem;
  overflow: hidden;
}
.kw-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 20% 50%, rgba(26,86,219,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 80% 80%, rgba(14,165,233,0.1) 0%, transparent 60%);
  pointer-events: none;
}
.kw-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231a56db' fill-opacity='0.04'%3E%3Ccircle cx='40' cy='40' r='40'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.kw-hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 3.5rem;
  align-items: center;
}
.kw-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(26,86,219,0.25);
  border: 1px solid rgba(26,86,219,0.5);
  color: #93c5fd;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}
.kw-hero-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3b82f6;
  box-shadow: 0 0 0 0 rgba(59,130,246,0.7);
  animation: pulse-ring 2s infinite;
  flex-shrink: 0;
}
@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(59,130,246,0.7); }
  70% { box-shadow: 0 0 0 8px rgba(59,130,246,0); }
  100% { box-shadow: 0 0 0 0 rgba(59,130,246,0); }
}
.kw-hero h1 {
  color: white;
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.kw-hero h1 span { color: #60a5fa; }
.kw-hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.72);
  margin-bottom: 2rem;
  line-height: 1.7;
  max-width: 540px;
}
.kw-checklist {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 2.25rem;
}
.kw-checklist-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}
.kw-checklist-item svg { color: #34d399; flex-shrink: 0; }
.kw-hero-ctas { display: flex; gap: 0.875rem; flex-wrap: wrap; }
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: white;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.9rem 2rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 4px 20px rgba(26,86,219,0.4);
}
.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(26,86,219,0.55);
  color: white;
}
.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.9rem 1.75rem;
  border-radius: var(--radius);
  border: 1.5px solid rgba(255,255,255,0.3);
  text-decoration: none;
  transition: all 0.25s ease;
}
.btn-hero-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
  color: white;
}

/* Lead form card inside dark hero */
.kw-form-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 2.25rem 2rem;
  backdrop-filter: blur(12px);
}
.kw-form-card-header { text-align: center; margin-bottom: 1.5rem; }
.kw-form-card-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: white;
  margin-bottom: 0.35rem;
}
.kw-form-card-sub {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
}
.kw-form-card form { display: flex; flex-direction: column; gap: 0.75rem; }
.kw-form-card input,
.kw-form-card select,
.kw-form-card textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  background: rgba(255,255,255,0.92);
  border: 1.5px solid transparent;
  border-radius: var(--radius);
  font-size: 0.95rem;
  color: var(--gray-800);
  outline: none;
  transition: border-color 0.2s;
}
.kw-form-card input:focus,
.kw-form-card select:focus,
.kw-form-card textarea:focus { border-color: var(--primary); }
.kw-form-card .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.kw-form-btn {
  width: 100%;
  padding: 0.95rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  font-weight: 800;
  font-size: 1rem;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.25s;
  box-shadow: 0 4px 16px rgba(26,86,219,0.45);
}
.kw-form-btn:hover { transform: translateY(-1px); box-shadow: 0 6px 22px rgba(26,86,219,0.6); }
.kw-form-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  margin-top: 0.5rem;
}

/* Dark trust bar */
.kw-trust-bar {
  background: rgba(255,255,255,0.04);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 1rem 0;
  position: relative;
  z-index: 1;
}
.kw-trust-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 1rem;
}
.kw-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
}
.kw-trust-item svg { color: #60a5fa; }

/* Problem/solution cards (dark keyword pages) */
.kw-problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.kw-problem-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  border: 1px solid var(--gray-200);
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}
.kw-problem-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}
.kw-problem-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(26,86,219,0.15);
  border-color: var(--primary);
}
.kw-problem-icon {
  width: 52px;
  height: 52px;
  background: var(--primary-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 1rem;
}
.kw-problem-title { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.4rem; color: var(--gray-900); }
.kw-problem-desc { font-size: 0.875rem; color: var(--gray-600); margin: 0; }

/* Stats strip */
.kw-stats-strip {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-deeper));
  padding: 3.5rem 0;
  color: white;
}
.kw-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.kw-stat-num {
  font-size: 2.5rem;
  font-weight: 900;
  color: white;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 0.35rem;
}
.kw-stat-num span { color: #60a5fa; }
.kw-stat-label { font-size: 0.85rem; color: rgba(255,255,255,0.65); font-weight: 500; }

/* Two-col content section */
.kw-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.kw-split-content {}
.kw-split-content h2 { font-size: clamp(1.7rem, 3vw, 2.25rem); font-weight: 800; margin-bottom: 1rem; color: var(--gray-900); }
.kw-split-content p { color: var(--gray-600); font-size: 0.975rem; line-height: 1.75; }
.kw-check-list { display: flex; flex-direction: column; gap: 0.85rem; margin-top: 1.5rem; }
.kw-check-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--gray-700);
}
.kw-check-icon {
  width: 22px;
  height: 22px;
  min-width: 22px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-top: 0.1rem;
}
.kw-check-icon svg { width: 12px; height: 12px; }
.kw-split-visual {
  background: linear-gradient(135deg, #000 0%, #0f1e4a 100%);
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}
.kw-split-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 70% at 50% 50%, rgba(26,86,219,0.2) 0%, transparent 70%);
}
.kw-split-stat {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.kw-split-stat-item {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.kw-split-stat-num { font-size: 2rem; font-weight: 900; color: #60a5fa; line-height: 1; }
.kw-split-stat-text { font-size: 0.875rem; color: rgba(255,255,255,0.7); line-height: 1.4; }
.kw-split-stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.08em; }

/* Dark CTA */
.kw-cta {
  background: linear-gradient(135deg, #000 0%, #0a1628 50%, #0f2563 100%);
  padding: 5.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.kw-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 50% 50%, rgba(26,86,219,0.2) 0%, transparent 70%);
}
.kw-cta .container { position: relative; z-index: 1; }
.kw-cta h2 {
  color: white;
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  font-weight: 900;
  margin-bottom: 1rem;
}
.kw-cta p { color: rgba(255,255,255,0.65); font-size: 1.05rem; max-width: 580px; margin: 0 auto 2.25rem; }
.kw-cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Responsive */
@media (max-width: 1024px) {
  .kw-hero .container { grid-template-columns: 1fr; }
  .kw-form-card { max-width: 480px; }
  .kw-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .kw-problem-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .kw-hero { padding: 3.5rem 0 3rem; }
  .kw-hero h1 { font-size: 2.1rem; }
  .kw-split { grid-template-columns: 1fr; gap: 2.5rem; }
  .kw-problem-grid { grid-template-columns: 1fr; }
  .kw-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .kw-form-card .form-row { grid-template-columns: 1fr; }
}

/* ---- CONTACT ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 3rem; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}
.contact-label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gray-400); font-weight: 600; }
.contact-value { font-weight: 600; color: var(--gray-800); }

.form-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group.full { grid-column: 1 / -1; }
label { font-size: 0.88rem; font-weight: 600; color: var(--gray-700); }
input, select, textarea {
  padding: 0.7rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--gray-800);
  background: var(--white);
  transition: border-color var(--transition);
  width: 100%;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26,86,219,0.1);
}
textarea { resize: vertical; min-height: 120px; }

/* ---- FOOTER ---- */
.footer { background: var(--primary-deeper); color: rgba(255,255,255,0.8); }
.footer-top { padding: 4rem 0 2.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2.5rem; }
.footer-brand { }
.footer-logo { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 1rem; }
.footer-logo-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
.footer-logo-name { font-size: 1.1rem; font-weight: 800; color: white; }
.footer-desc { font-size: 0.9rem; line-height: 1.7; margin-bottom: 1.25rem; color: rgba(255,255,255,0.65); }
.footer-contact { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-contact-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.88rem; color: rgba(255,255,255,0.75); }
.footer-contact-item a { color: rgba(255,255,255,0.75); }
.footer-contact-item a:hover { color: white; }
.footer-contact-item svg { flex-shrink: 0; opacity: 0.6; }

.footer-col h4 { color: white; font-size: 0.95rem; margin-bottom: 1.1rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-link { font-size: 0.88rem; color: rgba(255,255,255,0.65); transition: color var(--transition); }
.footer-link:hover { color: white; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: white; }
.footer-bottom-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }

/* ---- AREA PAGE SPECIFIC ---- */
.area-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.15);
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

/* ---- CONTENT SECTIONS ---- */
.content-section { max-width: 860px; margin: 0 auto; }
.content-section h2 { margin: 2rem 0 1rem; }
.content-section h3 { margin: 1.5rem 0 0.75rem; }
.content-section ul { margin-bottom: 1rem; }
.content-section ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  color: var(--gray-600);
}
.content-section ul li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
  margin-top: 0.55rem;
}

/* ---- HIGHLIGHT BOX ---- */
.highlight-box {
  background: var(--primary-light);
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}
.highlight-box p { color: var(--primary-dark); margin: 0; font-weight: 500; }

/* ---- STAT SECTION ---- */
.stats-bar { background: var(--primary); color: white; padding: 3rem 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); text-align: center; gap: 1rem; }
.stat-item { }
.stat-num { font-size: 2.5rem; font-weight: 800; color: white; line-height: 1; margin-bottom: 0.5rem; }
.stat-label { font-size: 0.9rem; color: rgba(255,255,255,0.75); }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps::before { display: none; }
  .areas-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 3.5rem 0; }
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-bar .container { justify-content: flex-start; }
  .trust-divider { display: none; }
  .nav { display: none; }
  .nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: white;
    padding: 5rem 2rem 2rem;
    overflow-y: auto;
    z-index: 999;
    gap: 0.5rem;
  }
  .nav.open .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0 0 0 1rem;
  }
  .mobile-toggle { display: flex; z-index: 1001; position: relative; }
  .nav-cta .nav-phone { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .topbar .container { flex-direction: column; align-items: flex-start; }
}


/* ---- HONEST-STYLE LIGHT HERO ---- */
.hero-honest {
  background: linear-gradient(160deg, #ffffff 0%, #f0f7ff 60%, #dbeafe 100%);
  padding: 5rem 0 4.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #bfdbfe;
}
.hero-honest::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% -10%, rgba(26,86,219,0.09) 0%, transparent 65%);
  pointer-events: none;
}
.hero-honest .container { position: relative; }
.hero-promo-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary);
  color: white;
  padding: 0.42rem 1.25rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero-honest h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 900;
  color: #0f172a;
  line-height: 1.1;
  margin-bottom: 1.1rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.hero-honest h1 span { color: var(--primary); }
.hero-sub {
  font-size: 1.15rem;
  color: #475569;
  max-width: 620px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}
.hero-trust-strip {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.25rem;
}
.hero-trust-pill {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: white;
  border: 1.5px solid #bfdbfe;
  border-radius: 50px;
  padding: 0.45rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #1e3a8a;
  box-shadow: 0 1px 4px rgba(26,86,219,0.07);
}
.hero-trust-pill svg { color: var(--primary); flex-shrink: 0; }
.hero-cta-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-dark {
  background: #0f172a;
  color: white !important;
  border-color: #0f172a;
}
.btn-dark:hover {
  background: #1e293b;
  border-color: #1e293b;
  transform: translateY(-2px);
}
/* Inline lead updated look */
.inline-lead-section strong { font-weight: 800; }
/* Social proof strip */
.proof-strip {
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  padding: 1.25rem 0;
}
.proof-strip .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.proof-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #374151;
}
.proof-item svg { color: var(--primary); }
.proof-item .proof-num {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--primary);
}
@media (max-width: 768px) {
  .hero-honest { padding: 3.5rem 0 3rem; }
  .hero-trust-strip { gap: 0.5rem; }
  .hero-trust-pill { font-size: 0.78rem; padding: 0.38rem 0.8rem; }
  .proof-strip .container { gap: 1.25rem; }
}
