@charset "utf-8";

/* ── NOT ALL TREATMENTS ARE EQUAL PAGE STYLES ── */
/* Matches site design system */

/* ── HERO ── */
.eq-hero {
  background-image: linear-gradient(180deg, #779eab 0%, #ffffff 70%);
  padding: 44px 20px 50px;
  text-align: center;
}
.eq-hero-inner { max-width: 680px; margin: 0 auto; }
.eq-eyebrow {
  font-size: 0.72rem;
  font-weight: bold;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #2b3a4b;
  margin-bottom: 8px;
}
.eq-eyebrow-center { text-align: center; }
.eq-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: bold;
  color: #2b3a4b;
  margin-bottom: 12px;
  line-height: 1.15;
}
.eq-hero p {
  font-size: 1rem;
  color: #2b3a4b;
  font-weight: bold;
  max-width: 580px;
  margin: 0 auto 24px;
  line-height: 1.6;
}
.eq-hero-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── SHARED ── */
.eq-section { padding: 50px 20px; background: #ffffff; }
.eq-section-alt { background: #f7f7f8; }
.eq-section-inner { max-width: 960px; margin: 0 auto; }
.eq-divider { height: 1px; background: #d0e4ea; border: none; margin: 0; }
.eq-h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: #2b3a4b;
  font-weight: bold;
  margin-bottom: 14px;
  text-align: center;
  line-height: 1.2;
}
.eq-intro-p {
  text-align: center;
  color: #555;
  font-size: 0.97rem;
  margin-bottom: 36px;
  line-height: 1.75;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* ── EXAMPLE CARDS ── */
.eq-examples { display: flex; flex-direction: column; gap: 24px; }
.eq-example-card {
  background: #ffffff;
  border: 1px solid #d0e4ea;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: rgba(0,0,0,0.05) 0px 4px 14px;
}
.eq-example-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  background: #eef4f7;
  border-bottom: 1px solid #d0e4ea;
}
.eq-example-num {
  width: 40px; height: 40px; min-width: 40px;
  background: #779eab; color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: bold;
}
.eq-example-header h3 { font-size: 1.1rem; font-weight: bold; color: #2b3a4b; }
.eq-example-body { padding: 22px 24px; }
.eq-example-body p { font-size: 0.93rem; color: #555; line-height: 1.8; margin-bottom: 10px; }
.eq-watch-out {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #fff8e6;
  border: 1px solid #f9a525;
  border-radius: 8px;
  padding: 12px 16px;
  margin-top: 14px;
  font-size: 0.88rem;
  color: #444;
  line-height: 1.5;
}
.eq-warn-icon { font-size: 1rem; flex-shrink: 0; }

/* ── QUESTIONS ── */
.eq-questions-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 28px;
}
.eq-question-card {
  background: #ffffff;
  border: 1px solid #b0cdd6;
  border-radius: 8px;
  padding: 18px 16px;
  width: 100%;
  max-width: 285px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  box-shadow: rgba(0,0,0,0.04) 0px 3px 8px;
}
.eq-q-icon { font-size: 1.2rem; flex-shrink: 0; }
.eq-question-card p { font-size: 0.88rem; color: #444; line-height: 1.6; margin: 0; font-weight: bold; }
.eq-reviews-note {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #eef4f7;
  border: 1px solid #b0cdd6;
  border-radius: 10px;
  padding: 18px 20px;
  max-width: 700px;
  margin: 0 auto;
}
.eq-reviews-icon { font-size: 1.4rem; flex-shrink: 0; }
.eq-reviews-note strong { display: block; color: #2b3a4b; font-size: 0.97rem; margin-bottom: 6px; }
.eq-reviews-note p { font-size: 0.88rem; color: #555; line-height: 1.7; margin: 0; }

/* ── COMPARE CARDS ── */
.eq-compare-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}
.eq-compare-card {
  flex: 1;
  min-width: 280px;
  max-width: 440px;
  border-radius: 10px;
  padding: 28px 24px;
  position: relative;
}
.eq-compare-others {
  background: #fff8f7;
  border: 2px solid #f5c4bc;
}
.eq-compare-us {
  background: #f2f9f2;
  border: 2px solid #b0cdd6;
  box-shadow: rgba(119,158,171,0.2) 0px 6px 20px;
}
.eq-compare-us::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: #779eab;
  border-radius: 10px 10px 0 0;
}
.eq-compare-badge {
  display: inline-block;
  background: #f9a525;
  color: #fff;
  font-size: 0.72rem;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 10px;
  text-shadow: -1px 1px 1px rgba(0,0,0,0.2);
}
.eq-compare-card h3 { font-size: 1.05rem; font-weight: bold; color: #2b3a4b; margin-bottom: 16px; }
.eq-compare-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 9px; }
.eq-compare-list li { font-size: 0.9rem; display: flex; align-items: flex-start; gap: 8px; line-height: 1.4; }
.eq-good { color: #2b4a2b; }
.eq-good span { color: #8bb839; font-weight: bold; flex-shrink: 0; }
.eq-bad { color: #5a2a2a; }
.eq-bad span { color: #cc4444; font-weight: bold; flex-shrink: 0; }

/* ── CTA BAND ── */
.eq-cta-band {
  background-image: linear-gradient(135deg, #2b3a4b 0%, #1a2a38 100%);
  color: #ffffff;
  padding: 50px 20px;
}
.eq-cta-h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 10px;
  text-shadow: -1px 1px 2px rgba(0,0,0,0.25);
}
.eq-cta-sub {
  color: rgba(255,255,255,0.8);
  font-size: 0.97rem;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ── BUTTONS ── */
.btn-eq-primary {
  display: inline-block;
  background: #f9a525;
  color: #ffffff;
  font-weight: bold;
  font-size: 0.97rem;
  padding: 13px 28px;
  border-radius: 6px;
  text-decoration: none;
  text-shadow: -1px 1px 2px rgba(0,0,0,0.25);
  box-shadow: rgba(0,0,0,0.15) 0px 4px 12px;
  transition: background 0.18s, transform 0.15s;
}
.btn-eq-primary:hover { background: #e0941a; transform: translateY(-1px); }
.btn-eq-ghost {
  display: inline-block;
  background: transparent;
  color: #2b3a4b;
  font-weight: bold;
  font-size: 0.9rem;
  padding: 12px 24px;
  border-radius: 6px;
  border: 2px solid rgba(43,58,75,0.35);
  text-decoration: none;
  transition: border-color 0.18s;
}
.btn-eq-ghost:hover { border-color: rgba(43,58,75,0.65); }
.btn-eq-ghost-light {
  display: inline-block;
  background: transparent;
  color: #ffffff;
  font-weight: bold;
  font-size: 0.9rem;
  padding: 12px 24px;
  border-radius: 6px;
  border: 2px solid rgba(255,255,255,0.5);
  text-decoration: none;
  transition: border-color 0.18s, background 0.18s;
}
.btn-eq-ghost-light:hover { border-color: #ffffff; background: rgba(255,255,255,0.1); }

/* ── RESPONSIVE ── */
@media screen and (max-width: 700px) {
  .eq-compare-card { max-width: 100%; }
  .eq-question-card { max-width: 100%; }
}
