/* ============================================
   Auto Parts Leads — Custom Stylesheet
   Bootstrap 5 + Poppins + Font Awesome 6
   ============================================ */

/* ---------- Base ---------- */
:root {
  --red:       #dc2626;
  --red-dark:  #b91c1c;
  --red-light: #fef2f2;
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50:  #f8fafc;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--slate-900);
  background: #fff;
}

/* ---------- Typography helpers ---------- */
.text-red      { color: var(--red) !important; }
.bg-red        { background-color: var(--red) !important; }
.bg-slate-900  { background-color: var(--slate-900) !important; }
.bg-slate-800  { background-color: var(--slate-800) !important; }
.bg-slate-950  { background-color: #020617 !important; }
.bg-slate-50   { background-color: var(--slate-50) !important; }
.text-slate-400{ color: var(--slate-400) !important; }
.text-slate-500{ color: var(--slate-500) !important; }
.text-slate-600{ color: var(--slate-600) !important; }
.text-slate-900{ color: var(--slate-900) !important; }

/* ---------- Navbar ---------- */
.navbar {
  border-bottom: 1px solid var(--slate-100);
  box-shadow: 0 1px 4px rgba(0,0,0,.05);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-weight: 800;
  font-size: 26px;
  color: var(--slate-900) !important;
  text-decoration: none;
}

.navbar-brand .brand-icon {
  background: var(--red);
  color: #fff;
  padding: .45rem .55rem;
  border-radius: .5rem;
  font-size: 1.1rem;
  box-shadow: 0 2px 6px rgba(220,38,38,.35);
}

.navbar-brand .brand-red { color: var(--red); }

.nav-link {
  font-weight: 600;
  font-size: .875rem;
  color: var(--slate-600) !important;
  transition: color .2s;
}
.nav-link:hover { color: var(--red) !important; }

.btn-phone {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-weight: 700;
  color: var(--slate-800);
  text-decoration: none;
  font-size: 20px;
  transition: color .2s;
}
.btn-phone:hover { color: var(--red); }
.btn-phone .icon-circle {
  background: var(--red);
  color: #fff;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  flex-shrink: 0;
}

.btn-primary-red {
  background: var(--red);
  color: #fff !important;
  font-weight: 700;
  border: none;
  border-radius: .5rem;
  padding: .45rem 1.25rem;
  font-size: .875rem;
  box-shadow: 0 3px 10px rgba(220,38,38,.3);
  transition: background .2s, transform .15s;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}
.btn-primary-red:hover { background: var(--red-dark); transform: translateY(-1px); }

/* ---------- Hero ---------- */
.hero-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--slate-900) 0%, var(--slate-800) 50%, var(--slate-900) 100%);
  color: #fff;
  padding: 5rem 0;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .2;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(15,23,42,.95) 0%, rgba(15,23,42,.8) 60%, rgba(15,23,42,.6) 100%);
}
.hero-content { position: relative; z-index: 2; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(220,38,38,.15);
  border: 1px solid rgba(220,38,38,.3);
  color: #f87171;
  font-weight: 600;
  font-size: .8rem;
  padding: .35rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.02em;
  margin-bottom: 1.25rem;
}
.hero-title .red { color: #f87171; }

.hero-phone-link {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  text-decoration: none;
  padding: .9rem 1.5rem;
  border-radius: .75rem;
  transition: background .2s;
  margin-bottom: 1.5rem;
}
.hero-phone-link:hover { background: rgba(255,255,255,.18); color: #fff; }
.hero-phone-link .icon-ring {
  background: var(--red);
  color: #fff;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(220,38,38,.5);
  transition: transform .2s;
}
.hero-phone-link:hover .icon-ring { transform: scale(1.1); }
.hero-phone-link .label { font-size: .65rem; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.6); font-weight: 600; }
.hero-phone-link .number { font-size: 1.2rem; font-weight: 900; }

.trust-pills { display: flex; flex-wrap: wrap; gap: 1rem; font-size: .8rem; color: rgba(255,255,255,.6); }
.trust-pills span { display: flex; align-items: center; gap: .4rem; }

/* ---------- Hero Form Card ---------- */
.hero-form-card {
  background: #fff;
  border-radius: 1.25rem;
  box-shadow: 0 25px 60px rgba(0,0,0,.35);
  overflow: hidden;
  color: var(--slate-900);
}
.hero-form-header {
  background: var(--red);
  padding: 1.2rem 1.5rem;
}
.hero-form-header h2 { color: #fff; font-weight: 800; font-size: 1.2rem; margin: 0 0 .15rem; }
.hero-form-header p  { color: rgba(255,255,255,.8); font-size: .8rem; margin: 0; }
.hero-form-body { padding: 1.5rem; }

.form-label { font-weight: 600; font-size: .8rem; color: var(--slate-700); margin-bottom: .35rem; }
.form-control, .form-select {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  font-size: .875rem;
  font-family: 'Poppins', sans-serif;
  padding: .5rem .75rem;
  border-radius: .5rem;
  transition: border-color .2s;
}
.form-control:focus, .form-select:focus {
  border-color: #f87171;
  box-shadow: 0 0 0 3px rgba(220,38,38,.1);
  background: #fff;
}
.form-control.is-invalid, .form-select.is-invalid {
  border-color: #dc3545;
}
.invalid-feedback { font-size: .75rem; }

.btn-submit {
  background: var(--red);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: .6rem;
  width: 100%;
  padding: .85rem;
  box-shadow: 0 4px 14px rgba(220,38,38,.35);
  transition: background .2s, transform .15s;
  cursor: pointer;
}
.btn-submit:hover { background: var(--red-dark); transform: translateY(-1px); }

.form-privacy { font-size: .72rem; color: var(--slate-400); text-align: center; margin-top: .5rem; }

.trust-badges-below {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.25rem;
  font-size: .75rem;
  color: rgba(255,255,255,.55);
  font-weight: 500;
}
.trust-badges-below span { display: flex; align-items: center; gap: .4rem; }

/* ---------- Success State ---------- */
.form-success {
  text-align: center;
  padding: 2rem 1rem;
  display: none;
}
.form-success.active { display: block; }
.success-icon {
  width: 4rem; height: 4rem;
  background: #dcfce7;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.4rem;
  color: #16a34a;
}

/* ---------- Stats Strip ---------- */
.stats-strip {
  background: var(--red);
  color: #fff;
  padding: 1.25rem 0;
}
.stat-value { font-size: 1.75rem; font-weight: 900; }
.stat-label { font-size: .8rem; color: rgba(255,255,255,.8); font-weight: 500; }
@media (min-width: 768px) { .stat-value { font-size: 2rem; } }

/* ---------- Section helpers ---------- */
.section-label {
  display: block;
  color: var(--red);
  font-weight: 700;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: .4rem;
}
.section-title {
  font-weight: 700;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  color: var(--slate-900);
  margin-bottom: 1rem;
}
.section-sub {
  font-size: 1rem;
  color: var(--slate-600);
  line-height: 1.65;
}

/* ---------- Service Cards ---------- */
.service-card {
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--slate-100);
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
  transition: box-shadow .3s, transform .3s;
  height: 100%;
}
.service-card:hover { box-shadow: 0 12px 30px rgba(0,0,0,.12); transform: translateY(-4px); }
.service-img-wrap { height: 11rem; overflow: hidden; position: relative; }
.service-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.service-card:hover .service-img-wrap img { transform: scale(1.06); }
.service-img-wrap .overlay { position: absolute; inset: 0; background: rgba(15,23,42,.25); }
.service-icon {
  position: absolute;
  bottom: 1rem; left: 1rem;
  width: 2.75rem; height: 2.75rem;
  border-radius: .65rem;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  box-shadow: 0 4px 10px rgba(0,0,0,.25);
}
.service-body { padding: 1.5rem; }
.service-body h3 { font-weight: 700; font-size: 1.15rem; margin-bottom: .5rem; }
.service-body p { font-size: .85rem; color: var(--slate-600); line-height: 1.6; margin-bottom: 1.25rem; }
.btn-link-red {
  color: var(--red);
  font-weight: 700;
  font-size: .85rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  transition: gap .2s;
}
.btn-link-red:hover { gap: .75rem; color: var(--red-dark); }

/* ---------- Why Us ---------- */
.why-img-wrap { position: relative; }
.why-img-wrap img { border-radius: 1rem; box-shadow: 0 20px 50px rgba(0,0,0,.18); width: 100%; object-fit: cover; max-height: 450px; }
.retention-badge {
  position: absolute;
  bottom: -1.5rem; right: -1.5rem;
  background: var(--red);
  color: #fff;
  padding: 1.25rem 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 8px 24px rgba(220,38,38,.35);
  text-align: center;
}
.retention-badge .num { font-size: 2.5rem; font-weight: 900; line-height: 1; }
.retention-badge .lbl { font-size: .75rem; color: rgba(255,255,255,.8); font-weight: 500; }

.why-feature { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.75rem; }
.why-icon {
  background: #fef2f2;
  color: var(--red);
  width: 3rem; height: 3rem;
  border-radius: .75rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
}
.why-feature h4 { font-weight: 700; font-size: 1rem; margin-bottom: .25rem; }
.why-feature p { font-size: .85rem; color: var(--slate-600); line-height: 1.6; margin: 0; }

/* ---------- How It Works ---------- */
.step-card { text-align: center; }
.step-icon-wrap {
  width: 5rem;
  height: 5rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 1.25rem;
  box-shadow: 0 6px 20px rgba(0,0,0,.1);
  position: relative;
}
.step-icon-wrap.active { background: var(--red); color: #fff; box-shadow: 0 6px 20px rgba(220,38,38,.3); }
.step-icon-wrap.inactive { background: #fff; color: var(--slate-900); border: 2px solid var(--slate-100); }
.step-num {
  display: inline-block;
  font-size: .7rem;
  font-weight: 900;
  padding: .25rem .75rem;
  border-radius: 999px;
  margin-bottom: .75rem;
}
.step-num.active { background: var(--red); color: #fff; }
.step-num.inactive { background: var(--slate-200); color: var(--slate-700); }
.step-card h3 { font-weight: 700; font-size: 1.1rem; margin-bottom: .6rem; }
.step-card p  { font-size: .85rem; color: var(--slate-600); line-height: 1.6; max-width: 20rem; margin: 0 auto; }

.steps-connector {
  display: none;
  position: absolute;
  top: 2.5rem;
  /* left: 22%; */
  right: 0;
  height: 2px;
  background: #fee2e2;
  z-index: 0;
}
@media (min-width: 768px) { .steps-connector { display: block; } }

/* ---------- Pricing ---------- */
.pricing-card {
  border-radius: 1rem;
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: box-shadow .3s;
}
.pricing-card.basic { background: #fff; border: 1px solid var(--slate-200); box-shadow: 0 2px 8px rgba(0,0,0,.05); }
.pricing-card.basic:hover { box-shadow: 0 10px 30px rgba(0,0,0,.1); }
.pricing-card.popular {
  background: var(--slate-900);
  border: 1px solid #334155;
  box-shadow: 0 20px 50px rgba(0,0,0,.3);
  transform: scale(1.03);
  position: relative;
}
.pricing-badge {
  position: absolute;
  top: -1rem; left: 50%; transform: translateX(-50%);
  background: var(--red);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: .35rem 1rem;
  border-radius: 999px;
  white-space: nowrap;
}
.pricing-top-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--red);
  border-radius: 1rem 1rem 0 0;
}
.price-num {font-size: 3rem;font-weight: 700;line-height: 1;}
.price-per { color: var(--slate-500); font-weight: 500; font-size: .9rem; }
.feature-list { list-style: none; padding: 0; margin: 0; }
.feature-list li {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-size: .85rem;
  margin-bottom: .7rem;
}
.feature-list li .check   { color: #22c55e; }
.feature-list li .minus   { color: var(--slate-400); }
.feature-list li .striked { color: var(--slate-400); text-decoration: line-through; }

.btn-outline-slate {
  display: block;
  width: 100%;
  border: 2px solid var(--slate-200);
  background: transparent;
  color: var(--slate-900);
  font-weight: 700;
  font-size: .95rem;
  padding: .75rem;
  border-radius: .6rem;
  cursor: pointer;
  transition: border-color .2s, color .2s;
  font-family: 'Poppins', sans-serif;
  text-align: center;
  text-decoration: none;
}
.btn-outline-slate:hover { border-color: var(--red); color: var(--red); }

.btn-red-full {
  display: block;
  width: 100%;
  background: var(--red);
  color: #fff;
  font-weight: 700;
  font-size: .95rem;
  padding: .75rem;
  border-radius: .6rem;
  border: none;
  cursor: pointer;
  transition: background .2s;
  font-family: 'Poppins', sans-serif;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(220,38,38,.35);
}
.btn-red-full:hover { background: var(--red-dark); color: #fff; }

.custom-pricing-link {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--slate-900);
  text-decoration: none;
  border: 2px solid var(--slate-200);
  border-radius: .75rem;
  padding: .85rem 1.75rem;
  transition: border-color .2s, color .2s;
}
.custom-pricing-link:hover { border-color: #fca5a5; color: var(--red); }

/* ---------- Testimonials ---------- */
.testimonial-card {
  background: #fff;
  border: 1px solid var(--slate-100);
  border-radius: 1rem;
  padding: 1.75rem;
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
  transition: box-shadow .3s;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.testimonial-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,.1); }
.stars { color: #facc15; display: flex; gap: .1rem; margin-bottom: 1rem; }
.testimonial-quote { font-size: .875rem; color: var(--slate-700); font-style: italic; line-height: 1.7; flex: 1; }
.testimonial-footer { display: flex; align-items: center; gap: .75rem; margin-top: 1.5rem; padding-top: 1.25rem; border-top: 1px solid var(--slate-100); }
.avatar { width: 2.5rem; height: 2.5rem; border-radius: 50%; background: var(--slate-100); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: .85rem; color: var(--slate-600); flex-shrink: 0; }
.testimonial-name { font-weight: 700; font-size: .875rem; }
.testimonial-company { font-size: .75rem; color: var(--slate-500); }

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: var(--red);
  color: #fff;
  padding: 4rem 0;
  text-align: center;
}
.cta-banner h2 { font-weight: 900; font-size: clamp(1.75rem, 3.5vw, 2.5rem); margin-bottom: .75rem; }
.cta-banner p { color: rgba(255,255,255,.85); font-size: 1rem; margin-bottom: 2rem; }
.btn-white-outline {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(183,28,28,.7);
  border: 1px solid rgba(255,255,255,.3);
  color: #fff;
  font-weight: 700;
  font-size: .95rem;
  padding: .85rem 2rem;
  border-radius: .75rem;
  text-decoration: none;
  transition: background .2s;
}
.btn-white-outline:hover { background: rgba(153,27,27,.9); color: #fff; }
.btn-white-solid {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: #fff;
  color: var(--red);
  font-weight: 700;
  font-size: .95rem;
  padding: .85rem 2rem;
  border-radius: .75rem;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0,0,0,.12);
  transition: background .2s;
  border: none;
  cursor: pointer;
}
.btn-white-solid:hover { background: #fef2f2; }

/* ---------- Contact Section ---------- */
.contact-info-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #fef2f2;
  border: 1px solid #fee2e2;
  padding: 1.25rem 1.5rem;
  border-radius: 1rem;
  text-decoration: none;
  color: inherit;
  transition: border-color .2s;
  margin-bottom: 1.25rem;
}
.contact-info-card:hover { border-color: #fca5a5; }
.contact-info-card.email-card { background: var(--slate-50); border-color: var(--slate-100); }
.contact-info-card.email-card:hover { border-color: #fca5a5; }
.contact-icon {
  width: 3rem; height: 3rem;
  border-radius: .75rem;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: 0 3px 8px rgba(0,0,0,.2);
  transition: transform .2s;
}
.contact-info-card:hover .contact-icon { transform: scale(1.1); }
.contact-lbl  { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--slate-500); }
.contact-val  {font-weight: 700;font-size: 1.1rem;color: var(--slate-900);}
.contact-val.sm { font-size: .95rem; }

.contact-feature { display: flex; align-items: center; gap: .75rem; font-size: .875rem; color: var(--slate-600); margin-bottom: 1rem; }

.inquiry-card {
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: 1rem;
  box-shadow: 0 10px 35px rgba(0,0,0,.08);
  overflow: hidden;
}
.inquiry-header {
  background: var(--slate-50);
  border-bottom: 1px solid var(--slate-100);
  padding: 1.5rem 2rem;
}
.inquiry-header h3 {font-weight: 700;font-size: 1.4rem;margin: 0 0 .25rem;}
.inquiry-header p  { font-size: .85rem; color: var(--slate-500); margin: 0; }
.inquiry-body { padding: 2rem; }

/* ---------- Footer ---------- */
.site-footer {
  background: #020617;
  color: var(--slate-400);
  padding: 3.5rem 0 2rem;
  border-top: 1px solid #1e293b;
}
.footer-logo { display: flex; align-items: center; gap: .65rem; margin-bottom: 1.25rem; text-decoration: none; }
.footer-logo .icon { background: var(--red); color: #fff; padding: .45rem .55rem; border-radius: .5rem; font-size: 1.1rem; }
.footer-logo .name { font-weight: 800; font-size: 1.1rem; color: #fff; }
.footer-logo .name .red { color: #f87171; }
.footer-desc { font-size: .85rem; line-height: 1.65; max-width: 22rem; margin-bottom: 1.25rem; }
.footer-phone { display: flex; align-items: center; gap: .65rem; color: #fff; font-weight: 700; font-size: 1rem; text-decoration: none; margin-bottom: .75rem; transition: color .2s; }
.footer-phone:hover { color: #f87171; }
.footer-email { display: flex; align-items: center; gap: .65rem; color: var(--slate-400); font-size: .875rem; text-decoration: none; transition: color .2s; }
.footer-email:hover { color: #fff; }
.social-links { display: flex; gap: .6rem; margin-top: 1.25rem; }
.social-btn {
  width: 2.25rem; height: 2.25rem;
  border-radius: 50%;
  background: #1e293b;
  color: var(--slate-400);
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem;
  text-decoration: none;
  transition: background .2s, color .2s;
}
.social-btn:hover { background: var(--red); color: #fff; }
.footer-heading { color: #fff; font-weight: 700; font-size: .75rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 1.25rem; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .75rem; }
.footer-links a { color: var(--slate-400); text-decoration: none; font-size: .875rem; transition: color .2s; }
.footer-links a:hover { color: #f87171; }
.footer-bottom {
  border-top: 1px solid #1e293b;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: .75rem;
  color: #334155;
}
.footer-bottom a { color: #334155; text-decoration: none; transition: color .2s; }
.footer-bottom a:hover { color: var(--slate-400); }

/* ---------- Policy pages ---------- */
.policy-hero {
  background: var(--slate-900);
  color: #fff;
  padding: 3rem 0;
}
.breadcrumb-item, .breadcrumb-item a { color: #f87171; font-weight: 600; font-size: .85rem; text-decoration: none; }
.breadcrumb-item.active { color: var(--slate-400); }
.breadcrumb-divider { color: var(--slate-600); }
.policy-hero h1 { font-weight: 900; font-size: 2.5rem; margin-bottom: .5rem; }
.policy-meta { color: var(--slate-400); font-size: .9rem; }

.policy-section { border-top: 1px solid var(--slate-100); padding-top: 2rem; margin-top: 2rem; }
.policy-section:first-child { border-top: none; padding-top: 0; }
.policy-section h2 { font-weight: 700; font-size: 1.25rem; margin-bottom: 1rem; color: var(--slate-900); }
.policy-section p, .policy-section li { color: var(--slate-600); font-size: .9rem; line-height: 1.75; }
.policy-section ul { padding-left: 1.5rem; }
.policy-section ul li { margin-bottom: .5rem; }
.policy-section a { color: var(--red); }
.policy-contact-item { display: flex; align-items: center; gap: .65rem; font-size: .9rem; color: var(--slate-600); margin-bottom: .6rem; }
.policy-contact-item a { color: var(--red); text-decoration: none; }
.policy-contact-item a:hover { text-decoration: underline; }

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
  .hero-section { padding: 3.5rem 0; }
  .retention-badge { display: none; }
  .pricing-card.popular { transform: none; }
  .why-img-wrap { margin-bottom: 3rem; }
}
@media (max-width: 575.98px) {
  .hero-title { font-size: 2rem; }
  .stats-strip .col { min-width: 50%; }
}
