@charset "utf-8";

/* ==========================================================
   home-redesign.css  —  Jamie's Lice Angels home page
   Single self-contained stylesheet. No other home-specific
   CSS file needed. style_main-23.css still handles nav/footer.
   ========================================================== */

@font-face {
  font-family: 'Merienda';
  src: url("../assets/fonts/Merienda-VariableFont_wght.woff2") format('woff2-variations');
  font-weight: 300 900;
  font-display: swap;
}
@font-face {
  font-family: 'Architects';
  src: url("../assets/fonts/ArchitectsDaughter-Regular.woff2") format('woff2-variations');
  font-display: swap;
}
@font-face {
  font-family: 'product_sans';
  src: url("../assets/fonts/product_sans_regular-webfont.woff2") format('woff2-variations');
  font-display: swap;
}


/* ----------------------------------------------------------
   SHARED TOKENS (scoped to home page classes)
   ---------------------------------------------------------- */
:root {
  --h-navy:    #2b3a4b;
  --h-green:   #8cb93c;
  --h-orange:  #f9a525;
  --h-teal:    #779eab;
  --h-light:   #f7f7f8;
  --h-border:  rgba(112,117,122,.18);
  --h-shadow:  rgba(0,0,0,.12) 0 4px 16px;
  --h-radius:  8px;
  --h-font:    'product_sans', sans-serif;
}


/* ==========================================================
   HERO
   ========================================================== */

/* Background gradient + image — keep existing bg image from template */
.h-hero {
  background: linear-gradient(160deg, #779eab 0%, #c5d9de 55%, #ffffff 100%);
  min-height: 480px;
}

.h-hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 5% 40px;
}

.h-hero-text {
  max-width: 560px;
  color: var(--h-navy);
}

.h-hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--h-navy);
  margin-bottom: 10px;
}

.h-hero-h1 {
  font-family: var(--h-font);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: 1px;
  text-transform: capitalize;
  color: var(--h-navy);
  text-shadow: 0 2px 6px rgba(0,0,0,.15);
  margin-bottom: 16px;
}

.h-hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 24px;
}

.h-underline { text-decoration: underline; }

.h-hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.h-hero-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--h-navy);
}

.h-hero-media {
  flex-shrink: 0;
  max-width: 460px;
  text-align: center;
}

.h-hero-fig {
  margin: 0 0 14px;
}

.h-hero-fig img {
  width: 100%;
  max-width: 460px;
  border-radius: var(--h-radius);
  box-shadow: 0 6px 24px rgba(0,0,0,.22);
}

.h-hero-fig figcaption {
  font-style: italic;
  font-size: 0.88rem;
  color: #555;
  margin-top: 6px;
}

.h-hero-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--h-navy);
}


/* ==========================================================
   BUTTONS  (shared across all home page sections)
   ========================================================== */

.h-btn-primary {
  display: inline-block;
  background: var(--h-orange);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  padding: 12px 22px;
  border-radius: var(--h-radius);
  text-shadow: -1px 1px 2px rgba(0,0,0,.35);
  box-shadow: rgba(50,50,93,.2) 0 6px 20px -4px, rgba(0,0,0,.25) 0 4px 12px -4px;
  transition: box-shadow .3s;
}
.h-btn-primary:hover { box-shadow: 0 10px 28px rgba(0,0,0,.22); }

.h-btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--h-navy);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  padding: 11px 22px;
  border-radius: var(--h-radius);
  border: 2px solid var(--h-navy);
  transition: background .2s, color .2s;
}
.h-btn-secondary:hover { background: var(--h-navy); color: #fff; }

.h-btn-secondary-light {
  color: #fff;
  border: 2px solid #fff;
  border-radius: var(--h-radius);
  padding: 11px 22px;
	text-decoration: none;
}
.h-btn-secondary-light:hover { background: #fff; color: var(--h-navy); }

.h-btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--h-navy);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  padding: 11px 22px;
  border-radius: var(--h-radius);
  border: 2px solid var(--h-navy);
  transition: background .2s, color .2s;
}
.h-btn-outline:hover { background: var(--h-navy); color: #fff; }

.h-btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}


/* ==========================================================
   STATS BAR
   ========================================================== */

.h-stats-bar {
  border-top: 3px solid var(--h-border);
  border-bottom: 3px solid var(--h-border);
}

.h-stats-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
}

.h-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 22px 30px;
  border-right: 1px solid var(--h-border);
  flex: 1 1 160px;
}
.h-stat:last-child { border-right: none; }

.h-stat-num {
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--h-teal);
  font-family: var(--h-font);
}

.h-stat-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #666;
  margin-top: 4px;
}


/* ==========================================================
   URGENCY BAR
   ========================================================== */

.h-urgency-bar {
  background: var(--h-navy);
  text-align: center;
  padding: 14px 16px;
}

.h-urgency-bar p {
  color: #fff;
  font-size: 0.97rem;
  font-weight: 500;
  margin: 0;
}

.h-urgency-bar strong { font-weight: 700; }

.h-urgency-bar a {
  color: var(--h-orange);
  font-weight: 700;
  text-decoration: none;
}
.h-urgency-bar a:hover { text-decoration: underline; }


/* ==========================================================
   SECTION SCAFFOLDING
   ========================================================== */

.h-section {
  padding: 60px 16px;
  border-top: 3px solid var(--h-border);
}

.h-section-alt { background: var(--h-light); }

.h-section-h2 {
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  color: #222;
  text-align: center;
  text-shadow: -1px 1px 2px rgba(72,72,72,.2);
  margin-bottom: 10px;
}

.h-section-sub {
  text-align: center;
  font-size: 1.05rem;
  color: #555;
  margin-bottom: 36px;
}

.h-section-eyebrow {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color:#f9a525;
  margin-bottom: 6px;
}


/* ==========================================================
   HOOK BOXES  (3-up grid)
   ========================================================== */

.h-hook-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto 36px;
}

.h-hook-box {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: var(--h-radius);
  padding: 28px 24px;
  max-width: 360px;
  flex: 1 1 280px;
  box-shadow: var(--h-shadow);
  text-align: center;
}

.h-hook-box img { margin-bottom: 12px; }

.h-hook-box h3 {
  font-size: 1.15rem;
  color: var(--h-navy);
  margin-bottom: 10px;
  text-shadow: -1px 1px 1px rgba(0,0,0,.1);
}

.h-hook-box p {
  font-size: 1rem;
  line-height: 1.55;
  color: #444;
}


/* ==========================================================
   WHAT'S INCLUDED  (6-up icon grid)
   ========================================================== */

.h-included-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
  max-width: 1100px;
  margin: 0 auto;
}

.h-included-item {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: var(--h-radius);
  padding: 26px 20px;
  max-width: 310px;
  flex: 1 1 260px;
  text-align: center;
  box-shadow: var(--h-shadow);
}

.h-included-icon {
  font-size: 2.2rem;
  margin-bottom: 8px;
}

.h-included-item h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--h-navy);
  margin-bottom: 8px;
}

.h-included-item p {
  font-size: 0.93rem;
  color: #555;
  line-height: 1.5;
}


/* ==========================================================
   3-STEP PROCESS
   ========================================================== */

.h-process {
  max-width: 1100px;
  margin: 0 auto 40px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.h-process-step {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 36px;
  justify-content: center;
}

.h-process-step-rev { flex-direction: row-reverse; }

.h-process-text {
  flex: 1 1 320px;
  max-width: 520px;
}

.h-process-img {
  flex: 1 1 280px;
  max-width: 480px;
}

.h-process-img img {
  width: 100%;
  border-radius: var(--h-radius);
  box-shadow: 0 5px 20px rgba(0,0,0,.18);
}

.h-step-badge {
  display: inline-block;
  background: var(--h-navy);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 4px;
  margin-bottom: 12px;
}

.h-process-text h3 {
  font-size: 1.4rem;
  color: var(--h-navy);
  margin-bottom: 12px;
}

.h-process-text p {
  font-size: 1rem;
  line-height: 1.65;
  color: #333;
}


/* ==========================================================
   WHY OTC FAILS / HOW WE'RE DIFFERENT  (2-col)
   ========================================================== */

.h-two-col {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
}

.h-two-col-block {
  flex: 1 1 320px;
  max-width: 520px;
}

.h-two-col-h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--h-navy);
  margin-bottom: 20px;
}

.h-two-col-p {
  font-size: 1rem;
  line-height: 1.65;
  color: #333;
  margin-bottom: 12px;
}

.h-fail-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.h-fail-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 0.97rem;
  line-height: 1.5;
  color: #333;
}

.h-fail-x {
  color: #c0392b;
  font-size: 1.3rem;
  font-weight: 700;
  flex-shrink: 0;
  line-height: 1.3;
}

.h-stats-mini {
  display: flex;
  gap: 24px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.h-stats-mini div {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 72px;
}

.h-stats-mini span {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--h-teal);
  font-family: var(--h-font);
}

.h-stats-mini small {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #666;
  text-align: center;
  margin-top: 2px;
}


/* ==========================================================
   COMPARE TABLE
   ========================================================== */

.h-table-wrap {
  overflow-x: auto;
  max-width: 860px;
  margin: 0 auto 28px;
}

.h-compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.97rem;
  text-align: left;
}

.h-compare-table th {
  background: var(--h-navy);
  color: #fff;
  padding: 14px 18px;
  font-weight: 600;
}

.h-compare-table td {
  padding: 13px 18px;
  border-bottom: 1px solid #e5e7eb;
  color: #333;
}

.h-row-us td {
  background: #f0f7e6;
  font-weight: 600;
  color: var(--h-navy);
}

.h-compare-table tbody tr:last-child td { border-bottom: none; }


/* ==========================================================
   REVIEWS
   ========================================================== */

.h-review-header {
  text-align: center;
  margin-bottom: 36px;
}

.h-review-google-word {
  font-family: 'Product Sans', var(--h-font), sans-serif;
  font-size: 2.4rem;
  margin-bottom: 6px;
}

.h-review-g-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--h-navy);
}

.h-review-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
  max-width: 1200px;
  margin: 0 auto 28px;
}

.h-review-card {
  background: #fff;
  border-radius: 10px;
  padding: 24px;
  max-width: 450px;
  flex: 1 1 300px;
  box-shadow: 0 5px 18px rgba(0,0,0,.1);
  text-align: left;
}

.h-review-card blockquote p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
}

.h-review-bottom {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}

.h-review-badge {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.h-review-name {
  font-weight: 700;
  font-size: 0.95rem;
}

.h-review-name a {
  text-decoration: none;
  color: var(--h-navy);
}
.h-review-name a:hover { text-decoration: underline; }

.h-review-meta {
  font-size: 0.82rem;
  color: #70757a;
  margin-top: 2px;
}

.h-as-of {
  text-align: right;
  font-size: 0.82rem;
  color: #888;
  max-width: 1200px;
  margin: 8px auto 0;
  padding-right: 10px;
}


/* ==========================================================
   GUARANTEE  (dark band)
   ========================================================== */

.h-guarantee-section {
  background: var(--h-navy);
  padding: 64px 20px;
  border-top: 3px solid var(--h-border);
}

.h-guarantee-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
}

.h-guarantee-icon {
  font-size: 3rem;
  margin-bottom: 8px;
}

.h-guarantee-h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--h-green);
  margin-bottom: 18px;
}

.h-guarantee-inner p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #ccd8e4;
  margin-bottom: 14px;
}


/* ==========================================================
   CTA BAND
   ========================================================== */
.h-cta-band {
  background: linear-gradient(135deg, #4a7a8a 0%, #779eab 100%);
  padding: 80px 20px;
  border-top: 3px solid var(--h-border);
  text-align: center;
}
.h-cta-card {
  max-width: 700px;
  margin: 0 auto;
}
.h-cta-card-h3 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 16px;
  text-shadow: 0 2px 6px rgba(0,0,0,.2);
}
.h-cta-card-p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
  margin-bottom: 32px;
}


/* ==========================================================
   FAQ — wrapper, accordion, panels, buttons, payment
   ========================================================== */

.h-faq-wrap {
  max-width: 900px;
  margin: 0 auto;
}

.h-faq-wrap .h-section-h2 {
  margin-bottom: 20px;
}

/* Stars image used by reviewcount.js output */
img.stars {
  display: block;
  margin: 4px auto 0;
}

.accordion {
  background-color: #eee;
  color: #333;
  cursor: pointer;
  padding: 18px 18px 0;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 1rem;
  transition: background-color 0.4s;
  margin: 10px auto;
}
.accordion h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
  padding-bottom: 18px;
}
.active_faq,
.accordion:hover {
  background-color: #ccc;
}
.accordion::after {
  content: '\002B';
  color: #777;
  font-weight: bold;
  float: right;
  margin-left: 5px;
}
.active_faq::after {
  content: '\2212';
}

.panel {
  padding: 0 18px;
  background-color: #fff;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}
.panel_p {
  margin: 20px auto;
}
.more_question {
  text-align: center;
}

.faq-btn {
  display: flex;
  justify-content: center;
  background: var(--h-orange);
  margin: 40px auto;
  font-size: 1.4rem;
  border: none;
  border-radius: var(--h-radius);
  padding: 10px;
  text-align: center;
  box-shadow: rgba(50,50,93,.25) 0 50px 100px -20px,
              rgba(0,0,0,.3) 0 30px 60px -30px,
              rgba(10,37,64,.35) 0 -2px 6px 0 inset;
  cursor: pointer;
}
.faq-btn a {
  text-decoration: none;
  color: #fff;
  text-shadow: -1px 1px 2px rgba(72,72,72,.65);
}
.faq-btn:hover {
  box-shadow: rgba(50,50,93,.25) 0 50px 100px -20px,
              rgba(0,0,0,.3) 0 30px 60px -30px,
              rgba(10,37,64,.35) 0 -2px 6px 0;
}

.payment {
  display: flex;
  flex-wrap: wrap;
}
.payment_p {
  align-self: center;
  padding: 30px 0;
}
.afterpay {
  align-self: center;
  margin-left: 5px;
}


/* ==========================================================
   RESPONSIVE
   ========================================================== */

/* Tablet and below: hide desktop hero, show stacked layout */
@media (max-width: 900px) {
  .h-hero { min-height: unset; }
  .h-hero-inner {
    flex-direction: column;
    padding: 36px 5% 28px;
  }
  .h-hero-media { max-width: 420px; width: 100%; }
  .h-process-step-rev { flex-direction: row; }
  .h-two-col-block { max-width: 100%; }
  .h-hero-text { text-align: center; }
  .h-hero-btns { justify-content: center; }
  .h-hero-checks { justify-content: center; }
	.h-two-col-block { max-width: 100%; text-align: center; }
.h-stats-mini { justify-content: center; }
}

@media (max-width: 600px) {
  .h-hero-h1 { font-weight: 700; }
  .h-stat { padding: 16px 12px; }
  .h-stats-inner { gap: 0; }
  .h-process-step { flex-direction: column; }
  .h-process-step-rev { flex-direction: column; }
  .h-hook-box { max-width: 100%; }
  .h-included-item { max-width: 100%; }
  .payment { height: 100%; }
  .payment_p { padding: 0 0 10px; }
  .afterpay { margin: 0; }
}
