@charset "utf-8";

/* ── HOW TO GET RID OF LICE PAGE STYLES ── */
/* Conversion landing page. Matches site design system. */

/* ── HERO ── */
.ht-hero {
  background-image: linear-gradient(180deg, #779eab 0%, #ffffff 70%);
  padding: 44px 20px 50px;
}
.ht-hero-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  align-items: center;
}
.ht-hero-text {
  flex: 1;
  min-width: 280px;
}
.ht-eyebrow {
  font-size: 0.72rem;
  font-weight: bold;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #2b3a4b;
  margin-bottom: 8px;
}
.ht-eyebrow-center { text-align: center; }
.ht-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: bold;
  color: #2b3a4b;
  margin-bottom: 12px;
  line-height: 1.15;
}
.ht-hero p {
  font-size: 1rem;
  color: #2b3a4b;
  font-weight: bold;
  margin-bottom: 24px;
  line-height: 1.6;
  max-width: 500px;
}
.ht-hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.ht-trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}
.ht-trust-item {
  font-size: 0.82rem;
  font-weight: bold;
  color: #2b3a4b;
  display: flex;
  align-items: center;
  gap: 4px;
}
.ht-check { color: #8bb839; font-weight: bold; }
.ht-hero-img {
  flex: 1;
  min-width: 240px;
  max-width: 420px;
  margin: 0 auto;
  text-align: center;
}
.ht-hero-img img {
  width: 100%;
	height: auto;
  border-radius: 12px;
  box-shadow: rgba(0,0,0,0.14) 0px 10px 30px;
  display: block;
}
.ht-hero-img-caption {
  font-size: 0.78rem;
  color: #666;
  margin-top: 8px;
  font-style: italic;
}

/* ── URGENCY BAR ── */
.ht-urgency-bar {
  background: #2b3a4b;
  color: #ffffff;
  text-align: center;
  padding: 12px 20px;
  font-size: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.ht-urgency-link {
  color: #f9a525;
  font-weight: bold;
  text-decoration: none;
  margin-left: 4px;
}
.ht-urgency-link:hover { text-decoration: underline; }

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

/* ── TWO PATHS ── */
.ht-paths-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}
.ht-path-card {
  background: #ffffff;
  border: 2px solid #d0e4ea;
  border-radius: 10px;
  padding: 30px 26px;
  width: 100%;
  max-width: 420px;
  box-shadow: rgba(0,0,0,0.07) 0px 4px 14px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ht-path-featured {
  border-color: #779eab;
  box-shadow: rgba(119,158,171,0.25) 0px 6px 20px;
}
.ht-path-featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: #779eab;
  border-radius: 10px 10px 0 0;
}
.ht-path-badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: #f9a525;
  color: #fff;
  font-size: 0.72rem;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
  text-shadow: -1px 1px 1px rgba(0,0,0,0.2);
}
.ht-path-icon { font-size: 2rem; }
.ht-path-card h3 { font-size: 1.2rem; font-weight: bold; color: #2b3a4b; }
.ht-path-card > p { font-size: 0.92rem; color: #555; line-height: 1.65; }
.ht-path-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.ht-path-list li { font-size: 0.9rem; color: #444; display: flex; align-items: flex-start; gap: 7px; line-height: 1.4; }
.ht-path-phone { font-size: 0.82rem; color: #779eab; text-align: center; text-decoration: none; font-weight: bold; }
.ht-path-phone:hover { text-decoration: underline; }

/* ── STEPS ── */
.ht-steps { display: flex; flex-direction: column; gap: 0; }
.ht-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid #e0ecf0;
}
.ht-step:last-child { border-bottom: none; }
.ht-step-num {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: #779eab;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 2px;
}
.ht-step-num-pro { background: #f9a525; }
.ht-step-content { flex: 1; }
.ht-step-content h3 {
  font-size: 1.05rem;
  font-weight: bold;
  color: #2b3a4b;
  margin-bottom: 8px;
}
.ht-step-content p {
  font-size: 0.92rem;
  color: #555;
  line-height: 1.75;
  margin-bottom: 6px;
}
.ht-bullet-list {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ht-bullet-list li {
  font-size: 0.9rem;
  color: #555;
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}
.ht-bullet-list li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: #779eab;
  font-weight: bold;
}
.ht-step-cta { background: #eef4f7; border-radius: 10px; padding: 24px !important; border-bottom: none !important; margin-top: 16px; }
.ht-step-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 16px; }
.ht-link { color: #779eab; font-weight: bold; text-decoration: none; }
.ht-link:hover { text-decoration: underline; }

/* ── WHY OTC FAILS + OUR SOLUTION ── */
.ht-two-col {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  align-items: flex-start;
}
.ht-col { flex: 1; min-width: 280px; }
.ht-col-p { font-size: 0.95rem; color: #555; line-height: 1.8; margin-bottom: 14px; }
.ht-fail-list { display: flex; flex-direction: column; gap: 16px; }
.ht-fail-item { display: flex; align-items: flex-start; gap: 14px; }
.ht-fail-icon {
  width: 28px; height: 28px; min-width: 28px;
  background: #fdecea;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #cc4444;
  font-weight: bold;
  font-size: 0.9rem;
}
.ht-fail-item strong { display: block; color: #2b3a4b; font-size: 0.95rem; margin-bottom: 3px; }
.ht-fail-item p { font-size: 0.88rem; color: #666; line-height: 1.6; margin: 0; }
.ht-solution-stats {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.ht-solution-stat {
  background: #eef4f7;
  border: 1px solid #b0cdd6;
  border-radius: 8px;
  padding: 14px 18px;
  text-align: center;
  flex: 1;
  min-width: 80px;
}
.ht-solution-num { font-size: 1.5rem; font-weight: bold; color: #779eab; line-height: 1; }
.ht-solution-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; color: #777; font-weight: bold; margin-top: 4px; }

/* ── BOTTOM CTA BAND ── */
.ht-cta-band {
  background-image: linear-gradient(135deg, #2b3a4b 0%, #1a2a38 100%);
  color: #ffffff;
  padding: 50px 20px;
}
.ht-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);
}
.ht-cta-sub {
  color: rgba(255,255,255,0.8);
  font-size: 0.97rem;
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.75;
}
.ht-cta-options {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}
.ht-cta-option {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  padding: 24px 28px;
  text-align: center;
  flex: 1;
  min-width: 200px;
  max-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ht-cta-option strong { color: #ffffff; font-size: 1rem; display: block; }
.ht-cta-option p { color: rgba(255,255,255,0.65); font-size: 0.82rem; margin: 0; }
.ht-cta-divider {
  color: rgba(255,255,255,0.4);
  font-size: 1rem;
  font-weight: bold;
  padding: 0 4px;
}

/* ── BUTTONS ── */
.btn-ht-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;
  text-align: center;
}
.btn-ht-primary:hover { background: #e0941a; transform: translateY(-1px); }
.btn-ht-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-ht-ghost:hover { border-color: rgba(43,58,75,0.65); }
.btn-ht-secondary {
  display: inline-block;
  background: transparent;
  color: #779eab;
  font-weight: bold;
  font-size: 0.9rem;
  padding: 12px 24px;
  border-radius: 6px;
  border: 2px solid #779eab;
  text-decoration: none;
  transition: background 0.18s, color 0.18s;
  text-align: center;
}
.btn-ht-secondary:hover { background: #779eab; color: #ffffff; }
.btn-ht-call {
  display: inline-block;
  background: #f9a525;
  color: #ffffff;
  font-weight: bold;
  font-size: 0.97rem;
  padding: 13px 24px;
  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;
}
.btn-ht-call:hover { background: #e0941a; }
.btn-ht-white {
  display: inline-block;
  background: #ffffff;
  color: #779eab;
  font-weight: bold;
  font-size: 0.97rem;
  padding: 13px 28px;
  border-radius: 6px;
  text-decoration: none;
  box-shadow: rgba(0,0,0,0.12) 0px 3px 10px;
  transition: box-shadow 0.18s;
  text-align: center;
}
.btn-ht-white:hover { box-shadow: rgba(0,0,0,0.2) 0px 6px 16px; }

/* ── RESPONSIVE ── */
@media screen and (max-width: 700px) {
  .ht-hero-img { max-width: 300px; }
  .ht-path-card { max-width: 100%; }
  .ht-two-col { gap: 32px; }
  .ht-cta-option { max-width: 100%; }
  .ht-cta-divider { display: none; }
  .ht-solution-stat { min-width: 70px; }
}
