/* ============================================================
   HEAR LIFE BRAND CSS  –  from Brand Manual 2022
   Injected globally by hearlife-elementor-migrator plugin.
   Mirrors hearlife-homepage-v10-merged.html exactly.
   Primary:    #216278  (Teal)
   Accent:     #B7E2E9  (Light Blue)
   Background: #F2E8D4  (Cream)
   Text:       #442711  (Brown)
============================================================ */

/* ── Reset & Tokens ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --teal:       #216278;
  --teal-dark:  #194d5e;
  --teal-light: #2a7a96;
  --light-blue: #B7E2E9;
  --cream:      #F2E8D4;
  --cream-dark: #e8d9bc;
  --brown:      #442711;
  --brown-light:#6b4422;
  --white:      #FFFFFF;

  --font-display: 'Poppins', sans-serif;
  --font-body:    'Questrial', sans-serif;

  --max-w: 1240px;
  --section-pad: 96px 32px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--brown);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

/* ── Elementor page wrapper resets ──────────────────────── */
.elementor-page { background: var(--cream) !important; }
.elementor-section-wrap { overflow: hidden; }

/* Remove default section padding Elementor adds */
.elementor-section.elementor-section-boxed > .elementor-container,
.elementor-top-section > .elementor-container { max-width: 100%; }

/* ── Type Scale ─────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.1; }
h1 {
  font-size: clamp(40px, 5vw, 62px);
  font-weight: 800;
  letter-spacing: -1.5px;
  color: var(--teal);
}
h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--teal);
}
h3 {
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 600;
  color: var(--teal);
}
.eyebrow {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal);
  opacity: 0.7;
}
.container { max-width: var(--max-w); margin: 0 auto; }

/* ── Scroll-triggered fade-up animation ─────────────────── */
.hl-fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease var(--delay, 0s),
              transform 0.6s ease var(--delay, 0s);
}
.hl-fade-up.hl-visible {
  opacity: 1;
  transform: translateY(0);
}
/* Hero children are immediate (CSS keyframe, no IntersectionObserver) */
@keyframes hlFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero .hero-content > * {
  animation: hlFadeUp 0.6s ease both;
}
.hero .hero-content > *:nth-child(1) { animation-delay: 0.1s; }
.hero .hero-content > *:nth-child(2) { animation-delay: 0.2s; }
.hero .hero-content > *:nth-child(3) { animation-delay: 0.3s; }
.hero .hero-content > *:nth-child(4) { animation-delay: 0.4s; }
.hero .hero-content > *:nth-child(5) { animation-delay: 0.45s; }
.hero-image-col { animation: hlFadeUp 0.8s 0.2s ease both; }

/* ================================================================
   UTILITY BAR
================================================================ */
.hl-util-bar,
.util-bar {
  background: var(--teal);
  color: var(--cream);
  font-size: 13px;
  font-family: var(--font-display);
  padding: 9px 0;
}
.util-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 32px;
}
.util-bar a { color: var(--cream); text-decoration: none; opacity: 0.9; }
.util-left, .util-right { display: flex; gap: 24px; align-items: center; }
.util-bar i { font-size: 13px; margin-right: 5px; vertical-align: -1px; }
.util-divider { width: 1px; height: 14px; background: rgba(242,232,212,0.3); }

/* ================================================================
   NAVIGATION
================================================================ */
.hl-nav, .nav {
  background: rgba(242,232,212,0.95);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(68,39,17,0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: box-shadow 0.3s;
}
.hl-nav.scrolled, .nav.scrolled {
  box-shadow: 0 2px 24px rgba(68,39,17,0.08);
}
.hl-nav .container,
.nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 32px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-mark {
  height: 44px;
  width: auto;
  object-fit: contain;
  display: block;
}
.logo-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  color: var(--teal);
  letter-spacing: 2px;
  display: none; /* show if no logo image */
}
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--brown);
  text-decoration: none;
  font-family: var(--font-display);
  opacity: 0.85;
  transition: opacity 0.2s, color 0.2s;
}
.nav-links a:hover { opacity: 1; color: var(--teal); }
.nav-actions { display: flex; gap: 12px; align-items: center; }
.hl-hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--brown);
  cursor: pointer;
  padding: 4px;
}
/* Mobile nav drawer */
.hl-mobile-nav {
  display: none;
  background: var(--cream);
  border-top: 1px solid rgba(68,39,17,0.08);
  padding: 20px 32px;
}
.hl-mobile-nav.open { display: block; }
.hl-mobile-nav ul { list-style: none; margin-bottom: 16px; }
.hl-mobile-nav ul li { border-bottom: 1px solid rgba(68,39,17,0.06); }
.hl-mobile-nav ul li a {
  display: block;
  padding: 12px 0;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  color: var(--brown);
  text-decoration: none;
}
.hl-mobile-nav-ctas { display: flex; gap: 10px; flex-wrap: wrap; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal);
  color: var(--cream);
  border: none;
  padding: 16px 28px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-display);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  letter-spacing: 0.2px;
}
.btn-primary:hover { background: var(--teal-dark); transform: translateY(-1px); color: var(--cream); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--teal);
  border: 1.5px solid var(--teal);
  padding: 14px 24px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-display);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-outline:hover { background: var(--teal); color: var(--cream); }

.btn-viber, .btn-viber-hero {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #7360f2;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-display);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-viber { padding: 10px 18px; }
.btn-viber-hero { padding: 16px 24px; font-size: 15px; }
.btn-viber:hover, .btn-viber-hero:hover { background: #5c4bd6; }
.btn-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--teal);
  color: var(--cream);
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-display);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-nav-cta:hover { background: var(--teal-dark); color: var(--cream); }
.btn-cream {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cream);
  color: var(--teal);
  border: none;
  padding: 14px 26px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font-display);
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.2s;
}
.btn-cream:hover { opacity: 0.9; color: var(--teal); }
.btn-cream-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(242,232,212,0.5);
  padding: 14px 24px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-display);
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.2s;
}
.btn-cream-outline:hover { border-color: rgba(242,232,212,0.9); color: var(--cream); }

/* ================================================================
   HERO
================================================================ */
.hero {
  position: relative;
  padding: 0;
  overflow: hidden;
  background: var(--cream);
  min-height: 600px;
}
.hero-pattern {
  position: absolute;
  top: 0; right: 0;
  width: 55%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.035;
}
.hero-pattern svg { width: 100%; height: 100%; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  min-height: 600px;
  position: relative;
  z-index: 1;
}
.hero-content {
  padding: 80px 56px 80px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 640px;
  margin-left: auto;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(33,98,120,0.1);
  border: 1px solid rgba(33,98,120,0.2);
  color: var(--teal);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.hero-eyebrow span {
  width: 6px; height: 6px;
  background: var(--teal);
  border-radius: 50%;
  display: inline-block;
}
.hero h1 { margin-bottom: 24px; }
.hero h1 em {
  font-style: normal;
  color: var(--brown);
  position: relative;
}
.hero h1 em::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 0; right: 0;
  height: 3px;
  background: var(--light-blue);
  border-radius: 2px;
}
.hero-sub {
  font-size: 20px;
  line-height: 1.55;
  color: var(--brown);
  opacity: 0.85;
  max-width: 480px;
  margin-bottom: 40px;
}
.hero-cta-group { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 20px; }
.hero-reassurance {
  font-size: 13px;
  color: var(--brown);
  opacity: 0.6;
  font-style: italic;
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero-reassurance::before {
  content: '';
  width: 18px; height: 1px;
  background: var(--brown);
  opacity: 0.4;
}
.hero-image-col {
  position: relative;
  min-height: 600px;
}
.hero-img-frame {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: var(--teal-light);
}
.hero-img-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.hero-badge {
  position: absolute;
  top: 24px; left: -28px;
  background: white;
  border-radius: 12px;
  padding: 14px 18px;
  box-shadow: 0 8px 32px rgba(68,39,17,0.15);
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 160px;
  z-index: 2;
}
.hero-badge-label {
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brown);
  opacity: 0.5;
}
.hero-badge-brands {
  display: flex;
  gap: 10px;
  align-items: center;
}
.hero-badge-brands span {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  color: var(--teal);
  letter-spacing: 0.5px;
}
.hero-badge-dot { color: var(--cream-dark); font-size: 18px; }
.hero-stat-card {
  position: absolute;
  bottom: 40px; right: -24px;
  background: var(--teal);
  color: var(--cream);
  border-radius: 12px;
  padding: 18px 22px;
  box-shadow: 0 8px 32px rgba(33,98,120,0.3);
  z-index: 2;
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
  color: var(--light-blue);
}
.hero-stat-label { font-size: 13px; opacity: 0.85; margin-top: 4px; }

/* ================================================================
   TRUST STRIP
================================================================ */
.trust-strip {
  background: var(--teal);
  padding: 28px 32px;
  position: relative;
  overflow: hidden;
}
.trust-strip-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.trust-item { display: flex; align-items: center; gap: 12px; color: var(--cream); }
.trust-item i { font-size: 22px; color: var(--light-blue); opacity: 0.9; }
.trust-num { font-family: var(--font-display); font-size: 22px; font-weight: 800; color: var(--light-blue); line-height: 1; }
.trust-desc { font-size: 13px; opacity: 0.8; font-family: var(--font-display); }
.trust-sep { width: 1px; height: 36px; background: rgba(183,226,233,0.25); }

/* ================================================================
   FEATURED IN
================================================================ */
.featured-in {
  background: var(--white);
  padding: 48px 32px;
  text-align: center;
  border-top: 0.5px solid rgba(68,39,17,0.08);
  border-bottom: 0.5px solid rgba(68,39,17,0.08);
}
.featured-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

/* ================================================================
   SELF-IDENTIFICATION
================================================================ */
.self-id {
  padding: 90px 32px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.self-id-inner { max-width: var(--max-w); margin: 0 auto; }
.self-id-left .eyebrow { margin-bottom: 14px; text-align: center; }
.self-id-left h2 { margin-bottom: 16px; text-align: center; }
.self-id-lead {
  font-size: 18px;
  color: var(--brown);
  opacity: 0.75;
  margin-bottom: 48px;
  line-height: 1.6;
  text-align: center;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.symptom-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 44px;
}
.symptom-item {
  background: white;
  border-top: 4px solid var(--teal);
  padding: 32px 26px;
  border-radius: 12px;
  transition: transform 0.2s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.symptom-item:hover { transform: translateY(-3px); }
.symptom-icon { margin-bottom: 18px; flex-shrink: 0; }
.symptom-icon i { font-size: 34px; color: var(--teal); display: block; }
.symptom-text { font-size: 17px; color: var(--brown); line-height: 1.5; }
.self-id-transition {
  font-size: 18px;
  color: var(--brown);
  opacity: 0.85;
  line-height: 1.6;
  margin-bottom: 26px;
  text-align: center;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* ================================================================
   GUIDED PATHS
================================================================ */
.guided-paths {
  padding: 96px 32px;
  background: var(--light-blue);
  position: relative;
  overflow: hidden;
}
.guided-paths-inner { max-width: var(--max-w); margin: 0 auto; position: relative; }
.guided-paths-header { text-align: center; margin-bottom: 52px; }
.guided-paths-header .eyebrow { color: var(--teal); opacity: 0.7; margin-bottom: 16px; }
.guided-paths-header h2 { color: var(--teal); }
.paths-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.path-card {
  background: var(--white);
  border: 0.5px solid transparent;
  border-radius: 12px;
  padding: 32px 22px;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s;
  color: var(--brown);
  text-decoration: none;
  display: block;
}
.path-card:hover { transform: translateY(-4px); border-color: var(--teal); color: var(--brown); }
.path-icon {
  width: 52px; height: 52px;
  background: rgba(33,98,120,0.08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.path-icon i { font-size: 36px; color: var(--teal); }
.path-card h3 { font-size: 17px; color: var(--teal); margin-bottom: 8px; font-weight: 600; }
.path-card p { font-size: 14px; color: var(--brown); opacity: 0.78; line-height: 1.5; }
.path-arrow {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--teal);
  margin-top: 14px;
  font-family: var(--font-display);
  font-weight: 600;
  text-decoration: none;
}

/* ================================================================
   EDITORIAL
================================================================ */
.editorial {
  padding: 100px 32px;
  background: var(--cream);
  overflow: hidden;
}
.editorial-grid {
  max-width: 1216px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.editorial-img {
  height: 460px;
  border-radius: 14px;
  overflow: hidden;
  background: #d4a574;
  position: relative;
}
.editorial-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 75% center;
  display: block;
}
.editorial-wave-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(transparent, rgba(33,98,120,0.3));
}
.editorial-content { display: flex; flex-direction: column; justify-content: center; }
.editorial-content .eyebrow { color: var(--teal); opacity: 0.7; margin-bottom: 20px; }
.editorial-content h2 {
  color: var(--teal);
  font-size: clamp(26px, 3vw, 38px);
  margin-bottom: 18px;
  line-height: 1.15;
  letter-spacing: -0.3px;
}
.editorial-lead { font-size: 20px; color: var(--brown); font-weight: 500; margin-bottom: 26px; }
.editorial-items { list-style: none; display: flex; flex-direction: column; margin-bottom: 26px; }
.editorial-items li {
  font-size: 17px;
  color: var(--brown);
  line-height: 1.6;
  padding: 14px 0 14px 28px;
  position: relative;
  border-bottom: 0.5px solid rgba(68,39,17,0.1);
}
.editorial-items li:last-child { border-bottom: none; }
.editorial-items li::before {
  content: '';
  position: absolute;
  left: 0; top: 22px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--teal);
}
.editorial-body { font-size: 16px; color: var(--brown); opacity: 0.85; line-height: 1.7; margin-bottom: 22px; }
.editorial-pull { font-size: 19px; line-height: 1.5; color: var(--teal); font-style: italic; font-weight: 500; }

/* ================================================================
   AUDIOLOGISTS
================================================================ */
.audiologists { padding: 100px 32px; background: var(--cream); }
.audiologists-inner { max-width: var(--max-w); margin: 0 auto; }
.audiologists-header { text-align: center; margin-bottom: 56px; }
.audiologists-header .eyebrow { margin-bottom: 14px; }
.audiologists-header p { font-size: 18px; color: var(--brown); opacity: 0.75; max-width: 560px; margin: 16px auto 0; }
.audi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.audi-card {
  border-radius: 16px;
  overflow: hidden;
  background: white;
  border: 1px solid rgba(33,98,120,0.08);
  transition: transform 0.25s, box-shadow 0.25s;
}
.audi-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(33,98,120,0.12);
}
.audi-photo { height: 280px; overflow: hidden; position: relative; }
.audi-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.audi-photo-tint {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(33,98,120,0.4));
}
.audi-body { padding: 24px 24px 28px; }
.audi-body h3 { font-size: 18px; margin-bottom: 4px; }
.audi-role { font-size: 13px; color: var(--teal); opacity: 0.75; margin-bottom: 16px; font-family: var(--font-display); }
.audi-creds { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.audi-creds li {
  font-size: 14px; color: var(--brown); opacity: 0.8;
  display: flex; align-items: flex-start; gap: 8px;
}
.audi-creds li::before {
  content: '✓';
  color: var(--teal); font-weight: 700; font-size: 12px;
  margin-top: 2px; flex-shrink: 0;
}

/* ================================================================
   BRAND PARTNERS
================================================================ */
.partners {
  background: var(--cream-dark);
  padding: 96px 32px;
  border-top: 1px solid rgba(33,98,120,0.08);
  border-bottom: 1px solid rgba(33,98,120,0.08);
}
.partners-inner { max-width: var(--max-w); margin: 0 auto; }
.partners-header { text-align: center; margin-bottom: 56px; }
.partners-header .eyebrow { margin-bottom: 14px; }
.partners-header p { font-size: 17px; color: var(--brown); opacity: 0.7; max-width: 600px; margin: 16px auto 0; line-height: 1.7; }
.partners-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.partner-card {
  background: white;
  border-radius: 16px;
  padding: 40px 44px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  border: 1px solid rgba(33,98,120,0.1);
  transition: box-shadow 0.25s;
}
.partner-card:hover { box-shadow: 0 12px 40px rgba(33,98,120,0.1); }
.partner-info { flex: 1; }
.partner-name {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 800;
  color: var(--teal); letter-spacing: 1px; margin-bottom: 4px;
}
.partner-origin {
  font-family: var(--font-display);
  font-size: 11px; font-weight: 600;
  letter-spacing: 2px; color: var(--brown); opacity: 0.5; margin-bottom: 16px;
}
.partner-desc { font-size: 15px; color: var(--brown); opacity: 0.75; line-height: 1.6; margin-bottom: 14px; }
.partner-badge-pill {
  display: inline-block;
  background: rgba(183,226,233,0.4);
  color: var(--teal);
  font-family: var(--font-display);
  font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 5px 12px; border-radius: 100px;
}
.partner-product {
  flex-shrink: 0;
  width: 160px; height: 160px;
  display: flex; align-items: center; justify-content: center;
}
.partner-product img { width: 100%; height: 100%; object-fit: contain; }

/* ================================================================
   HOW HEAR LIFE HELPS
================================================================ */
.hlp-section {
  background: var(--teal);
  padding: 96px 32px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.hlp-section::before {
  content: '';
  position: absolute;
  top: -50%; left: -10%;
  width: 55%; height: 200%;
  background: radial-gradient(ellipse, rgba(183,226,233,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.hlp-inner { max-width: 680px; margin: 0 auto; position: relative; }
.hlp-section .eyebrow { color: var(--light-blue); margin-bottom: 20px; }
.hlp-section h2 { color: var(--cream); margin-bottom: 20px; }
.hlp-body { font-size: 18px; color: var(--cream); opacity: 0.8; margin-bottom: 12px; line-height: 1.7; }
.hlp-sub { font-size: 16px; color: var(--cream); opacity: 0.65; margin-bottom: 44px; line-height: 1.7; }
.hlp-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ================================================================
   TESTIMONIALS
================================================================ */
.testimonials { padding: 100px 32px; background: var(--cream); }
.testimonials-inner { max-width: var(--max-w); margin: 0 auto; }
.testimonials-header { text-align: center; margin-bottom: 52px; }
.testimonials-header .eyebrow { margin-bottom: 14px; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 48px; }
.testi-card {
  background: white;
  border: 1px solid rgba(33,98,120,0.08);
  border-radius: 14px;
  padding: 32px 28px;
  position: relative;
  transition: transform 0.2s;
}
.testi-card:hover { transform: translateY(-4px); }
.testi-quote-icon {
  font-size: 32px; color: var(--light-blue);
  line-height: 1; font-family: Georgia, serif;
  margin-bottom: 14px; display: block;
}
.testi-text { font-size: 15px; line-height: 1.7; color: var(--brown); opacity: 0.85; margin-bottom: 24px; }
.testi-author-row { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%; overflow: hidden;
  flex-shrink: 0; background: var(--light-blue);
}
.testi-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testi-name { font-family: var(--font-display); font-size: 14px; font-weight: 600; color: var(--teal); }
.testi-meta { font-size: 12px; color: var(--brown); opacity: 0.55; margin-top: 2px; }
.testi-pull {
  text-align: center;
  font-family: var(--font-display);
  font-size: 20px; font-weight: 700;
  color: var(--teal); opacity: 0.75; letter-spacing: -0.3px;
}

/* ================================================================
   CONTACT PATHWAYS
================================================================ */
.contact-paths {
  padding: 96px 32px;
  background: var(--teal-dark);
  position: relative;
  overflow: hidden;
}
.contact-paths::before {
  content: '';
  position: absolute;
  right: -5%; bottom: -20%;
  width: 45%; height: 140%;
  background: radial-gradient(ellipse, rgba(183,226,233,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.contact-paths-inner { max-width: var(--max-w); margin: 0 auto; position: relative; }
.contact-paths-header { margin-bottom: 52px; }
.contact-paths-header .eyebrow { color: var(--light-blue); margin-bottom: 14px; }
.contact-paths-header h2 { color: var(--cream); }
.contact-paths-header p { font-size: 17px; color: var(--cream); opacity: 0.65; margin-top: 12px; max-width: 560px; }
.channels-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 56px;
  margin-top: 20px;
}
.channel-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(183,226,233,0.15);
  border-radius: 14px;
  padding: 28px 24px;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  position: relative;
}
.channel-card:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(183,226,233,0.4);
  transform: translateY(-4px);
}
.channel-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; font-size: 24px; flex-shrink: 0;
}
.channel-icon.viber { background: #7360f2; }
.channel-icon.call  { background: var(--teal-light); }
.channel-icon.visit { background: rgba(183,226,233,0.2); }
.channel-icon.fb    { background: #1877f2; }
.channel-icon i { color: white; }
.channel-card h3 { color: var(--cream); font-size: 16px; margin-bottom: 6px; }
.channel-card p { font-size: 13px; color: var(--cream); opacity: 0.55; line-height: 1.4; }
.channel-preferred {
  position: absolute;
  top: -13px; left: 24px;
  display: inline-block;
  background: var(--light-blue);
  color: var(--teal-dark);
  font-family: var(--font-display);
  font-size: 9px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 4px 10px; border-radius: 100px;
}
.contact-form-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: start;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(183,226,233,0.12);
  border-radius: 16px;
  padding: 36px 40px;
}
.form-header { margin-bottom: 22px; }
.form-header h3 { color: var(--cream); font-size: 18px; }
.form-header p { font-size: 14px; color: var(--cream); opacity: 0.55; margin-top: 4px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; }
.form-full { grid-column: 1 / -1; }
.form-input {
  width: 100%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(183,226,233,0.2);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px; color: var(--cream);
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}
.form-input::placeholder { color: rgba(242,232,212,0.4); }
.form-input:focus { border-color: var(--light-blue); }
select.form-input option { background: var(--teal-dark); color: var(--cream); }
.form-note {
  font-size: 12px; color: var(--cream); opacity: 0.4;
  margin-top: 10px; display: flex; align-items: center; gap: 6px;
}
.form-cta-col {
  display: flex; flex-direction: column; gap: 12px;
  justify-content: center; align-items: stretch;
  min-width: 200px; padding-top: 48px;
}

/* ================================================================
   FINAL CTA
================================================================ */
.final-cta {
  padding: 100px 32px;
  background: var(--light-blue);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(183,226,233,0.25) 0%, transparent 70%);
  pointer-events: none;
}
.final-cta-inner { max-width: 640px; margin: 0 auto; position: relative; }
.final-cta .eyebrow { margin-bottom: 20px; }
.final-cta h2 {
  margin-bottom: 18px;
  font-size: clamp(28px, 4vw, 40px);
  color: var(--teal); letter-spacing: -0.3px;
}
.final-cta p {
  font-size: 18px; color: var(--brown); opacity: 0.85;
  margin-bottom: 36px; line-height: 1.6;
  max-width: 580px; margin-left: auto; margin-right: auto;
}
.final-cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ================================================================
   FOOTER
================================================================ */
.footer {
  background: var(--brown);
  color: var(--cream);
  padding: 64px 32px 28px;
  position: relative;
  overflow: hidden;
}
.footer-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(183,226,233,0.12);
}
.footer-brand .logo-name {
  color: var(--light-blue); font-size: 22px; margin-bottom: 14px;
  display: block; font-family: var(--font-display);
  font-weight: 800; letter-spacing: 2px;
}
.footer-brand p { font-size: 14px; opacity: 0.6; line-height: 1.7; }
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 11px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--light-blue); opacity: 0.7; margin-bottom: 20px;
}
.footer-col a {
  display: block; font-size: 14px;
  color: var(--cream); text-decoration: none;
  opacity: 0.65; margin-bottom: 10px;
  transition: opacity 0.2s;
}
.footer-col a:hover { opacity: 1; }
.footer-bottom {
  max-width: var(--max-w); margin: 0 auto;
  padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; opacity: 0.45;
  font-family: var(--font-display);
  flex-wrap: wrap; gap: 8px;
}

/* ================================================================
   MOBILE STICKY BAR
================================================================ */
.hl-mobile-sticky {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--teal-dark);
  z-index: 9999;
  border-top: 1px solid rgba(183,226,233,0.2);
  padding: 10px 0;
  padding-bottom: max(10px, env(safe-area-inset-bottom));
}
.hl-mobile-sticky-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.hl-sticky-btn {
  display: flex; flex-direction: column;
  align-items: center; gap: 4px;
  color: var(--cream);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.5px;
  padding: 4px 16px;
  border-radius: 8px;
  border: none; background: none; cursor: pointer;
}
.hl-sticky-btn i { font-size: 22px; }
.hl-viber-sticky i  { color: #7360f2; }
.hl-call-sticky i   { color: var(--light-blue); }
.hl-branch-sticky i { color: var(--light-blue); }

/* ================================================================
   FLOATING VIBER BUTTON (desktop)
================================================================ */
.hl-viber-float {
  position: fixed;
  bottom: 36px; right: 32px;
  background: #7360f2;
  color: white;
  width: 64px; height: 64px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  box-shadow: 0 6px 24px rgba(115,96,242,0.4);
  z-index: 9998;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.hl-viber-float:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 32px rgba(115,96,242,0.5);
  color: white;
}
.hl-viber-float i { font-size: 28px; }
.hl-viber-float-label {
  font-size: 9px; font-family: var(--font-display);
  font-weight: 700; letter-spacing: 1px;
}

/* ================================================================
   RESPONSIVE
================================================================ */
@media (max-width: 1100px) {
  .paths-grid { grid-template-columns: repeat(3, 1fr); }
  .channels-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-image-col { height: 360px; min-height: 360px; }
  .hero-badge { left: 16px; }
  .hero-stat-card { right: 16px; }
  .audi-grid { grid-template-columns: 1fr 1fr; }
  .partners-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .editorial-grid { grid-template-columns: 1fr; }
  .contact-form-row { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-cta-col { padding-top: 0; flex-direction: row; }
  .hl-hamburger { display: block; }
  .nav-links, .nav-actions { display: none; }
}
@media (max-width: 640px) {
  :root { --section-pad: 64px 20px; }
  .paths-grid { grid-template-columns: 1fr 1fr; }
  .audi-grid { grid-template-columns: 1fr; }
  .channels-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .hl-mobile-sticky { display: block; }
  .hl-viber-float { display: none; }
  body { padding-bottom: 72px; }
  .hero-content { padding: 48px 24px; }
  .contact-paths { padding: 64px 20px; }
  .partner-card { flex-direction: column; padding: 28px 24px; }
  .partner-product { width: 120px; height: 120px; }
  .symptom-list { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .symptom-list { grid-template-columns: 1fr; }
  .paths-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
