/* ================================================
   HAIR LOSS TREATMENT PAGE — hair-loss.css
   All hl- prefixed classes. Uses homepage CSS variables.
   Design system: matches HPV / Yellow Fever pages.
   ================================================ */

/* ========== HERO ========== */
.hl-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 50%, var(--dark-blue) 100%);
  padding: 80px 0 100px;
}
.hl-hero-bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hl-hero-orb { position: absolute; border-radius: 50%; background: rgba(255,255,255,0.06); }
.hl-hero-orb-1 { width: 600px; height: 600px; top: -200px; right: -120px; }
.hl-hero-orb-2 { width: 500px; height: 500px; bottom: -180px; left: -160px; }
.hl-hero-container { position: relative; z-index: 2; }

.hl-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.hl-hero-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 18px; border-radius: 50px;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9); font-size: 13px; font-weight: 600;
  margin-bottom: 20px; backdrop-filter: blur(8px);
}
.hl-hero-pill svg { opacity: 0.85; }

.hl-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 52px; font-weight: 800; color: var(--white);
  line-height: 1.12; letter-spacing: -0.03em; margin-bottom: 20px;
}

.hl-hero-subtitle {
  font-size: 17px; color: rgba(255,255,255,0.8); line-height: 1.7; margin-bottom: 28px; max-width: 540px;
}

.hl-hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }

.hl-btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 28px; border-radius: 50px;
  background: var(--white); color: var(--primary-blue);
  font-weight: 700; font-size: 15px; text-decoration: none;
  transition: all 0.3s; box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.hl-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,0.2); }

.hl-btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 28px; border-radius: 50px;
  background: transparent; color: var(--white);
  font-weight: 600; font-size: 15px; text-decoration: none;
  border: 2px solid rgba(255,255,255,0.35); transition: all 0.3s;
}
.hl-btn-outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); transform: translateY(-2px); }

.hl-hero-trust { display: flex; flex-wrap: wrap; gap: 16px 24px; }
.hl-hero-trust-item { display: flex; align-items: center; gap: 8px; font-size: 14px; color: rgba(255,255,255,0.85); font-weight: 500; }

.hl-hero-visual { position: relative; }
.hl-hero-visual > img {
  width: 100%; border-radius: 24px; object-fit: cover; max-height: 500px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3); border: 1px solid rgba(255,255,255,0.1);
}

.hl-hero-badge {
  position: absolute; bottom: -16px; left: 20px;
  display: flex; align-items: center; gap: 12px;
  background: linear-gradient(135deg, var(--dark-blue), var(--primary-blue));
  padding: 14px 20px; border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3); border: 1px solid rgba(255,255,255,0.15);
}
.hl-hero-badge-icon {
  width: 40px; height: 40px; min-width: 40px; border-radius: 12px;
  background: rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center;
  color: var(--white); border: 1px solid rgba(255,255,255,0.25);
}
.hl-hero-badge-label { display: block; font-size: 14px; font-weight: 700; color: var(--white); }
.hl-hero-badge-sub { display: block; font-size: 12px; color: rgba(255,255,255,0.7); }

/* ========== QUICK INFO ========== */
.hl-quick-section { padding: 64px 0; background: var(--white); }
.hl-quick-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.hl-quick-card {
  text-align: center; padding: 32px 20px; border-radius: 20px;
  border: 1px solid rgba(10,47,138,0.1); background: var(--white);
  box-shadow: 0 2px 16px rgba(10,47,138,0.06);
  transition: all 0.5s cubic-bezier(0.4,0,0.2,1);
  opacity: 0; transform: translateY(20px);
}
.hl-quick-card.hl-revealed { opacity: 1; transform: translateY(0); }
.hl-quick-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(10,47,138,0.12); border-color: var(--primary-blue); }
.hl-quick-icon {
  width: 56px; height: 56px; margin: 0 auto 16px; border-radius: 16px;
  background: linear-gradient(135deg, rgba(10,47,138,0.1), rgba(10,47,138,0.04));
  display: flex; align-items: center; justify-content: center;
  color: var(--primary-blue); border: 1px solid rgba(10,47,138,0.15);
  transition: all 0.4s;
}
.hl-quick-card:hover .hl-quick-icon {
  background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
  color: var(--white); transform: scale(1.1) rotate(-5deg);
}
.hl-quick-stat { font-size: 36px; font-weight: 900; color: var(--primary-blue); letter-spacing: -0.03em; margin-bottom: 8px; font-family: 'Inter',sans-serif; }
.hl-quick-card p { font-size: 14px; color: var(--text-gray); line-height: 1.5; margin: 0; }
.hl-quick-card:nth-child(1) { transition-delay: 0s; }
.hl-quick-card:nth-child(2) { transition-delay: 0.08s; }
.hl-quick-card:nth-child(3) { transition-delay: 0.16s; }
.hl-quick-card:nth-child(4) { transition-delay: 0.24s; }

/* ========== EYEBROW ========== */
.hl-eyebrow {
  display: block; font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--light-blue); margin-bottom: 12px;
}

/* ========== UNDERSTANDING ========== */
.hl-understanding-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #ffffff 0%, var(--secondary-blue) 50%, #f5f9fc 100%);
}
.hl-understanding-grid { display: grid; grid-template-columns: 1fr 0.9fr; gap: 64px; align-items: start; }
.hl-intro-text { font-size: 17px; color: var(--text-gray); line-height: 1.7; margin-bottom: 36px; }
.hl-fact-cards { display: flex; flex-direction: column; gap: 16px; }
.hl-fact-card {
  display: flex; gap: 20px; padding: 24px; background: var(--white); border-radius: 16px;
  border: 1px solid rgba(10,47,138,0.1); box-shadow: 0 2px 12px rgba(10,47,138,0.05);
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  opacity: 0; transform: translateX(-20px);
}
.hl-fact-card.hl-revealed { opacity: 1; transform: translateX(0); }
.hl-fact-card:hover { transform: translateX(8px); box-shadow: 0 8px 32px rgba(10,47,138,0.12); border-color: var(--primary-blue); }
.hl-fact-icon {
  width: 48px; height: 48px; min-width: 48px;
  background: linear-gradient(135deg, rgba(10,47,138,0.1), rgba(10,47,138,0.04));
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  color: var(--primary-blue); border: 1px solid rgba(10,47,138,0.15); transition: all 0.4s;
}
.hl-fact-card:hover .hl-fact-icon { background: linear-gradient(135deg, var(--primary-blue), var(--light-blue)); color: var(--white); transform: scale(1.1) rotate(-5deg); }
.hl-fact-card h4 { font-size: 16px; font-weight: 700; color: var(--primary-blue); margin-bottom: 6px; }
.hl-fact-card p { font-size: 14px; color: var(--text-gray); line-height: 1.6; margin: 0; }
.hl-fact-card:nth-child(1) { transition-delay: 0s; }
.hl-fact-card:nth-child(2) { transition-delay: 0.1s; }
.hl-fact-card:nth-child(3) { transition-delay: 0.2s; }

.hl-understanding-visual { position: relative; }
.hl-understanding-visual > img {
  width: 100%; border-radius: 24px; box-shadow: 0 20px 60px rgba(10,47,138,0.15);
  border: 1px solid rgba(10,47,138,0.12); object-fit: cover; max-height: 600px;
}
.hl-visual-badge {
  position: absolute; bottom: 24px; left: -20px; right: 20px;
  background: rgba(255,255,255,0.96); backdrop-filter: blur(20px);
  padding: 20px 28px; border-radius: 16px;
  box-shadow: 0 12px 40px rgba(10,47,138,0.18); border: 1px solid rgba(10,47,138,0.12);
  display: flex; align-items: center; gap: 20px;
}
.hl-visual-badge-stat { font-size: 48px; font-weight: 900; color: var(--primary-blue); line-height: 1; letter-spacing: -0.04em; flex-shrink: 0; }
.hl-visual-badge-desc { font-size: 15px; color: var(--text-gray); line-height: 1.5; font-weight: 500; }

/* ========== DARK BLUE SECTIONS (treatments, suitability, pricing, CTA) ========== */
.hl-treatments-section, .hl-suitability-section, .hl-pricing-section, .hl-footer-cta-block {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 50%, var(--dark-blue) 100%);
  padding: 100px 0;
}
.hl-section-bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hl-section-orb { position: absolute; border-radius: 50%; background: rgba(255,255,255,0.05); }
.hl-section-orb-1 { width: 500px; height: 500px; top: -160px; left: -140px; }
.hl-section-orb-2 { width: 600px; height: 600px; bottom: -200px; right: -120px; }
.hl-section-inner { position: relative; z-index: 2; }
.hl-section-header { text-align: center; margin-bottom: 8px; }
.hl-section-title { font-family: 'Playfair Display',serif; font-size: 38px; font-weight: 800; color: var(--white); letter-spacing: -0.02em; margin-bottom: 16px; text-align: center; }
.hl-section-desc { font-size: 17px; color: rgba(255,255,255,0.75); max-width: 680px; margin: 0 auto; line-height: 1.65; text-align: center; }

.hl-pill {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 18px;
  border-radius: 50px; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9); font-size: 13px; font-weight: 600;
  margin-bottom: 16px; backdrop-filter: blur(8px);
}
.hl-pill svg { opacity: 0.85; }

/* ========== TREATMENT CARDS ========== */
.hl-treatment-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 28px; margin-top: 48px; }
.hl-treatment-card {
  background: var(--white); border-radius: 24px; overflow: hidden;
  border: 1px solid rgba(10,47,138,0.15); box-shadow: 0 4px 24px rgba(10,47,138,0.08);
  transition: all 0.5s cubic-bezier(0.4,0,0.2,1);
  opacity: 0; transform: translateY(24px);
}
.hl-treatment-card.hl-revealed { opacity: 1; transform: translateY(0); }
.hl-treatment-card:hover { transform: translateY(-10px); box-shadow: 0 24px 64px rgba(10,47,138,0.2); }
.hl-treatment-card:nth-child(1) { transition-delay: 0s; }
.hl-treatment-card:nth-child(2) { transition-delay: 0.12s; }

.hl-treatment-card-header {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
  padding: 32px 32px 28px;
}
.hl-treatment-badge { display: inline-block; padding: 6px 16px; border-radius: 50px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 16px; }
.hl-badge-rx { background: rgba(255,255,255,0.15); color: var(--white); border: 1px solid rgba(255,255,255,0.3); }
.hl-badge-otc { background: rgba(74,222,128,0.2); color: #86efac; border: 1px solid rgba(74,222,128,0.3); }
.hl-treatment-icon {
  width: 60px; height: 60px; background: rgba(255,255,255,0.15); border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); border: 1px solid rgba(255,255,255,0.25); margin-bottom: 16px; transition: all 0.4s;
}
.hl-treatment-card:hover .hl-treatment-icon { transform: scale(1.08) rotate(-5deg); background: rgba(255,255,255,0.25); }
.hl-treatment-card-header h3 { font-size: 22px; font-weight: 800; color: var(--white); margin: 0 0 4px; }
.hl-treatment-subhead { font-size: 14px; color: rgba(255,255,255,0.7); margin: 0; }

.hl-treatment-body { padding: 28px 32px 32px; }
.hl-treatment-row { margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid rgba(10,47,138,0.08); }
.hl-treatment-row:last-of-type { border-bottom: none; padding-bottom: 0; margin-bottom: 20px; }
.hl-treatment-row strong { display: block; font-size: 13px; font-weight: 700; color: var(--primary-blue); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 6px; }
.hl-treatment-row p { font-size: 15px; color: var(--text-gray); line-height: 1.6; margin: 0; }
.hl-treatment-highlight {
  background: rgba(10,47,138,0.04); border-radius: 12px; padding: 16px !important;
  border: 1px solid rgba(10,47,138,0.1); border-bottom: 1px solid rgba(10,47,138,0.1) !important;
}
.hl-treatment-highlight b { color: var(--primary-blue); font-weight: 700; }
.hl-treatment-options { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.hl-option-pill { display: inline-block; padding: 6px 14px; background: rgba(10,47,138,0.07); border: 1px solid rgba(10,47,138,0.12); border-radius: 50px; font-size: 13px; font-weight: 500; color: var(--primary-blue); }
.hl-treatment-note {
  display: flex; align-items: flex-start; gap: 8px; font-size: 13px; color: var(--text-gray);
  background: rgba(10,47,138,0.04); padding: 12px 16px; border-radius: 10px;
  border-left: 3px solid var(--primary-blue); margin: 0; line-height: 1.5;
}
.hl-treatment-note svg { flex-shrink: 0; margin-top: 1px; color: var(--primary-blue); }

/* Combination card */
.hl-combo-card {
  display: flex; align-items: center; gap: 24px; margin-top: 28px;
  background: rgba(255,255,255,0.1); backdrop-filter: blur(12px);
  border-radius: 20px; padding: 32px 36px;
  border: 1px solid rgba(255,255,255,0.2); transition: all 0.4s;
  opacity: 0; transform: translateY(20px);
}
.hl-combo-card.hl-revealed { opacity: 1; transform: translateY(0); }
.hl-combo-card:hover { background: rgba(255,255,255,0.16); border-color: rgba(255,255,255,0.35); box-shadow: 0 16px 48px rgba(0,0,0,0.15); }
.hl-combo-icon {
  width: 60px; height: 60px; min-width: 60px; background: rgba(255,255,255,0.18);
  border-radius: 16px; display: flex; align-items: center; justify-content: center;
  color: var(--white); border: 1px solid rgba(255,255,255,0.3); transition: all 0.4s;
}
.hl-combo-card:hover .hl-combo-icon { transform: scale(1.1) rotate(-5deg); }
.hl-combo-content { flex: 1; }
.hl-combo-content h3 { font-size: 20px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.hl-combo-content p { font-size: 15px; color: rgba(255,255,255,0.8); line-height: 1.6; margin: 0; }
.hl-combo-cta {
  display: inline-flex; align-items: center; padding: 14px 28px;
  background: var(--white); color: var(--primary-blue); text-decoration: none;
  border-radius: 50px; font-weight: 700; font-size: 14px; white-space: nowrap;
  transition: all 0.3s; flex-shrink: 0;
}
.hl-combo-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,255,255,0.3); }

/* ========== PROCESS SECTION ========== */
.hl-process-section { padding: 100px 0; background: linear-gradient(180deg, #f5f9fc 0%, #ffffff 50%, var(--secondary-blue) 100%); }
.hl-process-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: start; margin-top: 48px; }
.hl-process-photo-col { position: sticky; top: 120px; }
.hl-process-photo-wrap { position: relative; border-radius: 24px; overflow: hidden; box-shadow: 0 20px 60px rgba(10,47,138,0.15); }
.hl-process-photo-wrap img { width: 100%; display: block; aspect-ratio: 4/5; object-fit: cover; }
.hl-process-photo-badge {
  position: absolute; bottom: 16px; left: 16px; right: 16px;
  display: flex; align-items: center; gap: 10px;
  background: rgba(10,47,138,0.85); backdrop-filter: blur(16px);
  padding: 12px 18px; border-radius: 12px;
  color: var(--white); font-size: 13px; font-weight: 600;
  border: 1px solid rgba(255,255,255,0.15);
}
.hl-process-photo-badge svg { flex-shrink: 0; }

.hl-process-steps { display: flex; flex-direction: column; gap: 0; margin-top: 20px; }
.hl-process-step {
  display: flex; gap: 20px; padding: 24px 0;
  border-bottom: 1px solid rgba(10,47,138,0.1);
}
.hl-process-step:last-child { border-bottom: none; }
.hl-step-num {
  width: 44px; height: 44px; min-width: 44px; border-radius: 12px;
  background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 800; font-size: 16px;
}
.hl-step-body h4 { font-size: 18px; font-weight: 700; color: var(--primary-blue); margin-bottom: 8px; }
.hl-step-body p { font-size: 15px; color: var(--text-gray); line-height: 1.6; margin: 0; }
.hl-process-total {
  display: inline-block; padding: 10px 20px; border-radius: 10px;
  background: rgba(10,47,138,0.06); border: 1px solid rgba(10,47,138,0.12);
  font-size: 14px; font-weight: 600; color: var(--primary-blue); margin-top: 8px;
}

/* ========== EXPECTATIONS ========== */
.hl-expectations-section { padding: 100px 0; background: linear-gradient(180deg, #ffffff 0%, var(--secondary-blue) 50%, #f5f9fc 100%); }
.hl-expect-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; margin-top: 48px; }
.hl-expect-card {
  background: var(--white); border-radius: 20px; padding: 32px 28px;
  border: 1px solid rgba(10,47,138,0.1); box-shadow: 0 2px 16px rgba(10,47,138,0.06);
  transition: all 0.5s cubic-bezier(0.4,0,0.2,1);
  opacity: 0; transform: translateY(20px); position: relative; overflow: hidden;
}
.hl-expect-card.hl-revealed { opacity: 1; transform: translateY(0); }
.hl-expect-card:hover { transform: translateY(-8px); box-shadow: 0 20px 56px rgba(10,47,138,0.16); border-color: var(--primary-blue); }
.hl-expect-card:nth-child(1) { transition-delay: 0s; }
.hl-expect-card:nth-child(2) { transition-delay: 0.1s; }
.hl-expect-card:nth-child(3) { transition-delay: 0.2s; }
.hl-expect-card:nth-child(4) { transition-delay: 0.3s; }
.hl-expect-icon {
  width: 52px; height: 52px; background: linear-gradient(135deg, rgba(10,47,138,0.1), rgba(10,47,138,0.04));
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  color: var(--primary-blue); border: 1px solid rgba(10,47,138,0.15); margin-bottom: 20px; transition: all 0.4s;
}
.hl-expect-card:hover .hl-expect-icon { background: linear-gradient(135deg, var(--primary-blue), var(--light-blue)); color: var(--white); transform: scale(1.1) rotate(-5deg); }
.hl-expect-card h3 { font-size: 18px; font-weight: 700; color: var(--primary-blue); margin-bottom: 12px; }
.hl-expect-card p { font-size: 15px; color: var(--text-gray); line-height: 1.65; margin: 0; }

/* ========== SUITABILITY ========== */
.hl-suit-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 28px; }
.hl-suit-card {
  background: var(--white); border-radius: 24px; overflow: hidden;
  transition: all 0.4s; opacity: 0; transform: translateY(20px);
}
.hl-suit-card.hl-revealed { opacity: 1; transform: translateY(0); }
.hl-suit-card:hover { transform: translateY(-8px); box-shadow: 0 24px 60px rgba(0,0,0,0.2); }
.hl-suit-card:nth-child(1) { transition-delay: 0s; }
.hl-suit-card:nth-child(2) { transition-delay: 0.12s; }
.hl-suit-card-header { display: flex; align-items: center; gap: 16px; padding: 28px 32px 20px; border-bottom: 1px solid rgba(10,47,138,0.08); }
.hl-suit-positive .hl-suit-card-header { background: linear-gradient(135deg, rgba(10,47,138,0.04), rgba(10,47,138,0.01)); }
.hl-suit-caution .hl-suit-card-header { background: linear-gradient(135deg, rgba(245,158,11,0.06), rgba(245,158,11,0.02)); }
.hl-suit-icon { width: 52px; height: 52px; min-width: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; }
.hl-suit-icon-green { background: linear-gradient(135deg, rgba(16,185,129,0.15), rgba(16,185,129,0.06)); color: #059669; border: 1px solid rgba(16,185,129,0.2); }
.hl-suit-icon-amber { background: linear-gradient(135deg, rgba(245,158,11,0.15), rgba(245,158,11,0.06)); color: #d97706; border: 1px solid rgba(245,158,11,0.2); }
.hl-suit-card-header h3 { font-size: 20px; font-weight: 700; color: var(--primary-blue); }
.hl-suit-list { list-style: none; padding: 24px 32px; display: flex; flex-direction: column; gap: 14px; }
.hl-suit-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: var(--text-dark); line-height: 1.5; }
.hl-suit-list svg { flex-shrink: 0; margin-top: 2px; }
.hl-suit-note { margin: 0 28px 28px; padding: 16px 20px; border-radius: 12px; font-size: 14px; line-height: 1.6; }
.hl-suit-note-positive { background: rgba(16,185,129,0.08); border: 1px solid rgba(16,185,129,0.2); color: var(--text-gray); border-left: 4px solid #059669; }
.hl-suit-note-caution { background: rgba(245,158,11,0.08); border: 1px solid rgba(245,158,11,0.2); color: var(--text-gray); border-left: 4px solid #d97706; }
.hl-suit-note strong { display: block; margin-bottom: 4px; color: var(--text-dark); font-weight: 700; }

/* ========== SAFETY SECTION ========== */
.hl-safety-section { padding: 0 0 100px; background: linear-gradient(180deg, #f5f9fc 0%, #ffffff 30%, var(--secondary-blue) 100%); overflow: hidden; }

.hl-safety-banner { position: relative; width: 100%; height: 380px; overflow: hidden; }
.hl-safety-banner-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.hl-safety-banner:hover .hl-safety-banner-img { transform: scale(1.03); }
.hl-safety-banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,47,138,0.7) 100%);
  display: flex; align-items: flex-end; padding: 28px 32px;
}
.hl-safety-banner-caption {
  display: inline-flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.15); backdrop-filter: blur(16px);
  padding: 14px 22px; border-radius: 14px; color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
}
.hl-safety-banner-caption strong { display: block; font-size: 15px; font-weight: 700; }
.hl-safety-banner-caption span { display: block; font-size: 13px; opacity: 0.85; }

.hl-safety-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 32px; margin-top: 48px; align-items: start; opacity: 0; transform: translateY(20px); transition: all 0.6s; }
.hl-safety-grid.hl-revealed { opacity: 1; transform: translateY(0); }
.hl-safety-col h3 { font-size: 18px; font-weight: 700; color: var(--primary-blue); margin-bottom: 16px; }
.hl-safety-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 16px; }
.hl-safety-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: var(--text-dark); line-height: 1.5; }
.hl-safety-list svg { flex-shrink: 0; margin-top: 2px; }
.hl-safety-note-text { font-size: 14px; color: var(--text-gray); line-height: 1.6; font-style: italic; }
.hl-safety-box {
  margin-top: 32px; padding: 24px 28px; border-radius: 16px;
  background: linear-gradient(135deg, rgba(10,47,138,0.06), rgba(10,47,138,0.02));
  border: 1px solid rgba(10,47,138,0.12); border-left: 4px solid var(--primary-blue);
  font-size: 15px; color: var(--text-dark); line-height: 1.6; font-weight: 500;
}

/* ========== PRICING ========== */
.hl-pricing-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 48px; }
.hl-pricing-card {
  background: rgba(255,255,255,0.09); backdrop-filter: blur(12px);
  border-radius: 20px; padding: 32px 24px; border: 1px solid rgba(255,255,255,0.15);
  text-align: center; transition: all 0.4s; position: relative;
  opacity: 0; transform: translateY(20px);
}
.hl-pricing-card.hl-revealed { opacity: 1; transform: translateY(0); }
.hl-pricing-card:hover { background: rgba(255,255,255,0.16); transform: translateY(-8px); border-color: rgba(255,255,255,0.3); box-shadow: 0 20px 60px rgba(0,0,0,0.2); }
.hl-pricing-card:nth-child(1) { transition-delay: 0s; }
.hl-pricing-card:nth-child(2) { transition-delay: 0.1s; }
.hl-pricing-card:nth-child(3) { transition-delay: 0.2s; }
.hl-pricing-card:nth-child(4) { transition-delay: 0.3s; }
.hl-pricing-featured { background: rgba(255,255,255,0.16); border-color: rgba(255,255,255,0.35); box-shadow: 0 8px 32px rgba(0,0,0,0.15); }
.hl-pricing-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, #facc15, #eab308); color: #1a1a1a;
  padding: 4px 16px; border-radius: 50px; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em; white-space: nowrap;
}
.hl-pricing-icon {
  width: 56px; height: 56px; background: rgba(255,255,255,0.15); border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); border: 1px solid rgba(255,255,255,0.25);
  margin: 0 auto 16px; transition: all 0.4s;
}
.hl-pricing-card:hover .hl-pricing-icon { transform: scale(1.1) rotate(-5deg); background: rgba(255,255,255,0.25); }
.hl-pricing-card h3 { font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.hl-pricing-value { font-size: 28px; font-weight: 800; color: var(--white); letter-spacing: -0.03em; margin-bottom: 16px; }
.hl-pricing-value span { font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.7); }
.hl-pricing-desc { font-size: 14px; color: rgba(255,255,255,0.75); line-height: 1.6; margin: 0; }
.hl-pricing-items { list-style: none; text-align: left; display: flex; flex-direction: column; gap: 8px; }
.hl-pricing-items li { font-size: 14px; color: rgba(255,255,255,0.8); padding-left: 20px; position: relative; }
.hl-pricing-items li::before { content: '✓'; position: absolute; left: 0; color: rgba(74,222,128,0.9); font-weight: 700; font-size: 12px; }
.hl-pricing-combo { background: rgba(250,204,21,0.1); border-color: rgba(250,204,21,0.25); }
.hl-pricing-note-line { text-align: center; margin-top: 28px; font-size: 14px; color: rgba(255,255,255,0.65); }
.hl-payment-info { text-align: center; font-size: 13px; color: rgba(255,255,255,0.5); margin-top: 8px; }

/* ========== WHY CHOOSE ========== */
.hl-why-section { padding: 100px 0; background: linear-gradient(180deg, #f5f9fc 0%, #ffffff 50%, #f5f9fc 100%); }
.hl-why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 48px; }
.hl-why-card {
  background: var(--white); border-radius: 20px; padding: 32px 28px;
  border: 1px solid rgba(10,47,138,0.1); box-shadow: 0 2px 16px rgba(10,47,138,0.06);
  transition: all 0.5s; opacity: 0; transform: translateY(20px);
}
.hl-why-card.hl-revealed { opacity: 1; transform: translateY(0); }
.hl-why-card:hover { transform: translateY(-8px); box-shadow: 0 20px 56px rgba(10,47,138,0.14); border-color: var(--primary-blue); }
.hl-why-icon {
  width: 52px; height: 52px; background: linear-gradient(135deg, rgba(10,47,138,0.1), rgba(10,47,138,0.04));
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  color: var(--primary-blue); border: 1px solid rgba(10,47,138,0.15); margin-bottom: 20px; transition: all 0.4s;
}
.hl-why-card:hover .hl-why-icon { background: linear-gradient(135deg, var(--primary-blue), var(--light-blue)); color: var(--white); transform: scale(1.1) rotate(-5deg); }
.hl-why-card h3 { font-size: 18px; font-weight: 700; color: var(--primary-blue); margin-bottom: 10px; }
.hl-why-card p { font-size: 15px; color: var(--text-gray); line-height: 1.6; margin: 0; }

/* ========== LOCATIONS ========== */
.hl-locations-section { padding: 100px 0; background: linear-gradient(180deg, #f5f9fc 0%, #ffffff 100%); }
.hl-loc-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 28px; margin-top: 48px; opacity: 0; transform: translateY(20px); transition: all 0.6s; }
.hl-loc-grid.hl-revealed { opacity: 1; transform: translateY(0); }
.hl-loc-card {
  background: var(--white); border-radius: 24px; overflow: hidden;
  border: 1px solid rgba(10,47,138,0.1); box-shadow: 0 4px 24px rgba(10,47,138,0.06);
  transition: all 0.4s;
}
.hl-loc-card:hover { transform: translateY(-6px); box-shadow: 0 20px 56px rgba(10,47,138,0.14); border-color: var(--primary-blue); }
.hl-loc-image { width: 100%; height: 220px; overflow: hidden; }
.hl-loc-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.hl-loc-card:hover .hl-loc-image img { transform: scale(1.05); }
.hl-loc-content { padding: 28px; }
.hl-loc-content h3 { font-size: 22px; font-weight: 800; color: var(--primary-blue); margin-bottom: 16px; }
.hl-loc-row { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 12px; font-size: 15px; color: var(--text-gray); }
.hl-loc-row svg { flex-shrink: 0; color: var(--light-blue); margin-top: 2px; }
.hl-loc-row a { color: var(--primary-blue); text-decoration: none; font-weight: 600; }
.hl-loc-row a:hover { text-decoration: underline; }
.hl-loc-actions { display: flex; gap: 12px; margin-top: 20px; }
.hl-loc-btn-primary {
  display: inline-flex; align-items: center; justify-content: center; padding: 12px 24px;
  background: var(--primary-blue); color: var(--white); border-radius: 50px;
  font-weight: 700; font-size: 14px; text-decoration: none; transition: all 0.3s; flex: 1;
}
.hl-loc-btn-primary:hover { background: var(--dark-blue); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(10,47,138,0.3); }
.hl-loc-btn-outline {
  display: inline-flex; align-items: center; justify-content: center; padding: 12px 24px;
  background: transparent; color: var(--primary-blue); border: 2px solid rgba(10,47,138,0.2);
  border-radius: 50px; font-weight: 600; font-size: 14px; text-decoration: none; transition: all 0.3s; flex: 1;
}
.hl-loc-btn-outline:hover { border-color: var(--primary-blue); background: rgba(10,47,138,0.04); transform: translateY(-2px); }
.hl-serving-text { text-align: center; margin-top: 32px; font-size: 14px; color: var(--text-gray); max-width: 700px; margin-left: auto; margin-right: auto; line-height: 1.6; }

/* ========== FAQ ========== */
.hl-faq-section { padding: 100px 0; background: linear-gradient(180deg, #ffffff 0%, var(--secondary-blue) 100%); }
.hl-faq-list { max-width: 800px; margin: 48px auto 0; display: flex; flex-direction: column; gap: 0; }
.hl-faq-item { border-bottom: 1px solid rgba(10,47,138,0.1); }
.hl-faq-trigger {
  width: 100%; display: flex; align-items: center; gap: 16px;
  padding: 24px 0; background: none; border: none; cursor: pointer; text-align: left;
}
.hl-faq-num { font-size: 14px; font-weight: 800; color: var(--light-blue); min-width: 28px; }
.hl-faq-question { flex: 1; font-size: 17px; font-weight: 600; color: var(--primary-blue); }
.hl-faq-icon { flex-shrink: 0; color: var(--light-blue); transition: transform 0.3s; }
.hl-faq-item.open .hl-faq-icon { transform: rotate(45deg); }
.hl-faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1); }
.hl-faq-answer-inner { padding: 0 0 24px 44px; font-size: 15px; color: var(--text-gray); line-height: 1.7; }

/* ========== FOOTER CTA ========== */
.hl-footer-cta-block { padding: 80px 0; }
.hl-footer-cta-inner { position: relative; z-index: 2; }
.hl-footer-cta-top { text-align: center; }
.hl-cta-badges { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 24px; }
.hl-cta-badge {
  display: inline-flex; align-items: center; padding: 8px 18px;
  background: rgba(255,255,255,0.12); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2); border-radius: 50px;
  color: var(--white); font-size: 13px; font-weight: 600;
}
.hl-footer-cta-title { font-family: 'Playfair Display',serif; font-size: 42px; font-weight: 800; color: var(--white); margin-bottom: 16px; letter-spacing: -0.02em; }
.hl-footer-cta-sub { font-size: 17px; color: rgba(255,255,255,0.8); line-height: 1.65; max-width: 640px; margin: 0 auto 28px; }
.hl-footer-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 24px; }
.hl-btn-cta-white {
  display: inline-flex; align-items: center; gap: 10px; padding: 16px 32px;
  background: var(--white); color: var(--primary-blue); border-radius: 50px;
  font-weight: 700; font-size: 15px; text-decoration: none; transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.hl-btn-cta-white:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,0.25); }
.hl-btn-cta-ghost {
  display: inline-flex; align-items: center; gap: 10px; padding: 16px 32px;
  background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.35);
  border-radius: 50px; font-weight: 600; font-size: 15px; text-decoration: none; transition: all 0.3s;
}
.hl-btn-cta-ghost:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); transform: translateY(-2px); }
.hl-cta-checks { display: flex; flex-wrap: wrap; gap: 16px 32px; justify-content: center; font-size: 14px; color: rgba(255,255,255,0.8); }
.hl-footer-cta-divider { height: 1px; background: rgba(255,255,255,0.15); margin: 48px 0; }
.hl-footer-newsletter-row { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.hl-footer-newsletter-text h3 { font-size: 20px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.hl-footer-newsletter-text p { font-size: 15px; color: rgba(255,255,255,0.7); margin: 0; line-height: 1.5; }

/* ========== DISCLAIMER ========== */
.hl-disclaimer {
  padding: 20px 0; background: rgba(10,47,138,0.04); border-top: 1px solid rgba(10,47,138,0.08);
  font-size: 12px; color: var(--text-gray); line-height: 1.6; text-align: center;
}

/* ========== SCROLL REVEAL BASE ========== */
.hl-reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.4,0,0.2,1), transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.hl-reveal[data-reveal="left"] { transform: translateX(-30px); }
.hl-reveal[data-reveal="right"] { transform: translateX(30px); }
.hl-revealed { opacity: 1 !important; transform: translateY(0) translateX(0) !important; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .hl-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hl-hero-title { font-size: 42px; }
  .hl-understanding-grid { grid-template-columns: 1fr; gap: 48px; }
  .hl-visual-badge { left: 12px; right: 12px; bottom: 12px; }
  .hl-treatment-grid { grid-template-columns: 1fr; }
  .hl-expect-grid { grid-template-columns: repeat(2,1fr); }
  .hl-suit-grid { grid-template-columns: 1fr; }
  .hl-safety-grid { grid-template-columns: 1fr; }
  .hl-pricing-grid { grid-template-columns: repeat(2,1fr); }
  .hl-why-grid { grid-template-columns: repeat(2,1fr); }
  .hl-process-grid { grid-template-columns: 1fr; gap: 40px; }
  .hl-process-photo-col { position: static; }
  .hl-combo-card { flex-direction: column; text-align: center; }
  .hl-combo-cta { align-self: center; }
  .hl-quick-grid { grid-template-columns: repeat(2,1fr); }
  .hl-loc-grid { grid-template-columns: 1fr; }
  .hl-footer-newsletter-row { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 768px) {
  .hl-hero { padding: 48px 0 60px; }
  .hl-hero-title { font-size: 32px; }
  .hl-hero-subtitle { font-size: 16px; }
  .hl-hero-ctas { flex-direction: column; }
  .hl-btn-primary, .hl-btn-outline { width: 100%; justify-content: center; text-align: center; }
  .hl-hero-trust { flex-direction: column; gap: 10px; }
  .hl-hero-badge { left: 12px; bottom: -12px; padding: 10px 14px; gap: 10px; }
  .hl-quick-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .hl-quick-card { padding: 24px 16px; }
  .hl-quick-stat { font-size: 28px; }
  .hl-section-title { font-size: 30px; }
  .hl-footer-cta-title { font-size: 30px; }
  .hl-understanding-section, .hl-expectations-section, .hl-process-section,
  .hl-safety-section, .hl-why-section, .hl-locations-section, .hl-faq-section { padding: 64px 0; }
  .hl-treatments-section, .hl-suitability-section, .hl-pricing-section { padding: 64px 0; }
  .hl-safety-banner { height: 240px; }
  .hl-safety-section { padding: 0 0 64px; }
  .hl-expect-grid { grid-template-columns: 1fr; }
  .hl-pricing-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .hl-pricing-card { padding: 24px 16px; }
  .hl-pricing-value { font-size: 22px; }
  .hl-why-grid { grid-template-columns: 1fr; }
  .hl-footer-cta-btns { flex-direction: column; align-items: stretch; }
  .hl-btn-cta-white, .hl-btn-cta-ghost { justify-content: center; text-align: center; }
  .hl-cta-checks { flex-direction: column; align-items: center; gap: 8px; }
  .hl-fact-card { flex-direction: column; gap: 12px; }
  .hl-suit-card-header { padding: 20px 20px 16px; }
  .hl-suit-list { padding: 16px 20px; }
  .hl-suit-note { margin: 0 16px 20px; }
  .hl-visual-badge-stat { font-size: 36px; }
  .hl-loc-actions { flex-direction: column; }
}

@media (max-width: 480px) {
  .hl-pricing-grid { grid-template-columns: 1fr; }
  .hl-quick-grid { grid-template-columns: 1fr; }
}
