/* ==========================================================================
   The Home Clean Solution — Premium Trust Refresh
   Layered on top of style.css for all public pages (body.thcs-premium).
   Palette: navy #0f2540 · sky #0ea5e9 · emerald #10b981 · gold #f5b301
   Display: Fraunces (serif, used with restraint) · Body/UI: Inter
   ========================================================================== */

:root {
  --navy: #0f2540;
  --navy-700: #1b3a5e;
  --navy-800: #14304d;
  --sky: #0ea5e9;
  --sky-dark: #0284c7;
  --emerald: #10b981;
  --emerald-dark: #059669;
  --gold: #f5b301;
  --gold-soft: rgba(245, 179, 1, 0.18);
  --mist: #f6f9fc;
  --mist-2: #eef4fb;
  --ink: #0f2540;
  --muted: #5b6b80;
  --line: #e4ecf5;
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --shadow-soft: 0 18px 40px -20px rgba(15, 37, 64, 0.35);
  --shadow-card: 0 10px 30px -16px rgba(15, 37, 64, 0.28);
  --shadow-lift: 0 26px 60px -24px rgba(15, 37, 64, 0.45);
}

/* ---- Base scoping ---- */
body.thcs-premium {
  background: #fff;
  color: var(--ink);
  padding-top: 0; /* header is in a fixed wrapper; heroes pad themselves */
  -webkit-font-smoothing: antialiased;
}
body.thcs-premium .container { max-width: 1200px; }

/* Fixed header wrapper holds trust strip + nav as one unit */
.site-top { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; }

/* Display typography */
body.thcs-premium h1,
body.thcs-premium h2,
body.thcs-premium h3.h-display,
body.thcs-premium .section-title,
body.thcs-premium .hero-cine__title {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  letter-spacing: -0.01em;
  color: var(--ink);
}
body.thcs-premium .hl {
  background: linear-gradient(transparent 62%, var(--gold-soft) 62%);
  padding: 0 0.06em;
}
body.thcs-premium .text-sky { color: var(--sky); }
body.thcs-premium .text-emerald { color: var(--emerald); }

/* Headings over DARK backgrounds must stay white (beats the display-color rule above).
   Fixes invisible navy-on-dark titles in page heroes, navy sections, hub hero, CTAs. */
body.thcs-premium .page-hero h1,
body.thcs-premium .page-hero h2,
body.thcs-premium .page-hero h3,
body.thcs-premium .page-hero .section-title,
body.thcs-premium .p-section--navy h2,
body.thcs-premium .p-section--navy h3,
body.thcs-premium .p-section--navy .section-title,
body.thcs-premium .hub-hero-title,
body.thcs-premium .hub-hero .hub-hero-title,
body.thcs-premium .cta-final h2,
body.thcs-premium .hero-cine__title { color: #fff; }

/* ---- Section system ---- */
.p-section { padding: clamp(78px, 8.5vw, 136px) 0; }
.p-section--mist { background: var(--mist); }
.p-section--navy { background: var(--navy); color: #fff; }
.p-section--navy .section-title,
.p-section--navy h2,
.p-section--navy h3 { color: #fff; }
.p-head { max-width: 740px; margin: 0 auto clamp(48px, 5vw, 72px); text-align: center; }
.p-eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--sky); margin-bottom: 1rem;
}
.p-eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--gold); border-radius: 2px; }
.p-section--navy .p-eyebrow { color: #7dd3fc; }
.p-head .section-title { font-size: clamp(1.9rem, 3.6vw, 3rem); line-height: 1.08; margin-bottom: 1rem; font-weight: 600; }
.p-head .lead { color: var(--muted); font-size: 1.06rem; line-height: 1.7; }
.p-section--navy .p-head .lead { color: rgba(255,255,255,0.78); }

/* ===== Top trust strip ===== */
.trust-strip {
  background: var(--navy);
  color: rgba(255,255,255,0.92);
  font-size: 0.82rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.trust-strip__inner {
  max-width: 1200px; margin: 0 auto; padding: 0.5rem 1.5rem;
  display: flex; align-items: center; justify-content: center; gap: 1.75rem;
  flex-wrap: wrap; text-align: center;
}
.trust-strip__item { display: inline-flex; align-items: center; gap: 0.45rem; white-space: nowrap; }
.trust-strip__item i { color: var(--gold); }
.trust-strip__item .em { color: #6ee7b7; }
@media (max-width: 720px){ .trust-strip__item:nth-child(n+3){ display:none; } }

/* ===== Navbar premium tweaks ===== */
body.thcs-premium .navbar {
  position: static; /* inside the fixed .site-top wrapper */
  transform: none !important;
  background: rgba(255,255,255,0.90);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 6px 24px -18px rgba(15,37,64,0.5);
  padding: 0.65rem 0;
}
body.thcs-premium .navbar .logo span:last-child {
  font-family: var(--font-display); font-weight: 600; letter-spacing: -0.02em; color: var(--navy);
  font-size: 1.12rem; white-space: nowrap;
}
body.thcs-premium .navbar-inner { gap: 1rem; }
body.thcs-premium .nav-menu { gap: 1.5rem; }
body.thcs-premium .nav-link { color: var(--navy); font-weight: 500; white-space: nowrap; }
body.thcs-premium .nav-link:hover { color: var(--sky); }
.nav-trust-pill {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--emerald); color: #fff; font-size: 0.72rem; font-weight: 700;
  padding: 0.3rem 0.7rem; border-radius: 9999px; letter-spacing: 0.02em;
}
body.thcs-premium .btn-primary {
  background: var(--sky); border: none;
  box-shadow: 0 10px 22px -10px rgba(14,165,233,0.7);
}
body.thcs-premium .btn-primary:hover { background: var(--sky-dark); transform: translateY(-2px); }
.btn-gold { background: var(--gold) !important; color: var(--navy) !important; box-shadow: 0 10px 22px -10px rgba(245,179,1,0.8) !important; font-weight: 700; }
.btn-gold:hover { filter: brightness(1.04); transform: translateY(-2px); }

/* ===== Unified button system (fixes white-on-white hovers; consistent feel) ===== */
body.thcs-premium .btn {
  font-weight: 700; letter-spacing: .01em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease, filter .2s ease;
}
/* Outline = used only over dark sections: stays white text, fills translucent on hover */
body.thcs-premium .btn-outline { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.55); }
body.thcs-premium .btn-outline:hover { background: rgba(255,255,255,.16); color: #fff; border-color: #fff; transform: translateY(-2px); }
/* Secondary = light button on light sections: clear navy-fill hover */
body.thcs-premium .btn-secondary { background: #fff; color: var(--navy); border: 1.5px solid var(--line); }
body.thcs-premium .btn-secondary:hover { background: var(--navy); color: #fff; border-color: var(--navy); transform: translateY(-2px); box-shadow: var(--shadow-card); }
body.thcs-premium .btn-primary { background: var(--sky); color: #fff; border: 1.5px solid var(--sky); }
body.thcs-premium .btn-primary:hover { background: var(--sky-dark); border-color: var(--sky-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 14px 28px -12px rgba(14,165,233,.7); }

/* ===== Hero — full-bleed cinematic ===== */
.hero-cine {
  position: relative; min-height: clamp(560px, 84vh, 820px);
  display: flex; align-items: center;
  background: var(--navy) center / cover no-repeat;
  color: #fff; overflow: hidden;
}
.hero-cine__video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0; pointer-events: none;
}
@media (prefers-reduced-motion: reduce) { .hero-cine__video { display: none; } }
.hero-cine__overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(1100px 700px at 28% 38%, rgba(15,37,64,0.42), transparent 60%),
    linear-gradient(180deg, rgba(15,37,64,0.62) 0%, rgba(15,37,64,0.40) 42%, rgba(15,37,64,0.78) 100%);
}
.hero-cine__inner { position: relative; z-index: 2; width: 100%; padding: clamp(124px,13vw,160px) 0 0; }
.hero-cine__content { max-width: 760px; margin: 0 auto; text-align: center; }
.hero-cine__badge {
  display: inline-flex; align-items: center; gap: 0.55rem;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  padding: 0.45rem 1rem; border-radius: 9999px; font-size: 0.85rem; font-weight: 600;
  margin-bottom: 1.5rem;
}
.hero-cine__badge .stars { color: var(--gold); letter-spacing: 1px; }
body.thcs-premium .hero-cine__title {
  font-size: clamp(2.5rem, 6vw, 4.4rem); line-height: 1.02; font-weight: 600;
  color: #fff; margin-bottom: 1.25rem; text-shadow: 0 2px 30px rgba(0,0,0,0.45);
}
.hero-cine__title .hl { background: linear-gradient(transparent 60%, rgba(245,179,1,0.55) 60%); color: #fff; }
.hero-cine__desc { font-size: clamp(1.05rem, 1.7vw, 1.28rem); line-height: 1.65; color: rgba(255,255,255,0.92); max-width: 600px; margin: 0 auto 2rem; }

/* ZIP form */
.hero-zip {
  display: flex; gap: 0.5rem; max-width: 500px; margin: 0 auto;
  background: #fff; padding: 0.5rem; border-radius: 9999px;
  box-shadow: 0 18px 44px -16px rgba(0,0,0,0.5);
}
.hero-zip input {
  flex: 1; border: none; outline: none; background: transparent;
  padding: 0.7rem 1.1rem; font-size: 1rem; color: var(--ink);
}
.hero-zip .btn { border-radius: 9999px; white-space: nowrap; }
.hero-zip-result { margin-top: 1rem; color: #fff; font-weight: 600; min-height: 1.2em; }
.hero-zip-result i { color: #6ee7b7; }

.hero-cine__alt { margin-top: 1.4rem; display: flex; gap: 0.9rem; justify-content: center; flex-wrap: wrap; }
.hero-cine__alt .btn-outline { color: #fff; border-color: rgba(255,255,255,0.5); }
.hero-cine__alt .btn-outline:hover { background: rgba(255,255,255,0.12); border-color: #fff; }

/* Frosted glass trust bar (signature) */
.hero-trustbar {
  position: relative; z-index: 2; margin-top: clamp(40px, 6vw, 72px);
  background: rgba(255,255,255,0.10); border-top: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.hero-trustbar__inner {
  max-width: 1080px; margin: 0 auto; padding: 1.1rem 1.5rem;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
}
.hero-trustbar__item { display: flex; align-items: center; gap: 0.7rem; justify-content: center; color: #fff; }
.hero-trustbar__item i { font-size: 1.4rem; color: var(--gold); flex-shrink: 0; }
.hero-trustbar__item .em { color: #6ee7b7; }
.hero-trustbar__item strong { display: block; font-size: 0.95rem; font-weight: 700; line-height: 1.15; }
.hero-trustbar__item span { font-size: 0.78rem; color: rgba(255,255,255,0.75); }
@media (max-width: 860px){ .hero-trustbar__inner { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px){
  .hero-trustbar__inner { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .hero-trustbar__item { justify-content: flex-start; }
}

/* ===== Trust pillars ===== */
.pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.pillar {
  background: #fff; border: 1px solid var(--line); border-radius: 18px;
  padding: 2rem 1.6rem; text-align: center; box-shadow: var(--shadow-card);
  transition: transform .25s ease, box-shadow .25s ease;
}
.pillar:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.pillar__icon {
  width: 64px; height: 64px; border-radius: 16px; margin: 0 auto 1.1rem;
  display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: #fff;
  background: linear-gradient(135deg, var(--sky), var(--emerald));
}
.pillar:nth-child(2) .pillar__icon { background: linear-gradient(135deg, var(--emerald), var(--emerald-dark)); }
.pillar:nth-child(3) .pillar__icon { background: linear-gradient(135deg, var(--gold), #e08e00); color: var(--navy); }
.pillar:nth-child(4) .pillar__icon { background: linear-gradient(135deg, var(--navy-700), var(--navy)); }
.pillar h3 { font-size: 1.12rem; margin-bottom: 0.5rem; font-weight: 700; font-family: var(--font-body,'Inter',sans-serif); color: var(--navy); }
.pillar p { color: var(--muted); font-size: 0.92rem; line-height: 1.6; }
@media (max-width: 900px){ .pillars { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 520px){ .pillars { grid-template-columns: 1fr; } }

/* ===== Stat band ===== */
.statband { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; text-align: center; }
.statband .stat__num {
  font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 600;
  color: #fff; line-height: 1; display: block;
}
.statband .stat__num .suffix { color: var(--gold); }
.statband .stat__label { color: rgba(255,255,255,0.72); font-size: 0.92rem; margin-top: 0.5rem; display: block; }
.statband .stat + .stat { border-left: 1px solid rgba(255,255,255,0.12); }
@media (max-width: 760px){ .statband { grid-template-columns: 1fr 1fr; gap: 2rem; } .statband .stat + .stat { border-left: none; } }

/* ===== How it works ===== */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; counter-reset: step; }
.step {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: 18px;
  padding: 2.4rem 1.6rem 1.8rem; box-shadow: var(--shadow-card);
}
.step__num {
  position: absolute; top: -22px; left: 1.6rem; width: 44px; height: 44px; border-radius: 12px;
  background: var(--navy); color: #fff; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 600; font-size: 1.2rem;
}
.step h3 { font-size: 1.1rem; margin: 0.4rem 0 0.5rem; font-family: var(--font-body,'Inter',sans-serif); color: var(--navy); }
.step p { color: var(--muted); font-size: 0.92rem; line-height: 1.6; }
@media (max-width: 900px){ .steps { grid-template-columns: 1fr 1fr; gap: 1.75rem; } }
@media (max-width: 480px){ .steps { grid-template-columns: 1fr; } }

/* ===== Services grid ===== */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.svc-card {
  display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line);
  border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-card);
  transition: transform .25s ease, box-shadow .25s ease;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.svc-card__media { position: relative; aspect-ratio: 16/10; overflow: hidden; background: var(--mist-2); }
.svc-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.svc-card:hover .svc-card__media img { transform: scale(1.06); }
.svc-card__badge {
  position: absolute; top: 0.9rem; left: 0.9rem; background: rgba(255,255,255,0.92);
  color: var(--navy); font-size: 0.78rem; font-weight: 700; padding: 0.35rem 0.7rem; border-radius: 9999px;
}
.svc-card__body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.svc-card__body h3 { font-size: 1.2rem; margin-bottom: 0.5rem; font-family: var(--font-body,'Inter',sans-serif); font-weight: 700; color: var(--navy); }
.svc-card__body p { color: var(--muted); font-size: 0.93rem; line-height: 1.6; margin-bottom: 1rem; }
.svc-card__features { list-style: none; padding: 0; margin: 0 0 1.25rem; }
.svc-card__features li { display: flex; align-items: flex-start; gap: 0.55rem; font-size: 0.9rem; color: var(--ink); margin-bottom: 0.45rem; }
.svc-card__features li i { color: var(--emerald); margin-top: 0.2rem; }
.svc-card__foot { margin-top: auto; }
@media (max-width: 900px){ .svc-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px){ .svc-grid { grid-template-columns: 1fr; } }

/* ===== Guarantee section ===== */
.guarantee { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.guarantee__media { position: relative; border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-lift); }
.guarantee__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.guarantee__seal {
  position: absolute; bottom: 1.2rem; right: 1.2rem; background: #fff; border-radius: 16px;
  padding: 0.9rem 1.1rem; box-shadow: var(--shadow-soft); display: flex; align-items: center; gap: 0.7rem;
}
.guarantee__seal i { font-size: 2rem; color: var(--emerald); }
.guarantee__seal strong { display: block; color: var(--navy); font-size: 1rem; line-height: 1.1; }
.guarantee__seal span { font-size: 0.78rem; color: var(--muted); }
.guarantee__list { list-style: none; padding: 0; margin: 1.5rem 0 2rem; display: grid; gap: 1rem; }
.guarantee__list li { display: flex; gap: 0.85rem; align-items: flex-start; }
.guarantee__list .ic {
  flex-shrink: 0; width: 38px; height: 38px; border-radius: 10px; display: flex; align-items: center;
  justify-content: center; background: var(--mist); color: var(--emerald); font-size: 1rem;
}
.guarantee__list h4 { font-size: 1rem; margin-bottom: 0.15rem; color: var(--navy); font-family: var(--font-body,'Inter',sans-serif); }
.guarantee__list p { color: var(--muted); font-size: 0.9rem; line-height: 1.55; }
@media (max-width: 880px){ .guarantee { grid-template-columns: 1fr; } .guarantee__media { order: -1; } }

/* ===== Reviews ===== */
.reviews-top { display: flex; align-items: center; justify-content: center; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.reviews-score { text-align: center; }
.reviews-score .num { font-family: var(--font-display); font-size: 3rem; font-weight: 600; color: var(--navy); line-height: 1; }
.reviews-score .stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 2px; margin: 0.3rem 0; }
.reviews-score .sub { color: var(--muted); font-size: 0.85rem; }
.reviews-badge {
  display: inline-flex; align-items: center; gap: 0.5rem; background: #fff; border: 1px solid var(--line);
  border-radius: 9999px; padding: 0.6rem 1.1rem; font-weight: 700; color: var(--navy); box-shadow: var(--shadow-card);
}
.reviews-badge i { color: var(--emerald); }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.review-card {
  background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 1.6rem;
  box-shadow: var(--shadow-card); display: flex; flex-direction: column;
}
.review-card__stars { color: var(--gold); margin-bottom: 0.8rem; letter-spacing: 1px; }
.review-card__text { color: var(--ink); line-height: 1.65; font-size: 0.96rem; margin-bottom: 1.25rem; flex: 1; }
.review-card__foot { display: flex; align-items: center; gap: 0.8rem; }
.review-card__avatar { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; flex-shrink: 0; background: var(--mist-2); }
.review-card__name { font-weight: 700; color: var(--navy); font-size: 0.95rem; }
.review-card__meta { font-size: 0.8rem; color: var(--muted); display: flex; align-items: center; gap: 0.35rem; }
.review-card__meta i { color: var(--emerald); }
@media (max-width: 900px){ .review-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px){ .review-grid { grid-template-columns: 1fr; } }

/* ===== Gallery ===== */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 1rem; }
.gallery__item { position: relative; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-card); }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery__item:hover img { transform: scale(1.07); }
.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }
@media (max-width: 900px){ .gallery { grid-template-columns: repeat(2,1fr); grid-auto-rows: 170px; } .gallery__item--wide { grid-column: span 2; } }
@media (max-width: 520px){ .gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 130px; } }

/* ===== Coverage / secure band ===== */
.coverage { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4rem); align-items: center; }
.coverage__pays { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; margin-top: 1.5rem; }
.coverage__pays .lock { display: inline-flex; align-items: center; gap: 0.5rem; color: rgba(255,255,255,0.9); font-weight: 600; font-size: 0.9rem; }
.coverage__pays .lock i { color: #6ee7b7; }
.coverage__cards { display: flex; gap: 0.6rem; }
.coverage__cards i { font-size: 1.9rem; color: rgba(255,255,255,0.85); }
.coverage__media img { width: 100%; border-radius: 20px; box-shadow: var(--shadow-lift); display: block; }
@media (max-width: 880px){ .coverage { grid-template-columns: 1fr; } }

/* ===== FAQ ===== */
.faq2 { max-width: 820px; margin: 0 auto; }
.faq2__item { background: #fff; border: 1px solid var(--line); border-radius: 14px; margin-bottom: 0.8rem; overflow: hidden; }
.faq2__q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 1.15rem 1.3rem; font-size: 1.02rem; font-weight: 600; color: var(--navy);
  display: flex; justify-content: space-between; align-items: center; gap: 1rem; font-family: var(--font-body,'Inter',sans-serif);
}
.faq2__q i { color: var(--sky); transition: transform .3s ease; flex-shrink: 0; }
.faq2__item.open .faq2__q i { transform: rotate(180deg); }
.faq2__a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq2__a-inner { padding: 0 1.3rem 1.25rem; color: var(--muted); line-height: 1.7; }

/* ===== Final CTA ===== */
.cta-final { position: relative; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-700) 55%, var(--sky-dark) 130%); color: #fff; text-align: center; overflow: hidden; }
.cta-final::after { content:""; position:absolute; inset:0; background: radial-gradient(600px 300px at 80% 0%, rgba(245,179,1,0.16), transparent 60%); }
.cta-final .container { position: relative; z-index: 1; }
.cta-final h2 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 0.8rem; font-weight: 600; }
.cta-final p { color: rgba(255,255,255,0.85); font-size: 1.1rem; max-width: 560px; margin: 0 auto 2rem; }
.cta-final__btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.cta-final__fine { margin-top: 1.6rem; font-size: 0.88rem; color: rgba(255,255,255,0.72); }
.cta-final__fine i { color: #6ee7b7; }

/* ===== Premium footer ===== */
.site-footer { background: var(--navy); color: rgba(255,255,255,0.72); padding: clamp(48px,6vw,80px) 0 2rem; }
.site-footer .ft-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 2.5rem; }
.site-footer .ft-logo { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 1rem; }
.site-footer .ft-logo img { height: 38px; width: 38px; object-fit: contain; border-radius: 8px; background:#fff; padding:3px; }
.site-footer .ft-logo span { font-family: var(--font-display); font-weight: 600; color: #fff; font-size: 1.15rem; }
.site-footer p { line-height: 1.7; font-size: 0.92rem; }
.site-footer .ft-title { color: #fff; font-weight: 700; font-size: 0.95rem; margin-bottom: 1rem; letter-spacing: 0.02em; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin-bottom: 0.6rem; }
.site-footer a { color: rgba(255,255,255,0.72); text-decoration: none; transition: color .2s ease; font-size: 0.92rem; }
.site-footer a:hover { color: var(--gold); }
.site-footer .ft-trust { display: flex; gap: 0.8rem; margin: 1.2rem 0; flex-wrap: wrap; }
.site-footer .ft-trust span { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.78rem; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); padding: 0.35rem 0.7rem; border-radius: 9999px; }
.site-footer .ft-trust i { color: #6ee7b7; }
.site-footer .ft-social { display: flex; gap: 0.7rem; margin-top: 1rem; }
.site-footer .ft-social a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; color: #fff; }
.site-footer .ft-social a:hover { background: var(--sky); }
.site-footer .ft-bottom { border-top: 1px solid rgba(255,255,255,0.1); margin-top: 2.5rem; padding-top: 1.5rem; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: 0.85rem; }
.site-footer .ft-bottom a { margin-left: 1.5rem; }
@media (max-width: 880px){ .site-footer .ft-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 520px){ .site-footer .ft-grid { grid-template-columns: 1fr; } .site-footer .ft-bottom { flex-direction: column; } .site-footer .ft-bottom a { margin-left: 0; margin-right: 1.5rem; } }

/* ===== Inner-page hero banner (about/services/contact/etc.) ===== */
.page-hero { position: relative; background: var(--navy) center/cover no-repeat; color: #fff; padding: clamp(135px,15vw,180px) 0 clamp(50px,7vw,90px); text-align: center; overflow: hidden; }
.page-hero__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15,37,64,0.72), rgba(15,37,64,0.88)); z-index: 1; }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); color: #fff; margin-bottom: 1rem; font-weight: 600; }
.page-hero p { color: rgba(255,255,255,0.85); font-size: 1.1rem; max-width: 620px; margin: 0 auto; line-height: 1.6; }
.page-hero__crumbs { font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-bottom: 1rem; }
.page-hero__crumbs a { color: rgba(255,255,255,0.8); text-decoration: none; }

/* ===== Reusable feature strip for inner pages ===== */
.feature-split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4rem); align-items: center; }
.feature-split--rev .feature-split__media { order: 2; }
.feature-split__media img { width: 100%; border-radius: 20px; box-shadow: var(--shadow-lift); display: block; }
.feature-split h2 { font-size: clamp(1.7rem,3vw,2.4rem); margin-bottom: 1rem; font-weight: 600; }
.feature-split p { color: var(--muted); line-height: 1.7; margin-bottom: 1rem; }
@media (max-width: 880px){ .feature-split { grid-template-columns: 1fr; } .feature-split--rev .feature-split__media { order: -1; } }

/* ===== Teaser video frame (cleaner page) ===== */
.teaser-wrap { max-width: 920px; margin: 0 auto; }
.teaser { position: relative; padding-top: 56.25%; border-radius: 22px; overflow: hidden; box-shadow: var(--shadow-lift); background: #0b1220; border: 1px solid rgba(255,255,255,0.08); }
.teaser iframe, .teaser video { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; object-fit: cover; }
.teaser__badge { position: absolute; top: 1rem; left: 1rem; z-index: 2; display: inline-flex; align-items: center; gap: .5rem; background: rgba(15,37,64,.7); backdrop-filter: blur(6px); color: #fff; font-size: .8rem; font-weight: 700; padding: .45rem .9rem; border-radius: 9999px; }
.teaser__badge .dot { width: 8px; height: 8px; border-radius: 50%; background: #ef4444; box-shadow: 0 0 0 0 rgba(239,68,68,.6); animation: teaserPulse 2s infinite; }
@keyframes teaserPulse { 0%{box-shadow:0 0 0 0 rgba(239,68,68,.6);} 70%{box-shadow:0 0 0 10px rgba(239,68,68,0);} 100%{box-shadow:0 0 0 0 rgba(239,68,68,0);} }

/* ===== Pains -> solution (cleaner page) ===== */
.pain-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; max-width: 920px; margin: 0 auto; }
.pain { display: flex; gap: .9rem; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-left: 4px solid #ef4444; border-radius: 12px; padding: 1.1rem 1.3rem; box-shadow: var(--shadow-card); }
.pain i { color: #ef4444; font-size: 1.15rem; margin-top: .15rem; flex-shrink: 0; }
.pain p { color: var(--ink); font-size: .96rem; line-height: 1.5; margin: 0; }
.bridge { text-align: center; max-width: 720px; margin: 2.5rem auto 0; }
.bridge p { font-family: var(--font-display); font-size: clamp(1.3rem, 2.6vw, 1.9rem); color: var(--navy); line-height: 1.3; }
@media (max-width: 720px){ .pain-grid { grid-template-columns: 1fr; } }

/* ===== Earnings highlight cards ===== */
.earn-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.earn { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 1.8rem 1.5rem; box-shadow: var(--shadow-card); transition: transform .25s ease, box-shadow .25s ease; }
.earn:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.earn i { font-size: 1.5rem; color: var(--sky); margin-bottom: .8rem; }
.earn h3 { font-size: 1.1rem; margin-bottom: .4rem; color: var(--navy); font-family: var(--font-body,'Inter',sans-serif); }
.earn p { color: var(--muted); font-size: .93rem; line-height: 1.6; }
@media (max-width: 900px){ .earn-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px){ .earn-grid { grid-template-columns: 1fr; } }

/* ===== Enhanced scroll reveals ===== */
body.thcs-premium .reveal,
body.thcs-premium .reveal-left,
body.thcs-premium .reveal-right,
body.thcs-premium .reveal-scale {
  opacity: 0;
  transition: opacity .75s cubic-bezier(.2,.7,.2,1), transform .75s cubic-bezier(.2,.7,.2,1);
  will-change: opacity, transform;
}
body.thcs-premium .reveal { transform: translateY(38px); }
body.thcs-premium .reveal-left { transform: translateX(-46px); }
body.thcs-premium .reveal-right { transform: translateX(46px); }
body.thcs-premium .reveal-scale { transform: scale(.93); }
body.thcs-premium .reveal.active,
body.thcs-premium .reveal-left.active,
body.thcs-premium .reveal-right.active,
body.thcs-premium .reveal-scale.active { opacity: 1; transform: none; }
body.thcs-premium .hero-cine__video { will-change: transform; }

/* ===== Mobile navigation (premium) ===== */
@media (max-width: 992px) {
  body.thcs-premium .navbar-inner { position: relative; flex-wrap: nowrap; gap: .75rem; }
  body.thcs-premium .logo span:last-child { font-size: 1.05rem; white-space: nowrap; }
  body.thcs-premium .logo .logo-icon img { height: 34px; width: auto; }
  body.thcs-premium .mobile-menu-btn { display: block; background: none; border: 0; color: var(--navy); font-size: 1.4rem; cursor: pointer; order: 3; }
  body.thcs-premium .nav-menu {
    display: none; position: absolute; top: calc(100% + 1px); left: 0; right: 0; margin: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; border-top: 1px solid var(--line); box-shadow: var(--shadow-card);
    padding: .25rem 1.25rem .75rem; z-index: 1001;
  }
  body.thcs-premium .nav-menu.active { display: flex; }
  body.thcs-premium .nav-menu li { width: 100%; }
  body.thcs-premium .nav-menu .nav-link { display: block; padding: .85rem .25rem; border-bottom: 1px solid var(--line); color: var(--navy); }
  body.thcs-premium .nav-cta { display: flex !important; align-items: center; gap: .5rem; order: 2; }
  body.thcs-premium .nav-cta .nav-trust-pill,
  body.thcs-premium .nav-cta > .nav-link { display: none; }
  body.thcs-premium .nav-cta .btn { width: auto; }
}
@media (max-width: 420px) {
  body.thcs-premium .logo span:last-child { font-size: .95rem; }
  body.thcs-premium .nav-cta .btn { padding: .5rem .85rem; font-size: .85rem; }
}

/* ===== Pricing ===== */
.price-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; align-items: stretch; }
.price-card { position: relative; background: #fff; border: 1.5px solid var(--line); border-radius: 18px; padding: 2rem 1.5rem; text-align: center; box-shadow: var(--shadow-card); display: flex; flex-direction: column; transition: transform .25s ease, box-shadow .25s ease; }
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.price-card--featured { border-color: var(--gold); box-shadow: 0 20px 44px -20px rgba(245,179,1,.55); }
.price-card__tag { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--navy); font-size: .72rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; padding: .3rem .8rem; border-radius: 9999px; white-space: nowrap; }
.price-card__hours { font-weight: 700; color: var(--navy); font-size: 1.05rem; margin-bottom: .25rem; }
.price-card__amt { font-family: var(--font-display); font-size: 2.8rem; font-weight: 600; color: var(--navy); line-height: 1; }
.price-card__amt small { font-size: .9rem; color: var(--muted); font-family: var(--font-body,'Inter',sans-serif); font-weight: 500; }
.price-card__note { color: var(--muted); font-size: .9rem; margin: .6rem 0 1.25rem; flex: 1; }
.plan-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; max-width: 860px; margin: 0 auto; }
.plan-card { background: #fff; border: 1.5px solid var(--line); border-radius: 20px; padding: 2.25rem; box-shadow: var(--shadow-card); }
.plan-card--member { border-color: var(--sky); }
.plan-card h3 { font-family: var(--font-body,'Inter',sans-serif); font-size: 1.15rem; color: var(--navy); margin-bottom: .5rem; }
.plan-card__rate { font-family: var(--font-display); font-size: 2.6rem; font-weight: 600; color: var(--navy); line-height: 1; margin-bottom: .25rem; }
.plan-card__rate small { font-size: 1rem; color: var(--muted); font-family: var(--font-body,'Inter',sans-serif); }
.plan-card ul { list-style: none; padding: 0; margin: 1.25rem 0 0; display: grid; gap: .6rem; }
.plan-card li { display: flex; gap: .6rem; align-items: flex-start; color: var(--ink); font-size: .94rem; }
.plan-card li i { color: var(--emerald); margin-top: .2rem; }
@media (max-width: 900px){ .price-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .price-grid, .plan-grid { grid-template-columns: 1fr; } }

/* ===== Motion / a11y ===== */
@media (prefers-reduced-motion: reduce) {
  .reveal, * { transition: none !important; animation: none !important; }
  .svc-card:hover, .pillar:hover { transform: none; }
}
body.thcs-premium a:focus-visible,
body.thcs-premium button:focus-visible,
body.thcs-premium input:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; border-radius: 4px; }

/* ===== Prose (legal / content pages) ===== */
.prose { max-width: 820px; margin: 0 auto; color: var(--muted); line-height: 1.85; font-size: 1.02rem; }
.prose h2 { font-family: var(--font-display); color: var(--navy); font-size: 1.4rem; font-weight: 600; margin: 2.25rem 0 .6rem; }
.prose h3 { color: var(--navy); font-size: 1.1rem; font-weight: 700; margin: 1.5rem 0 .5rem; font-family: var(--font-body,'Inter',sans-serif); }
.prose p { margin-bottom: 1rem; }
.prose ul, .prose ol { margin: 0 0 1.1rem 1.4rem; }
.prose li { margin-bottom: .5rem; }
.prose a { color: var(--sky); font-weight: 600; }
.prose strong { color: var(--ink); }
.prose .updated { color: var(--muted); font-size: .92rem; }
