/* ─────────────────────────────────────────────
   HOME REDESIGN - only loaded on home.php (style.css is skipped there).
   ───────────────────────────────────────────── */

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; }
html { overflow-x: hidden; }
body { margin: 0; }
button { font-family: inherit; font-size: inherit; line-height: inherit; }
mark { background: none; color: inherit; padding: 0; }

/* ─── LAYOUT UTILITIES (from old style.css) ─── */
.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  position: relative;
  z-index: 10;
  padding-left: 16px;
  padding-right: 16px;
}
@media (min-width: 576px) { .container { max-width: 540px; } }
@media (min-width: 768px) { .container { max-width: 720px; } }
@media (min-width: 992px) { .container { max-width: 960px; } }
@media (min-width: 1200px) { .container { max-width: 1140px; } }

.center { text-align: center; }
.text-center { text-align: center; }

/* FAQ answers collapse by default; toggleFaqHome() flips display:block */
.faq-answer { display: none; }

/* ─── WOW.JS ANIMATIONS (was in old style.css) ─── */
.wow { visibility: hidden; }
.animated { animation-duration: .9s; animation-fill-mode: both; }
@keyframes hv-fadeIn   { from { opacity: 0; } to { opacity: 1; } }
@keyframes hv-fadeInUp { from { opacity: 0; transform: translate3d(0, 24px, 0); }
                         to   { opacity: 1; transform: translate3d(0, 0,    0); } }
.fadeIn   { animation-name: hv-fadeIn; }
.fadeInUp { animation-name: hv-fadeInUp; }
@media (prefers-reduced-motion: reduce) {
  .wow { visibility: visible !important; }
  .animated { animation: none !important; }
}

/* ─── VARIABLES + BASE ─── */
body {
  --hv-teal:        #00d0a0;
  --hv-teal-dim:    rgba(0,208,160,0.15);
  --hv-teal-glow:   rgba(0,208,160,0.25);
  --hv-bg:          #111815;
  --hv-border:      rgba(255,255,255,0.11);
  --hv-border-teal: rgba(0,208,160,0.3);
  --hv-text:        #f0f4f2;
  --hv-muted:       rgba(240,244,242,0.65);
  --hv-faint:       rgba(240,244,242,0.45);
  background: var(--hv-bg);
  color: var(--hv-text);
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #000; }
::-webkit-scrollbar-thumb { background: var(--hv-teal); border-radius: 4px; }

a { color: var(--hv-teal); text-decoration: none; transition: color .3s; }
a:hover { color: #5eecc8; }

h1, h2, h3,
h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  color: var(--hv-text);
  line-height: 1.15;
}
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

#main { padding-top: 0; background: transparent; }

/* ─── HEADER ─── */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 72px;
  display: flex;
  align-items: center;
  padding: 0 32px;
  background: transparent;
  border: none;
  box-shadow: none;
  transition: background .4s, border-color .4s;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
#header.scrolled {
  background: rgba(10,12,11,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--hv-border-teal);
}

.hv-header-inner {
  width: 100%; max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center;
}

.hv-logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem; font-weight: 800; letter-spacing: 1.5px;
  color: #fff; flex-shrink: 0;
  display: flex; align-items: center; line-height: 1;
  text-decoration: none;
}
.hv-logo:hover { color: #fff; }
.hv-logo mark { background: none; color: var(--hv-teal); padding: 0; }
.hv-logo-mark { width: 30px; height: 30px; border-radius: 7px; flex-shrink: 0; display: block; margin-right: 10px; }

.hv-nav {
  position: absolute; left: 50%; transform: translateX(-50%);
  display: flex; gap: 4px;
}
.hv-nav a {
  color: rgba(255,255,255,0.75);
  font-family: 'Montserrat', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase;
  padding: 8px 12px; border-radius: 6px;
  transition: color .2s, background .2s;
  text-decoration: none;
}
.hv-nav a:hover { color: var(--hv-teal); background: var(--hv-teal-dim); }

.hv-header-actions { margin-left: auto; display: flex; align-items: center; gap: 8px; }

.hv-icon-btn {
  position: relative;
  width: 38px; height: 38px; min-width: 0; margin: 0; border-radius: 10px;
  border: 1px solid var(--hv-border);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.7);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; flex-shrink: 0; padding: 0;
  box-shadow: none;
  transition: border-color .2s, background .2s, color .2s;
}
.hv-icon-btn:hover { border-color: var(--hv-teal); background: var(--hv-teal-dim); color: var(--hv-teal); }
.hv-icon-btn svg { width: 17px; height: 17px; }

.hv-icon-badge {
  position: absolute; top: -5px; right: -5px;
  min-width: 16px; height: 16px; border-radius: 999px;
  background: var(--hv-teal); color: #000;
  font-family: 'Montserrat', sans-serif; font-size: 9px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  padding: 0 3px; pointer-events: none;
}

.hv-btn-nav {
  background: var(--hv-teal); color: #000;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px; font-weight: 800; letter-spacing: 1.2px; text-transform: uppercase;
  display: inline-flex; align-items: center;
  height: 38px; padding: 0 18px; border-radius: 8px;
  transition: opacity .2s, transform .2s; text-decoration: none;
}
.hv-btn-nav:hover { color: #000; opacity: .85; transform: translateY(-1px); }

.hv-hamburger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 38px; height: 38px; min-width: 0; margin: 0;
  background: rgba(255,255,255,0.05); border: 1px solid var(--hv-border);
  border-radius: 10px; cursor: pointer; padding: 8px; box-shadow: none;
}
.hv-hamburger span { display: block; width: 100%; height: 2px; background: rgba(255,255,255,0.75); border-radius: 2px; transition: all .25s; }
.hv-hamburger:hover { border-color: var(--hv-teal); background: var(--hv-teal-dim); }
.hv-hamburger:hover span { background: var(--hv-teal); }

/* ─── MOBILE NAV ─── */
.hv-mobile-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.6); backdrop-filter: blur(4px);
  z-index: 200;
}
.hv-mobile-overlay.open { display: block; }

.hv-mobile-nav {
  position: fixed; top: 72px; right: -100%;
  width: min(280px, 85vw); height: calc(100% - 72px);
  background: rgba(14,20,17,0.98); backdrop-filter: blur(20px);
  border-left: 1px solid var(--hv-border-teal);
  z-index: 201; transition: right .3s cubic-bezier(.4,0,.2,1);
  padding: 24px 24px 32px;
}
.hv-mobile-nav.open { right: 0; }
.hv-mobile-nav ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 4px; }
.hv-mobile-nav ul li a {
  display: block; padding: 13px 16px;
  color: rgba(255,255,255,0.75);
  font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: 700;
  letter-spacing: 1.2px; text-transform: uppercase;
  border-radius: 10px; border-left: 3px solid transparent;
  transition: all .2s; text-decoration: none;
}
.hv-mobile-nav ul li a:hover { color: var(--hv-teal); background: var(--hv-teal-dim); border-left-color: var(--hv-teal); }
.hv-mobile-nav-cta { background: var(--hv-teal); color: #000; text-align: center; }
.hv-mobile-nav-cta:hover { color: #000; }
.hv-mobile-nav-close {
  position: absolute; top: 12px; right: 16px;
  width: 36px; height: 36px; background: rgba(255,255,255,0.06);
  border: 1px solid var(--hv-border); border-radius: 8px;
  color: rgba(255,255,255,0.6); font-size: 20px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: none; line-height: 1; transition: all .2s;
}
.hv-mobile-nav-close:hover { color: var(--hv-teal); border-color: var(--hv-teal); }

@media (max-width: 1024px) {
  .hv-hamburger { display: flex; }
  .hv-nav { display: none; }
  .hv-btn-nav-desktop { display: none; }
}

/* ─── HERO ─── */
#hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
  background-color: #0f1e1a;
  padding-top: 72px;  /* compensate for fixed 72px header so content centres in the visible area */
}
#hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 200px; background: linear-gradient(to bottom, transparent, var(--hv-bg));
  z-index: 2; pointer-events: none;
}

/* Wave SVG is inlined into the page so each <g> gets its own composited layer
   (translateX runs on the GPU instead of forcing the browser to re-rasterize
   the whole image every frame, which is what happens with <img src="...svg">). */
.hero-waves {
  position: absolute;
  top: 0; left: -20%;
  width: 140%; height: 100%;
  z-index: 0;
  pointer-events: none;
  user-select: none;
  display: block;
}
@keyframes hv-wave1 { 0%,100%{transform:translateX(0)} 50%{transform:translateX(-55px)} }
@keyframes hv-wave2 { 0%,100%{transform:translateX(0)} 50%{transform:translateX(48px)} }
@keyframes hv-wave3 { 0%,100%{transform:translateX(0)} 50%{transform:translateX(-62px)} }
@keyframes hv-wave4 { 0%,100%{transform:translateX(0)} 50%{transform:translateX(40px)} }
@keyframes hv-wave5 { 0%,100%{transform:translateX(0)} 50%{transform:translateX(-50px)} }
@keyframes hv-wave6 { 0%,100%{transform:translateX(0)} 50%{transform:translateX(58px)} }
.hv-wave-l1 { animation: hv-wave1 4.2s ease-in-out infinite; will-change: transform; }
.hv-wave-l2 { animation: hv-wave2 5.0s ease-in-out infinite; will-change: transform; }
.hv-wave-l3 { animation: hv-wave3 3.6s ease-in-out infinite; will-change: transform; }
.hv-wave-l4 { animation: hv-wave4 6.0s ease-in-out infinite; will-change: transform; }
.hv-wave-l5 { animation: hv-wave5 4.6s ease-in-out infinite; will-change: transform; }
.hv-wave-l6 { animation: hv-wave6 3.4s ease-in-out infinite; will-change: transform; }
@media (prefers-reduced-motion: reduce) {
  .hv-wave-l1, .hv-wave-l2, .hv-wave-l3,
  .hv-wave-l4, .hv-wave-l5, .hv-wave-l6 { animation: none; }
}

.hero-inner {
  position: relative; z-index: 3;
  display: flex; flex-direction: column; align-items: center;
  max-width: 820px; padding: 0 24px;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,208,160,0.1); border: 1px solid rgba(0,208,160,0.3);
  border-radius: 100px; padding: 6px 16px;
  font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--hv-teal); margin-bottom: 28px;
}
.hero-eyebrow::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--hv-teal); animation: hv-pulse 2s infinite; flex-shrink: 0;
}
@keyframes hv-pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(.7)} }

.hero-h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 800;
  letter-spacing: -0.03em; color: #fff;
  text-shadow: 0 2px 40px rgba(0,0,0,0.5);
  margin-bottom: 20px; line-height: 1.1;
}
.hero-h1 .hero-accent { color: var(--hv-teal); }

.hero-sub {
  font-size: 1.1rem; color: var(--hv-muted);
  margin-bottom: 40px; letter-spacing: 0.2px; font-weight: 400; max-width: 520px;
}

.hero-cta-row {
  display: flex; align-items: center; gap: 16px;
  flex-wrap: wrap; justify-content: center; margin-bottom: 56px;
}

.hv-btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--hv-teal); color: #000;
  font-family: 'Montserrat', sans-serif; font-size: 14px; font-weight: 800;
  letter-spacing: .5px; padding: 14px 32px; border-radius: 12px;
  transition: all .25s; box-shadow: 0 8px 32px rgba(0,208,160,0.3);
  text-decoration: none; border: none; cursor: pointer;
}
.hv-btn-primary:hover { color: #000; transform: translateY(-2px); box-shadow: 0 12px 40px rgba(0,208,160,0.45); }
.hv-btn-primary svg { width: 16px; height: 16px; flex-shrink: 0; }

.hv-btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: rgba(255,255,255,0.75);
  font-family: 'Montserrat', sans-serif; font-size: 14px; font-weight: 600;
  padding: 14px 24px; border-radius: 12px;
  border: 1px solid var(--hv-border); transition: all .25s; text-decoration: none;
}
.hv-btn-ghost:hover { color: #fff; border-color: rgba(255,255,255,0.25); background: rgba(255,255,255,0.05); }

.hero-trust {
  display: flex; align-items: center; gap: 32px;
  flex-wrap: wrap; justify-content: center;
}
.trust-item {
  display: flex; align-items: center; gap: 8px;
  font-family: 'Montserrat', sans-serif; font-size: 12px; font-weight: 600;
  color: var(--hv-faint); text-transform: uppercase; letter-spacing: 1px;
}
.trust-item svg { width: 14px; height: 14px; color: var(--hv-teal); flex-shrink: 0; }

/* ─── SECTION SHARED ─── */
section { padding: 50px 0; }

.hv-section-label {
  font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--hv-teal); margin-bottom: 14px;
}
.hv-section-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 800;
  letter-spacing: -0.02em; color: #fff; margin-bottom: 14px;
}
.hv-section-sub { color: var(--hv-muted); font-size: 1.05rem; font-weight: 400; max-width: 480px; }
.hv-section-head { margin-bottom: 64px; }
.hv-section-head.centered { text-align: center; }
.hv-section-head.centered .hv-section-sub { margin: 0 auto; }

/* ─── HOW IT WORKS ─── */
#about {
  background-image: url('/img/pattern-5.svg'), linear-gradient(180deg, #1a2535 0%, #0f2a20 100%);
  background-repeat: repeat;
  background-size: 600px auto, 100% 100%;
  background-position: center top;
  position: relative;
}
#about::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(10,12,11,.7) 0%, rgba(10,12,11,0) 30%, rgba(10,12,11,0) 70%, rgba(10,12,11,.7) 100%);
  pointer-events: none;
}
#about .container { position: relative; z-index: 1; }

.hv-steps-grid {
  display: grid; grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start; gap: 0; max-width: 860px; margin: 0 auto 72px;
}
.hv-step {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 0 20px;
}
.hv-step-num {
  width: 72px; height: 72px; border-radius: 50%;
  border: 2px solid var(--hv-teal); background: rgba(0,208,160,0.07);
  color: var(--hv-teal); font-family: 'Montserrat', sans-serif;
  font-size: 1.6rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px; flex-shrink: 0;
  box-shadow: 0 0 32px rgba(0,208,160,0.12), inset 0 0 20px rgba(0,208,160,0.05);
  transition: box-shadow .3s;
}
.hv-step:hover .hv-step-num { box-shadow: 0 0 48px rgba(0,208,160,0.25), inset 0 0 20px rgba(0,208,160,0.1); }
.hv-step h3 { font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: 10px; }
.hv-step p { color: var(--hv-muted); font-size: 0.88rem; line-height: 1.65; margin: 0; }

.hv-step-arrow { display: flex; align-items: center; padding-top: 36px; flex-shrink: 0; }
.hv-step-arrow svg { width: 40px; color: rgba(0,208,160,.3); }

.hv-stats-bar {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--hv-border); border-radius: 16px; overflow: hidden;
  max-width: 720px; margin: 0 auto; border: 1px solid var(--hv-border);
}
.hv-stat-cell {
  background: rgba(0,0,0,0.4);
  text-align: center; padding: 28px 20px;
}
.hv-stat-cell:first-child { border-radius: 15px 0 0 15px; }
.hv-stat-cell:last-child  { border-radius: 0 15px 15px 0; }
.hv-stat-val {
  display: block; font-family: 'Montserrat', sans-serif;
  font-size: 1.9rem; font-weight: 800; color: var(--hv-teal);
  letter-spacing: -0.02em; line-height: 1; margin-bottom: 6px;
}
.hv-stat-lbl {
  font-family: 'Montserrat', sans-serif; font-size: 0.72rem; font-weight: 600;
  color: var(--hv-faint); text-transform: uppercase; letter-spacing: 1px;
}

/* ─── WHY LIKESNETWORK ─── */
#what-special {
  background: linear-gradient(150deg, rgba(0,208,160,0.1) 0%, #172b22 40%, #18182e 100%);
  position: relative; overflow: hidden;
}
#what-special::before,
#what-special::after { content: none; }

/* Kill #contact::before grain circles (style.css injects white-dot SVG there) */
#contact::before { content: none; }

.hv-features-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px; max-width: 1060px; margin: 0 auto;
}
.hv-features-grid-steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; max-width: 1060px; margin: 0 auto;
}
.hv-feat-card {
  background: rgba(0,0,0,0.4); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px; padding: 32px 28px; text-align: left;
  transition: border-color .3s, background .3s, transform .3s;
  position: relative; overflow: visible;
  display: flex; flex-direction: column;
}
.hv-feat-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--hv-teal), transparent);
  opacity: 0; transition: opacity .3s; border-radius: 20px 20px 0 0;
}
.hv-feat-card:hover { border-color: var(--hv-border-teal); background: rgba(0,208,160,0.04); transform: translateY(-4px); }
.hv-feat-card:hover::after { opacity: 1; }
.hv-feat-icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: var(--hv-teal-dim); display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; color: var(--hv-teal); flex-shrink: 0;
}
.hv-feat-icon svg { width: 20px; height: 20px; }
.hv-feat-card h3 { font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: 10px; }
.hv-feat-card p { color: var(--hv-muted); font-size: 0.9rem; line-height: 1.7; margin: 0; }

/* ─── SUBSCRIPTION PLANS RESTYLING ─── */
#subscription-plans {
  background-image: url('/img/pattern-5.svg'), linear-gradient(0deg, #1a2535 0%, #0f2a20 100%);
  background-repeat: repeat;
  background-size: 600px auto, 100% 100%;
  background-position: center top;
  position: relative;
}
#subscription-plans::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(10,12,11,.8) 0%, transparent 15%, transparent 85%, rgba(10,12,11,1) 100%);
  pointer-events: none;
}
#subscription-plans .container { position: relative; z-index: 1; }
.container-subscriptions { max-width: 1160px; }

/* Reset old section header in plans */
/* Choice container - engagement + ppm selectors */
.choice-container {
  display: flex; flex-direction: column;
  align-items: center; gap: 20px; margin-bottom: 48px;
}
.engagementtype-choice {
  font-family: 'Montserrat', sans-serif; font-size: 12px;
  font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--hv-muted);
  margin: 0; padding: 0;
}
.engagementtype-selection,
.ppm-selection {
  display: flex;
  flex-wrap: nowrap;
  gap: 0;
  background: rgba(0,0,0,0.5);
  border: 1px solid var(--hv-border);
  border-radius: 12px;
  padding: 4px;
  width: auto;
  max-width: 100%;
  justify-content: center;
}
@media (max-width: 700px) {
  .engagementtype-selection,
  .ppm-selection {
    flex-wrap: wrap;
    gap: 4px;
    justify-content: center;
    border-radius: 14px;
  }
  /* Engagement: 2 columns × 3 rows - fits "VERIFIED COMMENTS" without overflow */
  .engagementtype-button {
    flex: 0 0 calc(50% - 2px);
    padding: 11px 6px;
    justify-content: center;
    text-align: center;
    white-space: normal;       /* let any extra-long label wrap rather than overflow */
    line-height: 1.2;
  }
  /* PPM: 3 columns × 2 rows - last row's 2 buttons center via justify-content */
  .ppm-button {
    flex: 0 0 calc(33.333% - 3px);
    padding: 11px 6px;
    justify-content: center;
    text-align: center;
    font-size: 11px;
    letter-spacing: .3px;
  }
}
.engagementtype-button,
.ppm-button {
  background: transparent; border: none;
  color: var(--hv-muted); font-family: 'Montserrat', sans-serif;
  font-size: 12px; font-weight: 700;
  letter-spacing: .8px; text-transform: uppercase;
  padding: 11px 18px; border-radius: 8px;
  cursor: pointer; transition: background .2s, color .2s;
  box-shadow: none;
  flex: 0 0 auto; width: auto; min-width: 0;
  height: auto; line-height: 1;   /* override style.css height:50px */
  white-space: nowrap;
  display: inline-flex; align-items: center;
}
.engagementtype-button.active,
.ppm-button.active {
  background: var(--hv-teal); color: #000;
}
.engagementtype-button:hover:not(.active),
.ppm-button:hover:not(:disabled):not(.active) {
  background: rgba(255,255,255,0.06); color: #fff;
}
.ppm-button:disabled {
  color: var(--hv-faint);
  opacity: .4;
  cursor: not-allowed;
}

/* Plan card container */
.subscription-plans {
  display: flex; justify-content: center;
  gap: 12px; flex-wrap: nowrap;
  width: 100%; background: transparent;
  border: none; padding: 8px 0 16px;
}

/* Individual plan cards */
.subscription-plan {
  background: rgba(0,0,0,0.65);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  flex: 1 1 0; min-width: 0; max-width: 220px;
  min-height: 0;
  width: auto;
  margin: 0;
  padding: 24px 20px;
  text-align: center;
  position: relative;
  transition: border-color .3s, transform .3s, background .3s;
  backdrop-filter: blur(4px); box-shadow: none;
  cursor: pointer;
}
.subscription-plan:hover { transform: translateY(-6px); }
.subscription-plan.bronze:hover  { border-color: rgba(192,102,12,.5); background: linear-gradient(160deg, rgba(0,0,0,.9) 0%, rgba(192,102,12,.15) 100%); }
.subscription-plan.silver:hover  { border-color: rgba(167,167,167,.5); background: linear-gradient(160deg, rgba(0,0,0,.9) 0%, rgba(167,167,167,.15) 100%); }
.subscription-plan.gold          { border-color: var(--hv-border-teal); }
.subscription-plan.gold:hover    { border-color: var(--hv-teal); background: linear-gradient(160deg, rgba(0,0,0,.9) 0%, rgba(255,235,0,.1) 100%); }
.subscription-plan.platin:hover  { border-color: rgba(74,255,211,.4); background: linear-gradient(160deg, rgba(0,0,0,.9) 0%, rgba(74,255,211,.1) 100%); }
.subscription-plan.diamond:hover { border-color: rgba(45,73,255,.4); background: linear-gradient(160deg, rgba(0,0,0,.9) 0%, rgba(45,73,255,.1) 100%); }

.subscription-plan .title {
  font-family: 'Montserrat', sans-serif; font-size: 0.8rem;
  font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--hv-faint); margin-bottom: 8px; background: none;
  border: none;  /* style.css adds left/right borders that look like ( ) brackets */
}
.subscription-plan .title::before,
.subscription-plan .title::after { content: none; }
.subscription-plan .top-part {
  margin: 0;  /* style.css sets margin: 0 30px which squishes content */
  text-align: center;
}
.subscription-plan .pricing {
  font-family: 'Montserrat', sans-serif; font-size: 2.2rem;
  font-weight: 800; color: #fff; letter-spacing: -0.03em;
  line-height: 1; margin-bottom: 2px;
}
.subscription-plan .monthly {
  font-family: 'Montserrat', sans-serif; font-size: 0.78rem;
  font-weight: 500; color: var(--hv-faint);
}
.subscription-plan .catchphrase {
  font-size: 0.8rem; color: var(--hv-muted);
  margin: 8px 0 0;
}
.subscription-plan .discount {
  font-size: 0.75rem; color: var(--hv-teal); margin-bottom: 4px;
}
.subscription-plan .bottom-part {
  border-top: 1px solid var(--hv-border); padding-top: 16px;
  margin-top: 14px;
}
.subscription-plan .features {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 8px;
  text-align: left;
}
.subscription-plan .features li {
  font-size: 0.78rem; color: var(--hv-muted);
  display: block; position: relative;
  padding-left: 20px; line-height: 1.45;
}
.subscription-plan .features li::before {
  content: ''; width: 13px; height: 13px;
  position: absolute; left: 0; top: 2px;
  border-radius: 50%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Ccircle cx='8' cy='8' r='7.5' stroke='%2300d0a0' stroke-opacity='.5'/%3E%3Cpath d='M5 8.5l2 2 4-4' stroke='%2300d0a0' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
}
.subscription-plan .features li img { display: none; }

/* Most popular badge */
.subscription-plan .most-popular-title {
  position: absolute; top: -13px; left: 50%;
  transform: translateX(-50%); white-space: nowrap;
  background: transparent;
}
.subscription-plan .most-popular-title mark {
  background: var(--hv-teal); color: #000;
  font-family: 'Montserrat', sans-serif; font-size: 10px;
  font-weight: 800; letter-spacing: 1px; text-transform: uppercase;
  padding: 4px 14px; border-radius: 100px; display: inline-block;
}

/* Add to Cart button */
.subscription-plan .button-plan {
  position: static; transform: none;
  bottom: auto; left: auto; right: auto;
  margin-top: auto; padding-top: 16px;
  max-width: none; width: 100%; height: auto;
}
.subscription-plan .button-group {
  background: transparent; border: 1.5px solid rgba(255,255,255,0.45);
  color: #fff; font-family: 'Montserrat', sans-serif;
  font-size: 12px; font-weight: 800;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 11px 14px; border-radius: 10px;
  cursor: pointer; width: 100%; height: auto;
  display: flex; align-items: center;
  justify-content: center; gap: 0;
  white-space: nowrap;
  transition: background .25s, border-color .25s; box-shadow: none;
}
.subscription-plan .button-group:hover {
  background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7);
  color: #fff;  /* override global button:hover { color: black } */
}
.subscription-plan .button-group .cart-image-button,
.subscription-plan .button-group img { display: none; }
.subscription-plan .button-group i,
.subscription-plan .button-group * {
  font-style: normal; font-weight: 800;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 1.5px;
}
.subscription-plan .cancelanytime { display: none; }

/* Price stack - /month always sits on the line below */
.subscription-plan .top-part {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 12px;
}
.subscription-plan .pricing  { order: 1; }
.subscription-plan .monthly  { order: 2; margin-top: 2px; }
.subscription-plan .discount { order: 3; }
.subscription-plan .catchphrase { order: 4; margin-top: 6px; }
.subscription-plan .discount:empty { display: none; }

/* Swipe hint + claim text */
.plans-swipe-hint { display: none; color: var(--hv-faint); font-size: 0.8rem; text-align: center; margin-top: 8px; }
@media (max-width: 600px) {
  .plans-swipe-hint { display: block; }
}
.claim-text { text-align: center; }
.claim-text p { color: var(--hv-faint); font-size: 0.78rem; max-width: 560px; margin: 0 auto; line-height: 1.7; }

/* Different plan box */
.different-plan {
  text-align: center; margin-top: 48px; margin-left: auto;
  margin-right: auto; padding: 32px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--hv-border);
  border-radius: 16px; max-width: 620px;
}
.different-plan h3 {
  font-size: 1.1rem; font-weight: 700;
  color: #fff; margin-bottom: 10px; line-height: 1.5;
}
.different-plan .cta-btn {
  display: inline-flex; align-items: center;
  background: var(--hv-teal); color: #000;
  font-family: 'Montserrat', sans-serif; font-size: 13px;
  font-weight: 800; padding: 12px 28px;
  border-radius: 12px; border: none; text-decoration: none;
}
.different-plan .cta-btn:hover { color: #000; }

/* FAQ in plans */
.faq-section-plans { margin-top: 72px; }
.section-title-faq { text-align: center; margin-bottom: 12px; }
.section-title-faq p {
  font-family: 'Montserrat', sans-serif; font-size: 1.8rem;
  font-weight: 800; color: #fff;
  letter-spacing: -0.02em; margin-bottom: 36px;
  line-height: 1.15;
}
.faq-container {
  max-width: 820px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 12px;
}
.faq-item {
  background: rgba(0,0,0,0.4); border: 1px solid var(--hv-border);
  border-radius: 14px; overflow: hidden;
  transition: border-color .2s; box-shadow: none;
}
.faq-item:hover { border-color: var(--hv-border-teal); }
.faq-question {
  padding: 20px 24px; cursor: pointer;
  display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
  font-family: 'Montserrat', sans-serif; font-size: 0.95rem;
  font-weight: 600; color: #fff; user-select: none;
  background: transparent; border: none;
}
.faq-question::after {
  content: '+'; flex-shrink: 0;
  width: 24px; height: 24px; border-radius: 50%;
  border: 1px solid var(--hv-border); font-size: 16px;
  color: var(--hv-teal); text-align: center; line-height: 24px;
  transition: transform .3s, border-color .3s;
}
.faq-question.active::after { content: '×'; border-color: var(--hv-teal); }
.faq-answer { padding: 0 24px 20px; }
.faq-answer p { color: var(--hv-muted); font-size: 0.9rem; line-height: 1.7; margin: 0; }
.faq-answer a { color: var(--hv-teal); }

/* ─── CTA BANNER ─── */
#call-to-action {
  background: url('/img/call-to-action-bg.webp') center/cover no-repeat;
  position: relative; padding: 80px 0;
}
#call-to-action::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(0,0,0,0.65); pointer-events: none; z-index: 0;
}
#call-to-action .container { position: relative; z-index: 1; text-align: center; }
#call-to-action h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800;
  color: #fff; margin-bottom: 10px;
}
#call-to-action h5 {
  color: rgba(255,255,255,0.7); font-size: 1rem;
  margin-bottom: 32px; font-weight: 400;
}
#call-to-action .cta-btn { display: none; }
.hv-btn-outline-white {
  display: inline-flex; align-items: center; gap: 8px;
  border: 2px solid rgba(255,255,255,0.7); color: #fff;
  font-family: 'Montserrat', sans-serif; font-size: 13px;
  font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase;
  padding: 13px 30px; border-radius: 50px;
  transition: all .25s; text-decoration: none;
  background: transparent;
}
.hv-btn-outline-white:hover { background: var(--hv-teal); border-color: var(--hv-teal); color: #000; }

/* Centered variant of the feature card (used on the groups page for step
   cards and the premium-services card). Setting align-items:center stops
   flex children (icon, button) from stretching to the full card width. */
.hv-feat-card.hv-card-center {
  text-align: center;
  align-items: center;
}
.hv-feat-card.hv-card-center .hv-btn-primary { align-self: center; }

/* ─── GROUPS PAGE ─── */
.hv-stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  margin-bottom: 56px;
}
.hv-stat-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--hv-border);
  border-radius: 16px;
  padding: 32px 20px; text-align: center;
  transition: border-color .25s, transform .25s;
}
.hv-stat-card:hover { border-color: var(--hv-border-teal); transform: translateY(-3px); }
.hv-stat-num {
  display: block; font-family: 'Montserrat', sans-serif;
  font-size: 2.6rem; font-weight: 800; color: var(--hv-teal);
  line-height: 1; margin-bottom: 10px;
}
.hv-stat-label {
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--hv-muted);
}
.hv-rule-box {
  background: rgba(255, 90, 90, 0.08);
  border: 1px solid rgba(255, 90, 90, 0.3);
  border-left: 4px solid #ff6b6b;
  border-radius: 12px;
  padding: 24px 28px; color: rgba(255,255,255,0.9);
  margin-top: 32px;
}
.hv-rule-box strong { color: #ff8e8e; font-size: 1.05rem; display: block; margin-bottom: 12px; }
.hv-rule-box ul { margin: 0; padding-left: 20px; line-height: 1.9; font-size: 0.95rem; }
.hv-step-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(0,208,160,0.12); color: var(--hv-teal);
  font-family: 'Montserrat', sans-serif; font-size: 1.2rem; font-weight: 800;
  margin-bottom: 16px;
}
.hv-code-inline {
  display: block; margin-top: 12px;
  background: rgba(0,0,0,0.4); border: 1px solid var(--hv-border);
  border-radius: 8px; padding: 10px 10px;
  font-family: 'SF Mono', Menlo, monospace; font-size: 0.82rem;
  color: var(--hv-teal); word-break: break-all;
}
.hv-cta-card-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  margin-top: 40px;
}
.hv-cta-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--hv-border);
  border-radius: 18px;
  padding: 36px; text-align: center;
  transition: border-color .25s, transform .25s;
}
.hv-cta-card:hover { border-color: var(--hv-border-teal); transform: translateY(-3px); }
.hv-cta-card .hv-cta-icon { font-size: 2.4rem; margin-bottom: 14px; display: block; }
.hv-cta-card h3 { color: var(--hv-teal); font-size: 1.25rem; font-weight: 700; margin-bottom: 12px; }
.hv-cta-card p { color: var(--hv-muted); font-size: 0.95rem; line-height: 1.7; margin-bottom: 20px; }
.hv-cta-card .hv-btn-primary { display: inline-flex; }
.hv-groups-toggle-wrap { text-align: center; margin: 56px 0; }
.hv-groups-toggle-btn {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--hv-border);
  color: #fff; font-family: 'Montserrat', sans-serif;
  font-size: 13px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 14px 32px; border-radius: 50px;
  cursor: pointer; transition: all .25s;
}
.hv-groups-toggle-btn:hover { border-color: var(--hv-teal); color: var(--hv-teal); }
.hv-groups-grid {
  display: none;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px; margin-top: 24px;
}
.hv-groups-grid.active { display: grid; }
.hv-group-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--hv-border);
  border-radius: 16px;
  padding: 24px 20px; text-align: center;
  transition: border-color .25s, transform .25s;
  display: flex; flex-direction: column; align-items: center;
}
.hv-group-card:hover { border-color: var(--hv-border-teal); transform: translateY(-3px); }
.hv-group-card img { width: 88px; height: 88px; border-radius: 50%; margin-bottom: 14px; }
.hv-group-card .hv-group-handle {
  font-family: 'Montserrat', sans-serif; font-size: 0.78rem; font-weight: 600;
  color: var(--hv-teal); margin-bottom: 6px; word-break: break-all;
}
.hv-group-card .hv-group-title {
  font-size: 0.95rem; font-weight: 600; color: #fff;
  line-height: 1.4; margin-bottom: 16px; min-height: 2.6em;
}
.hv-group-card .hv-group-join {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--hv-teal); color: #000; text-decoration: none;
  font-family: 'Montserrat', sans-serif; font-size: 12px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 9px 22px; border-radius: 50px; margin-top: auto;
  transition: transform .2s, box-shadow .2s;
}
.hv-group-card .hv-group-join:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,208,160,0.4); }
.hv-trust-line {
  margin-top: 28px; color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
}
@media (max-width: 900px) {
  .hv-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .hv-cta-card-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .hv-stat-num { font-size: 2.1rem; }
  .hv-cta-card { padding: 28px 22px; }
}

/* ─── FOOTER ─── */
#footer {
  background: #0c110e;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.hv-footer-top { padding: 64px 0 40px; }
.hv-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; }
.hv-footer-brand p { color: var(--hv-faint); font-size: 0.82rem; line-height: 1.75; margin-top: 16px; }
.hv-footer-col-heading {
  font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; color: var(--hv-muted);
  margin-bottom: 20px; padding-bottom: 12px; border-bottom: 1px solid var(--hv-border);
}
.hv-footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 2px; }
.hv-footer-col ul li a {
  display: inline-block;
  padding: 8px 0;
  color: var(--hv-faint);
  font-size: 0.85rem;
  transition: color .2s;
}
.hv-footer-col ul li a:hover { color: var(--hv-teal); }
.hv-footer-bottom {
  border-top: 1px solid var(--hv-border); padding: 20px 0;
  display: flex; align-items: center; justify-content: center;
}
.hv-footer-bottom p { font-size: 0.78rem; color: var(--hv-faint); margin: 0; }
.hv-footer-bottom mark { background: none; color: var(--hv-teal); padding: 0; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .hv-features-grid { grid-template-columns: 1fr 1fr; }
}
/* Tablet (601–1100): cards wrap onto multiple rows instead of pretending to be
   a swipeable carousel. They grow to fill the row up to a 280px cap. */
@media (max-width: 1100px) {
  .subscription-plans {
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    overflow: visible;
  }
  .subscription-plan {
    flex: 1 1 200px;
    min-width: 200px;
    max-width: 280px;
  }
}

/* Phone (≤600): real swipe carousel. Card width capped at 320px so wider phones
   don't get an oversized 432px card. Spacer width auto-adjusts so the first/last
   card always lands centred. Container stretches to viewport width to ignore the
   parent .container's padding. */
@media (max-width: 600px) {
  .subscription-plans {
    --card-w: min(72vw, 320px);
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: 0;
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 22px 0 25px;
    gap: 0;
  }
  .subscription-plans::-webkit-scrollbar { display: none; }
  .subscription-plans::before,
  .subscription-plans::after {
    content: '';
    flex: 0 0 calc((100vw - var(--card-w)) / 2);
    pointer-events: none;
  }
  .subscription-plan {
    flex: 0 0 var(--card-w);
    width: var(--card-w);
    min-width: 0;
    max-width: none;
    margin: 0;
    scroll-snap-align: center;
    transition: none !important;
    will-change: transform, opacity;
  }
  .subscription-plan:hover { transform: none; }
}
@media (max-width: 768px) {
  section { padding: 64px 0; }
  .hv-steps-grid { grid-template-columns: 1fr; max-width: 360px; gap: 32px; }
  .hv-step-arrow { display: none; }
  .hv-stats-bar { grid-template-columns: 1fr; max-width: 340px; }
  .hv-stat-cell { border-radius: 0; padding: 16px 12px; }
  .hv-stat-cell:first-child { border-radius: 15px 15px 0 0; }
  .hv-stat-cell:last-child  { border-radius: 0 0 15px 15px; }
  .hv-footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hv-footer-col { text-align: center; }
  .hv-footer-col-heading { text-align: center; }
  .hv-footer-col ul { align-items: center; }
  .hero-trust { gap: 12px; flex-direction: column; }
  .hero-cta-row { gap: 10px; }
}
@media (max-width: 700px) {
  .hv-features-grid { grid-template-columns: 1fr; }
  .hv-feat-card {
    display: grid; grid-template-columns: 46px 1fr;
    grid-template-rows: auto auto; column-gap: 14px; row-gap: 8px;
    padding: 20px 18px; align-items: start;
  }
  .hv-feat-icon { grid-column: 1; grid-row: 1 / 3; margin-bottom: 0; width: 42px; height: 42px; align-self: start; }
  .hv-feat-card h3 { grid-column: 2; grid-row: 1; font-size: 0.95rem; margin-bottom: 0; align-self: center; }
  .hv-feat-card p { grid-column: 2; grid-row: 2; font-size: 0.85rem; }
}
@media (max-width: 600px) {
  #header { padding: 0 16px; }
  .hv-header-actions { gap: 6px; }
  .hero-h1 { font-size: clamp(1.8rem, 7vw, 2.4rem); }
  .hero-sub { font-size: 0.95rem; }
  .hv-footer-brand p { font-size: 0.78rem; }
  .hv-btn-primary, .hv-btn-ghost { padding: 12px 22px; font-size: 13px; }
}

/* ─── ADDITIONAL FIXES ─── */

/* Icon buttons - force square shape regardless of global button styles */
.hv-icon-btn {
  width: 38px; height: 38px;
  min-width: 38px; max-width: 38px;
  min-height: 38px; max-height: 38px;
  padding: 0; flex-shrink: 0;
}
#cd-profile-trigger { background: rgba(255,255,255,0.04); }
#cd-profile-trigger a {
  color: rgba(255,255,255,0.7); text-decoration: none;
}
#cd-profile-trigger:hover a { color: var(--hv-teal); }

/* Hv nav links - prevent global a:color from leaking */
.hv-nav a { color: rgba(255,255,255,0.75); }
.hv-nav a:hover { color: var(--hv-teal); }

/* Hero buttons - force correct colors (global a rule sets teal) */
.hv-btn-primary,
.hv-btn-primary:visited { color: #000; }
.hv-btn-ghost,
.hv-btn-ghost:visited { color: rgba(255,255,255,0.75); }


/* ─── CONTACT SECTION RESTYLING ─── */
#contact {
  background: linear-gradient(135deg, #1a2822 0%, #181828 100%);
  padding: 100px 0;
}
#contact .section-header h2,
#contact .section-header h3 {
  color: var(--hv-text); font-family: 'Montserrat', sans-serif;
}
#contact .section-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 800;
  letter-spacing: -0.02em; margin-bottom: 8px;
}
#contact .section-header h3 {
  font-size: 1rem; font-weight: 400;
  color: var(--hv-muted);
}
#contact .contact-email { text-align: center; margin-bottom: 24px; }
#contact .contact-email .tadmin {
  width: 64px; height: 64px; border-radius: 50%;
  border: 2px solid var(--hv-border-teal); margin-bottom: 8px;
}
#contact .contact-email p,
#contact .contact-email a { color: var(--hv-teal); }
#contact label {
  font-family: 'Montserrat', sans-serif; font-size: 11px;
  font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  color: var(--hv-faint); margin-bottom: 6px; display: block;
}
#contact .form-control {
  display: block;
  width: 100%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 10px; color: var(--hv-text);
  font-family: 'Open Sans', sans-serif; font-size: 0.9rem;
  padding: 12px 16px;
  transition: border-color .2s, background .2s;
}
#contact textarea.form-control { resize: vertical; }
#contact .form-control:focus {
  outline: none; border-color: var(--hv-teal);
  background: rgba(0,208,160,0.04);
  box-shadow: 0 0 0 3px rgba(0,208,160,0.08);
}
#contact .form-control::placeholder { color: var(--hv-faint); }
#contact textarea.form-control { min-height: 110px; }
#contact .btn-submit {
  background: var(--hv-teal); border: none;
  border-radius: 10px; color: #000;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px; font-weight: 800;
  letter-spacing: 1px; padding: 14px 36px;
  text-transform: uppercase; transition: all .25s;
  box-shadow: none; width: auto; height: auto;
}
#contact .btn-submit:hover {
  background: #00f0b8; transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,208,160,0.3); color: #000;
}
#contact .text-muted { color: var(--hv-faint); font-size: 0.82rem; }
#contact .form-group { margin-bottom: 14px; }
#contact #sendmessage,
#contact #errormessage { color: var(--hv-teal); }

/* ─── FIX ROUND 2 ─── */

/* Logo: "Likes" text must be white, not teal */
.hv-logo,
.hv-logo:visited { color: #fff; }
.hv-logo:hover   { color: #fff; }

/* Cart trigger: reset style.css icon overrides, make it look like the icon btn */
#cd-cart-trigger {
  position: relative;
  width: 38px; height: 38px;
  min-width: 38px; max-width: 38px;
  border-radius: 10px;
  border: 1px solid var(--hv-border);
  background: rgba(255,255,255,0.04);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; padding: 0; box-shadow: none;
  flex-shrink: 0;
  transition: border-color .2s, background .2s;
}
#cd-cart-trigger:hover {
  border-color: var(--hv-teal); background: var(--hv-teal-dim);
  color: var(--hv-teal);
}

/* Profile link as icon btn */
a#profile-button {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  min-width: 38px; max-width: 38px;
  border-radius: 10px; border: 1px solid var(--hv-border);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.7);
  padding: 0; box-shadow: none; flex-shrink: 0;
  transition: border-color .2s, background .2s, color .2s;
}
a#profile-button:hover {
  border-color: var(--hv-teal); background: var(--hv-teal-dim);
  color: var(--hv-teal);
}
a#profile-button svg { width: 17px; height: 17px; }



/* ─── PLAN CARDS: flex-column layout ─── */
.subscription-plan {
  display: flex; flex-direction: column;
}
.subscription-plan .description {
  display: flex; flex-direction: column; flex: 1;
}
.subscription-plan .bottom-part { flex: 1; }


/* ─── CART COUNTER: override sideblade.css which sets margin-top:14px / font-size:14px ─── */
#cd-cart-counter {
  position: absolute;
  top: -5px; right: -5px;
  bottom: auto; left: auto;
  margin: 0;
  padding: 0 3px;
  min-width: 16px; width: auto; height: 16px;
  border-radius: 999px;
  background: var(--hv-teal);
  color: #000;
  font-family: 'Montserrat', sans-serif;
  font-size: 9px; font-weight: 800;
  line-height: 16px; text-align: center;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none; z-index: 10;
}


/* ─── RECAPTCHA: hide badge, disclosure text shown near form instead ─── */
.grecaptcha-badge { visibility: hidden !important; }

/* ─── CONTACT 2-COLUMN REDESIGN ─── */
#contact {
  background: linear-gradient(135deg, #1a2822 0%, #181828 100%);
  padding: 100px 0;
}
#contact > .container { max-width: 1000px; }

.hv-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: 80px;
  align-items: start;
}
.hv-contact-h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.hv-contact-desc {
  color: var(--hv-muted);
  font-size: 0.9rem;
  line-height: 1.75;
  margin-bottom: 32px;
}
.hv-contact-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hv-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--hv-text);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: color .2s;
}
.hv-contact-link svg {
  width: 20px; height: 20px;
  color: var(--hv-teal);
  flex-shrink: 0;
}
.hv-contact-link:hover { color: var(--hv-teal); }

.hv-form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 0;
}
.hv-form-submit-row {
  display: flex;
  justify-content: flex-end;
  margin-top: 4px;
}
#contact #sendmessage,
#contact #errormessage {
  display: none;
  border-radius: 8px;
  padding: 10px 16px;
  margin-bottom: 16px;
  font-size: 0.88rem;
  font-weight: 600;
}
#contact #sendmessage.show,
#contact #errormessage.show { display: block; }
#contact #sendmessage { background: rgba(0,208,160,0.12); color: var(--hv-teal); border: 1px solid var(--hv-border-teal); }
#contact #errormessage { background: rgba(255,80,80,0.1); color: #ff6b6b; border: 1px solid rgba(255,80,80,0.3); }

@media (max-width: 768px) {
  .hv-contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .hv-form-row-2 { grid-template-columns: 1fr; }
  .hv-form-submit-row .btn-submit { width: 100%; }
}

/* ─── SIDEBLADE (CART DRAWER) ─── */
#cd-cart {
  background: rgba(14,20,17,0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-left: 1px solid var(--hv-border-teal);
  border-radius: 16px 0 0 16px;
  box-shadow: -8px 0 40px rgba(0,0,0,0.5);
  color: var(--hv-text);
}

/* Header */
#cd-cart h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--hv-faint);
  border-bottom: 1px solid var(--hv-border);
  padding-bottom: 12px; margin: 18px 0 0;
}

/* Cart items */
#cd-cart .cd-cart-items li.show {
  border-top: 1px solid var(--hv-border);
  color: var(--hv-text);
}
#cd-cart .cd-cart-items li:last-child {
  border-bottom: 1px solid var(--hv-border);
}
#cd-cart .cd-cart-items .cd-no-items {
  border-top: 1px solid var(--hv-border);
  color: var(--hv-faint);
  font-size: 0.85rem;
}
#cd-cart .cd-cart-items .productinfo {
  color: var(--hv-text);
  font-size: 0.88rem;
  max-width: 75%;
}
#cd-cart .cd-qty,
#cd-cart .cd-price {
  color: var(--hv-muted);
  font-size: 0.82rem;
}

/* Totals */
#cd-cart .cd-cart-total {
  border-top: 1px solid var(--hv-border);
  color: var(--hv-text);
}
#cd-cart .cd-cart-total .expected-engagement {
  color: var(--hv-muted);
  font-size: 0.82rem;
}
#discountdescription,
#coupondescription { color: var(--hv-teal); }
#subprice,
#discountprice,
#couponprice { color: var(--hv-muted); }
#subtotal-amount,
#discount-amount,
#coupon-amount {
  border-color: var(--hv-border);
  color: var(--hv-text);
}
#total-amount {
  border-bottom: 1px solid var(--hv-border);
  color: var(--hv-text);
  font-family: 'Montserrat', sans-serif;
}

/* Inputs */
#cd-cart .checkout-input,
#cd-cart .coupon-code {
  display: block;
  width: 100%;
  padding: 12px 16px;
  margin: 0 0 10px 0;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--hv-border);
  color: var(--hv-text);
  border-radius: 10px;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.9rem;
  box-shadow: none;
  backdrop-filter: none;
}
#cd-cart .checkout-input::placeholder,
#cd-cart .coupon-code::placeholder { color: var(--hv-faint); opacity: 1; }
#cd-cart .checkout-input:focus,
#cd-cart .coupon-code:focus {
  background: rgba(0,208,160,0.05);
  border-color: var(--hv-teal);
  box-shadow: 0 0 0 3px rgba(0,208,160,0.1);
  outline: none;
}

/* Checkbox + label */
#cd-cart .subpolicy { gap: 10px; margin: 14px 0; }
#cd-cart .subpolicy label {
  color: var(--hv-muted);
  font-size: 0.82rem;
  margin: 0;
  line-height: 1.4;
}

/* Checkout button - cart.html uses .stripe-button-el; sideblade.css gives it a purple
   gradient by default. Override here to match the redesign teal. */
#cd-cart .checkout-btn,
#cd-cart .stripe-button-el,
#cd-cart #checkout-button {
  display: block;
  width: 100%;
  padding: 14px 24px;
  background: var(--hv-teal);
  color: #000;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1;
  border: none;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,208,160,0.25);
  transition: background .25s, transform .25s, box-shadow .25s;
  cursor: pointer;
}
#cd-cart .checkout-btn:hover,
#cd-cart .stripe-button-el:hover,
#cd-cart #checkout-button:hover {
  background: #00f0b8;
  box-shadow: 0 10px 32px rgba(0,208,160,0.4);
  transform: translateY(-2px);
  color: #000;
}
#cd-cart .stripe-button-el:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0,208,160,0.25), 0 8px 24px rgba(0,208,160,0.25);
}

/* Shadow overlay - darken to match dark theme */
#cd-shadow-layer {
  background: rgba(0,0,0,0.7);
}

/* ─── SERVICE PAGE VARIANT ──────────────────────────────────────────────
   Used on /instagram-likes, /instagram-comments, etc. The hero matches the
   homepage's full-viewport height; feature card icons render emoji glyphs
   rather than inline SVGs; the about section gets the same gradient as the
   homepage's "Why LikesNetwork" block. */

body.service-page .hero-h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
}

/* Emoji-as-icon: render the unicode glyph centred inside the same teal-tinted
   square the homepage uses for SVG icons. */
.hv-feat-icon.emoji {
  font-size: 24px;
  line-height: 1;
}

/* Replace the patterned gradient background on the about section with the
   teal/navy gradient the homepage uses for its "Why LikesNetwork" section. */
body.service-page #about {
  background-image: none;
  background: linear-gradient(150deg, rgba(0,208,160,0.1) 0%, #172b22 40%, #18182e 100%);
  overflow: hidden;
}
body.service-page #about::before { content: none; }

@media (max-width: 700px) {
  body.service-page .hero-h1 { font-size: clamp(1.7rem, 6vw, 2.2rem); }
}
