/* Highway Health Coach — Pricing Page
   Dark navy/black + green accent. Mobile-first, thumb-friendly CTAs,
   generous spacing on desktop, compact on phones (inside a truck cab). */

.thhc-pricing-page {
  --thhc-bg: #050b14;
  --thhc-surface: #0f172a;
  --thhc-surface-2: #1e293b;
  --thhc-border: rgba(148, 163, 184, 0.18);
  --thhc-text: #f8fafc;
  --thhc-text-muted: #94a3b8;
  --thhc-green: #22c55e;
  --thhc-green-dark: #16a34a;
  --thhc-amber: #fbbf24;
  background: var(--thhc-bg);
  color: var(--thhc-text);
  min-height: 100vh;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

.thhc-pricing-page h1,
.thhc-pricing-page h2,
.thhc-pricing-page h3 {
  color: var(--thhc-text);
  letter-spacing: -0.01em;
  line-height: 1.15;
  font-weight: 800;
}

/* HERO */
.thhc-hero {
  padding: 64px 20px 40px;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(34, 197, 94, 0.08), transparent 60%),
    radial-gradient(ellipse at 80% 100%, rgba(30, 41, 59, 0.6), transparent 60%),
    var(--thhc-bg);
}
.thhc-hero__inner { max-width: 900px; margin: 0 auto; text-align: center; }
.thhc-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: 999px;
  background: rgba(34, 197, 94, 0.12);
  color: var(--thhc-green);
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; margin-bottom: 18px;
}
.thhc-hero h1 {
  font-size: clamp(1.75rem, 5vw, 3rem);
  margin: 0 0 20px;
}
.thhc-hero__lead {
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  color: var(--thhc-text-muted);
  line-height: 1.65;
  max-width: 720px; margin: 0 auto 16px;
}
.thhc-hero__banner {
  margin-top: 28px; padding: 16px 22px;
  border: 2px solid var(--thhc-green);
  border-radius: 12px;
  background: rgba(34, 197, 94, 0.08);
  color: var(--thhc-green);
  font-size: clamp(0.85rem, 2vw, 1.05rem);
  font-weight: 800; letter-spacing: 0.05em;
}

/* WHICH PLAN */
.thhc-which {
  padding: 40px 20px 20px; max-width: 1100px; margin: 0 auto;
}
.thhc-which h2 {
  text-align: center; font-size: clamp(1.25rem, 3vw, 1.75rem);
  margin: 0 0 24px;
}
.thhc-which__grid {
  display: grid; grid-template-columns: 1fr 1fr; grid-gap: 16px; gap: 16px;
}
.thhc-which__card {
  padding: 20px; border-radius: 14px;
  background: var(--thhc-surface); border: 1px solid var(--thhc-border);
}
.thhc-which__card--hi { border-color: rgba(34, 197, 94, 0.4); background: rgba(34, 197, 94, 0.06); }
.thhc-which__q { margin: 0 0 12px; font-size: 1rem; line-height: 1.5; font-weight: 500; color: var(--thhc-text); }
.thhc-which__rec { font-size: 0.85rem; color: var(--thhc-text-muted); }
.thhc-which__rec strong { color: var(--thhc-green); font-weight: 800; letter-spacing: 0.03em; }

/* PRICING CARDS */
.thhc-pricing {
  padding: 32px 20px 24px; max-width: 1100px; margin: 0 auto;
}
.thhc-pricing__grid {
  display: grid; grid-template-columns: 1fr 1fr; grid-gap: 24px; gap: 24px;
  align-items: start;
}
.thhc-card {
  position: relative; display: flex; flex-direction: column;
  background: var(--thhc-surface); border: 1px solid var(--thhc-border);
  border-radius: 20px; padding: 32px 24px 24px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}
.thhc-card--popular {
  border: 2px solid var(--thhc-green);
  background:
    linear-gradient(180deg, rgba(34,197,94,0.06), transparent 30%),
    var(--thhc-surface);
  box-shadow: 0 20px 40px rgba(34, 197, 94, 0.15);
  transform: translateY(-4px);
}
.thhc-card__badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--thhc-green); color: #0f172a;
  padding: 6px 14px; border-radius: 999px;
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.1em;
  white-space: nowrap;
}
.thhc-card__head { text-align: center; padding-bottom: 20px; border-bottom: 1px solid var(--thhc-border); margin-bottom: 20px; }
.thhc-card__name { font-size: 1.5rem; margin: 0 0 6px; letter-spacing: 0.06em; }
.thhc-card__tagline { color: var(--thhc-text-muted); font-size: 0.85rem; margin: 0 0 18px; line-height: 1.5; }
.thhc-card__price {
  font-size: clamp(2.75rem, 8vw, 3.5rem);
  font-weight: 800;
  color: var(--thhc-green);
  line-height: 1;
  letter-spacing: -0.02em;
}
.thhc-card__price span { font-size: 0.5em; vertical-align: super; margin-right: 2px; opacity: 0.85; }
.thhc-card__price em { font-style: normal; font-size: 0.32em; color: var(--thhc-text-muted); font-weight: 600; margin-left: 4px; }
.thhc-card__weekly {
  margin-top: 8px; font-size: 0.78rem; letter-spacing: 0.1em;
  color: var(--thhc-text-muted); font-weight: 700;
}
.thhc-card__features { list-style: none; padding: 0; margin: 0; flex: 1 1; }
.thhc-feature { display: flex; gap: 12px; padding: 10px 0; align-items: flex-start; }
.thhc-feature + .thhc-feature { border-top: 1px solid rgba(148, 163, 184, 0.1); }
.thhc-feature__icon {
  flex-shrink: 0; width: 28px; height: 28px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(34, 197, 94, 0.14); color: var(--thhc-green);
  border-radius: 8px; margin-top: 2px;
}
.thhc-feature__title { font-weight: 700; font-size: 0.92rem; color: var(--thhc-text); margin-bottom: 2px; }
.thhc-feature__body { font-size: 0.82rem; color: var(--thhc-text-muted); line-height: 1.5; }

.thhc-card__foot { padding-top: 20px; }
.thhc-cta {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 16px 22px; border-radius: 12px;
  background: var(--thhc-green); color: #0f172a;
  font-weight: 800; letter-spacing: 0.06em; font-size: 0.95rem;
  text-decoration: none; border: 0; cursor: pointer;
  transition: background 0.15s ease, transform 0.1s ease, box-shadow 0.15s ease;
  min-height: 52px; /* thumb-friendly */
}
.thhc-cta:hover { background: var(--thhc-green-dark); transform: translateY(-1px); box-shadow: 0 8px 16px rgba(34, 197, 94, 0.3); }
.thhc-cta--secondary {
  background: transparent; color: var(--thhc-green);
  border: 2px solid var(--thhc-green);
}
.thhc-cta--secondary:hover { background: rgba(34, 197, 94, 0.1); color: var(--thhc-green); }
.thhc-card__cta-copy { text-align: center; font-size: 0.82rem; color: var(--thhc-text-muted); margin: 12px 0 0; line-height: 1.5; }

/* Upgrade callout */
.thhc-upgrade-callout {
  max-width: 720px; margin: 32px auto 0;
  padding: 20px 24px; border-radius: 14px; text-align: center;
  background: linear-gradient(135deg, rgba(34,197,94,0.16), rgba(34,197,94,0.06));
  border: 1px solid rgba(34, 197, 94, 0.3);
}
.thhc-upgrade-callout__title { color: var(--thhc-green); font-weight: 800; letter-spacing: 0.06em; font-size: clamp(0.95rem, 2.4vw, 1.2rem); margin-bottom: 8px; }
.thhc-upgrade-callout p { margin: 0; color: var(--thhc-text-muted); font-size: 0.9rem; line-height: 1.55; }

/* VALUE SECTION */
.thhc-value { padding: 60px 20px 40px; background: var(--thhc-surface); border-top: 1px solid var(--thhc-border); border-bottom: 1px solid var(--thhc-border); }
.thhc-value__inner { max-width: 820px; margin: 0 auto; text-align: center; }
.thhc-value h2 { font-size: clamp(1.5rem, 4vw, 2.25rem); margin: 0 0 20px; color: var(--thhc-green); }
.thhc-value__lead { color: var(--thhc-text-muted); font-size: 1rem; line-height: 1.7; margin: 0 0 16px; }
.thhc-value__lead strong { color: var(--thhc-text); }
.thhc-value__sub { text-align: left; margin: 32px 0 16px; font-size: 1.1rem; letter-spacing: 0.08em; color: var(--thhc-green); }
.thhc-value__list { text-align: left; list-style: none; padding: 0; margin: 0; }
.thhc-value__list li {
  padding: 12px 0 12px 28px; position: relative;
  color: var(--thhc-text); font-size: 0.95rem; line-height: 1.5;
}
.thhc-value__list li + li { border-top: 1px solid rgba(148, 163, 184, 0.1); }
.thhc-value__list li::before {
  content: '✓'; position: absolute; left: 0; top: 12px;
  color: var(--thhc-green); font-weight: 800;
}

/* COMPARISON TABLE */
.thhc-compare { padding: 60px 20px 40px; max-width: 1000px; margin: 0 auto; }
.thhc-compare h2 { text-align: center; font-size: clamp(1.35rem, 3vw, 1.75rem); margin: 0 0 24px; }
.thhc-compare__wrap { overflow-x: auto; border-radius: 14px; border: 1px solid var(--thhc-border); background: var(--thhc-surface); }
.thhc-compare__table { width: 100%; border-collapse: collapse; font-size: 0.92rem; min-width: 480px; }
.thhc-compare__table th,
.thhc-compare__table td { padding: 14px 16px; text-align: left; border-bottom: 1px solid rgba(148, 163, 184, 0.1); }
.thhc-compare__table th { background: rgba(255,255,255,0.03); font-size: 0.78rem; letter-spacing: 0.08em; color: var(--thhc-text-muted); font-weight: 700; text-transform: uppercase; }
.thhc-compare__table th.hi,
.thhc-compare__table td.hi { background: rgba(34, 197, 94, 0.08); color: var(--thhc-text); font-weight: 700; }
.thhc-compare__table th.hi { color: var(--thhc-green); }
.thhc-compare__table td .ok { color: var(--thhc-green); }
.thhc-compare__table td .no { color: #64748b; }

/* FAQ */
.thhc-faq { padding: 40px 20px 40px; max-width: 820px; margin: 0 auto; }
.thhc-faq h2 { text-align: center; font-size: clamp(1.35rem, 3vw, 1.75rem); margin: 0 0 20px; }
.thhc-faq__list { display: flex; flex-direction: column; gap: 10px; }
.thhc-faq__item { background: var(--thhc-surface); border: 1px solid var(--thhc-border); border-radius: 10px; overflow: hidden; }
.thhc-faq__item.open { border-color: rgba(34, 197, 94, 0.3); }
.thhc-faq__q {
  width: 100%; padding: 16px 20px; background: transparent;
  border: 0; color: var(--thhc-text); text-align: left; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  font-weight: 700; font-size: 0.95rem;
}
.thhc-faq__q:hover { background: rgba(255,255,255,0.03); }
.thhc-faq__a { padding: 0 20px 18px; color: var(--thhc-text-muted); font-size: 0.9rem; line-height: 1.65; }

/* FINAL CTA */
.thhc-final {
  padding: 64px 20px 60px; text-align: center;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(34, 197, 94, 0.1), transparent 60%),
    var(--thhc-bg);
  border-top: 1px solid var(--thhc-border);
}
.thhc-final h2 { font-size: clamp(1.4rem, 4vw, 2.25rem); max-width: 820px; margin: 0 auto 20px; line-height: 1.2; }
.thhc-final > p { max-width: 720px; margin: 0 auto 32px; color: var(--thhc-text-muted); font-size: 1rem; line-height: 1.65; }
.thhc-final__ctas { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; max-width: 720px; margin: 0 auto 24px; }
.thhc-final__ctas .thhc-cta { min-width: 240px; }
.thhc-final__unsure { color: var(--thhc-text-muted); font-size: 0.85rem; letter-spacing: 0.06em; }
.thhc-final__unsure > div { text-transform: uppercase; font-weight: 700; margin-bottom: 8px; }
.thhc-final__link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--thhc-green); text-decoration: none; font-weight: 700;
  padding: 8px 14px; border-radius: 8px; border: 1px solid rgba(34, 197, 94, 0.3);
}
.thhc-final__link:hover { background: rgba(34, 197, 94, 0.1); }
.thhc-disclaimer { max-width: 720px; margin: 32px auto 0; color: #64748b; font-size: 0.75rem; line-height: 1.6; }

/* MOBILE */
@media (max-width: 780px) {
  .thhc-hero { padding: 40px 16px 30px; }
  .thhc-which__grid { grid-template-columns: 1fr; }
  .thhc-pricing__grid { grid-template-columns: 1fr; gap: 32px; }
  .thhc-card--popular { transform: none; }
  .thhc-card { padding: 28px 20px 20px; }
  .thhc-card__badge { top: -12px; font-size: 0.68rem; }
  .thhc-value { padding: 40px 16px 30px; }
  .thhc-compare { padding: 32px 16px; }
  .thhc-faq { padding: 32px 16px; }
  .thhc-final { padding: 48px 16px 44px; }
  .thhc-final__ctas .thhc-cta { min-width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .thhc-cta:hover { transform: none; }
}

/* Payment cadence toggle */
.thhc-freq-toggle {
  display: inline-flex;
  gap: 0;
  padding: 4px;
  border-radius: 999px;
  background: var(--thhc-surface);
  border: 1px solid var(--thhc-border);
  margin: 0 auto 6px;
  display: flex;
  width: -webkit-fit-content;
  width: fit-content;
}
.thhc-freq-btn {
  padding: 10px 18px;
  border: 0;
  background: transparent;
  color: var(--thhc-text-muted);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
  min-height: 40px;
}
.thhc-freq-btn:hover:not(.active) { color: var(--thhc-text); }
.thhc-freq-btn.active {
  background: var(--thhc-green);
  color: #0f172a;
}
.thhc-freq-note {
  text-align: center;
  color: var(--thhc-text-muted);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  margin: 0 0 20px;
}
@media (max-width: 480px) {
  .thhc-freq-toggle { width: 100%; justify-content: stretch; }
  .thhc-freq-btn { flex: 1 1; padding: 10px 8px; font-size: 0.78rem; }
}

/* --- Promotional campaign styles --- */
.thhc-promo-banner {
  background: linear-gradient(90deg, #dc2626, #ea580c);
  color: #fff;
  padding: 14px 20px;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.03em;
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.35);
  animation: thhc-promo-pulse 2.6s ease-in-out infinite;
}
.thhc-promo-banner__inner {
  display: inline-flex; flex-wrap: wrap; gap: 8px 16px; align-items: center;
  justify-content: center; max-width: 1100px;
}
.thhc-promo-banner__tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(0, 0, 0, 0.25); padding: 4px 10px; border-radius: 999px;
  font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.12em;
}
.thhc-promo-banner__msg { font-size: 0.95rem; }
.thhc-promo-banner__msg strong { font-size: 1.05rem; margin-right: 4px; }

@keyframes thhc-promo-pulse {
  0%, 100% { box-shadow: 0 4px 12px rgba(220, 38, 38, 0.35); }
  50%      { box-shadow: 0 4px 22px rgba(220, 38, 38, 0.55); }
}

.thhc-card__promo-badge {
  position: absolute; top: 14px; right: 14px;
  background: #dc2626; color: #fff;
  padding: 5px 10px; border-radius: 6px;
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.08em;
  box-shadow: 0 4px 10px rgba(220, 38, 38, 0.4);
  transform: rotate(3deg);
  z-index: 2;
}
.thhc-card__price-strike {
  display: block;
  font-size: 0.34em;
  color: var(--thhc-text-muted);
  text-decoration: line-through;
  font-weight: 600;
  letter-spacing: 0;
  margin-bottom: 4px;
  opacity: 0.7;
}
.thhc-card__weekly-strike {
  text-decoration: line-through; opacity: 0.55; font-weight: 500; margin-left: 6px;
}
.thhc-final__strike {
  display: inline-block; margin-left: 8px;
  text-decoration: line-through; opacity: 0.6; font-size: 0.72em; font-weight: 600;
}


/*# sourceMappingURL=891.e133023a.chunk.css.map*/