/* ============================================================
   HEALTH HUB — Dedicated Stylesheet
   Uses homepage CSS variables: --primary-blue, --secondary-blue,
   --accent-blue, --dark-blue, --light-blue, --text-dark,
   --text-gray, --border-light, --gradient, --white
   All new classes prefixed with hh-
   ============================================================ */

/* ============================================================
   SCROLL REVEAL SYSTEM
   ============================================================ */
.hh-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1), transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}
.hh-reveal.hh-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   HERO
   ============================================================ */
.hh-hero {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 50%, var(--dark-blue) 100%);
  padding: 80px 0 72px;
  position: relative;
  overflow: hidden;
}

.hh-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hh-hero-orb {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}
.hh-hero-orb-1 { width: 600px; height: 600px; top: -200px; left: -160px; }
.hh-hero-orb-2 { width: 500px; height: 500px; bottom: -200px; right: -120px; }

.hh-hero-container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hh-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 12px 24px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  margin-bottom: 32px;
  text-transform: uppercase;
  animation: fadeInUp 0.7s ease 0.1s both;
}

.hh-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 64px;
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease 0.25s both;
}

.hh-br-lg { display: inline; }

.hh-gradient-text {
  background: linear-gradient(135deg, var(--secondary-blue) 0%, var(--light-blue) 40%, #a8c5e8 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease-in-out infinite;
  font-style: italic;
  padding-right: 0.08em;
}

.hh-hero-subtitle {
  font-size: 19px;
  color: rgba(255, 255, 255, 0.82);
  max-width: 680px;
  margin: 0 auto 48px;
  line-height: 1.7;
  font-weight: 400;
  animation: fadeInUp 0.8s ease 0.4s both;
}

/* Filter Tabs */
.hh-filter-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.55s both;
}

.hh-tab {
  padding: 12px 24px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: -0.01em;
}

.hh-tab:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
  transform: translateY(-2px);
}

.hh-tab.active {
  background: var(--white);
  color: var(--primary-blue);
  border-color: var(--white);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

/* Filtered items animate in */
.hh-article-card.hh-revealed,
.hh-topic-card.hh-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   SHARED SECTION STYLES
   ============================================================ */
.hh-section-header {
  text-align: center;
  margin-bottom: 56px;
}

.hh-section-header--light {
  margin-bottom: 32px;
}

.hh-section-header--on-dark {
  margin-bottom: 56px;
}

.hh-section-title {
  font-size: 48px;
  font-weight: 800;
  color: var(--primary-blue);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 16px;
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
}

.hh-title-white { color: var(--white); }

.hh-section-lead {
  font-size: 18px;
  color: var(--text-gray);
  font-weight: 400;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.hh-lead-muted {
  color: rgba(255, 255, 255, 0.75);
}

/* ============================================================
   CHOOSE YOUR TOPIC SECTION
   ============================================================ */
.hh-topics-section {
  padding: 96px 0 96px;
  background: linear-gradient(135deg, #ffffff 0%, var(--secondary-blue) 50%, #f5f9fc 100%);
  position: relative;
  overflow: hidden;
}

.hh-topics-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(10, 47, 138, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(90, 127, 196, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.hh-topic-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.hh-topic-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  display: block;
  box-shadow: 0 8px 32px rgba(10, 47, 138, 0.12);
  border: 1px solid rgba(10, 47, 138, 0.1);
  transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 420px;
}

.hh-topic-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(10, 47, 138, 0.25);
  border-color: rgba(10, 47, 138, 0.2);
}

.hh-topic-img-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hh-topic-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
}

.hh-topic-card:hover .hh-topic-img {
  transform: scale(1.08);
}

.hh-topic-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 29, 84, 0.9) 0%, rgba(6, 29, 84, 0.4) 50%, rgba(6, 29, 84, 0.1) 100%);
  transition: background 0.45s;
}

.hh-topic-card:hover .hh-topic-overlay {
  background: linear-gradient(to top, rgba(6, 29, 84, 0.95) 0%, rgba(6, 29, 84, 0.55) 55%, rgba(6, 29, 84, 0.15) 100%);
}

.hh-topic-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  z-index: 2;
}

.hh-topic-badge {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.hh-topic-title {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.hh-topic-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
  margin-bottom: 20px;
  font-weight: 400;
}

.hh-topic-cta-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary-blue);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.hh-topic-card:hover .hh-topic-cta-pill {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   FEATURED ARTICLE
   ============================================================ */
.hh-featured-section {
  padding: 96px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafd 30%, #f0f4fa 60%, #f8fafd 85%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.hh-featured-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 700px 500px at 15% 40%, rgba(10, 47, 138, 0.04) 0%, transparent 70%),
    radial-gradient(ellipse 600px 400px at 85% 60%, rgba(90, 127, 196, 0.035) 0%, transparent 70%);
  pointer-events: none;
}

/* Editorial label — replaces old pill badge */
.hh-featured-editorial-label {
  display: inline-flex;
  align-items: center;
  gap: 18px;
}

.hh-featured-editorial-rule {
  display: block;
  width: 3px;
  height: 44px;
  background: linear-gradient(to bottom, var(--primary-blue) 0%, var(--light-blue) 100%);
  border-radius: 2px;
  flex-shrink: 0;
}

.hh-featured-editorial-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.hh-featured-editorial-eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--light-blue);
  line-height: 1;
}

.hh-featured-editorial-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  font-style: italic;
  color: var(--primary-blue);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.hh-featured-card {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 0;
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 56px rgba(10, 47, 138, 0.14), 0 2px 8px rgba(10, 47, 138, 0.06);
  border: 1px solid rgba(10, 47, 138, 0.1);
  transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 40px;
  position: relative;
  z-index: 1;
}

.hh-featured-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 80px rgba(10, 47, 138, 0.22), 0 4px 16px rgba(10, 47, 138, 0.08);
}

.hh-featured-img-col {
  position: relative;
  overflow: hidden;
}

.hh-featured-img-wrap {
  position: relative;
  height: 100%;
  min-height: 440px;
}

.hh-featured-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.hh-featured-card:hover .hh-featured-img {
  transform: scale(1.05);
}

.hh-featured-cat-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
  color: var(--white);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 4px 16px rgba(10, 47, 138, 0.35);
}

.hh-featured-content-col {
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  background: var(--white);
  position: relative;
}

.hh-featured-content-col::before {
  content: '';
  position: absolute;
  top: 40px;
  right: 40px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(10, 47, 138, 0.04) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hh-featured-meta {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hh-read-time {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-gray);
  font-weight: 500;
}

.hh-read-time svg { color: var(--primary-blue); flex-shrink: 0; }

.hh-meta-dot {
  color: var(--border-light);
  font-size: 16px;
}

.hh-date {
  font-size: 13px;
  color: var(--text-gray);
  font-weight: 400;
}

.hh-featured-title {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--primary-blue);
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin: 0;
}

.hh-featured-excerpt {
  font-size: 16px;
  color: var(--text-gray);
  line-height: 1.7;
  font-weight: 400;
  flex: 1;
}

.hh-byline {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hh-byline-avatar {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  border: 2px solid rgba(10, 47, 138, 0.15);
  flex-shrink: 0;
}

.hh-byline-avatar--sm {
  width: 36px;
  height: 36px;
  min-width: 36px;
  font-size: 11px;
}

.hh-byline-avatar--photo {
  padding: 0;
  overflow: hidden;
  background: var(--primary-blue);
}

.hh-byline-avatar--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hh-byline-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hh-byline-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.01em;
}

.hh-byline-title {
  font-size: 13px;
  color: var(--text-gray);
  font-weight: 400;
}

.hh-byline--sm .hh-byline-name { font-size: 13px; }
.hh-byline--sm .hh-byline-title { font-size: 12px; }

.hh-featured-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
  color: var(--white);
  text-decoration: none;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  width: fit-content;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 16px rgba(10, 47, 138, 0.3);
  letter-spacing: -0.01em;
}

.hh-featured-cta:hover {
  transform: translateY(-2px) translateX(2px);
  box-shadow: 0 8px 24px rgba(10, 47, 138, 0.4);
}

/* ============================================================
   LATEST ARTICLES GRID
   ============================================================ */
.hh-articles-section {
  padding: 96px 0;
  background: linear-gradient(135deg, var(--secondary-blue) 0%, #f5f9fc 50%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.hh-articles-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(10, 47, 138, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(90, 127, 196, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.hh-articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
  z-index: 1;
}

.hh-article-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(10, 47, 138, 0.1);
  box-shadow: 0 2px 16px rgba(10, 47, 138, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hh-article-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(10, 47, 138, 0.18);
  border-color: rgba(10, 47, 138, 0.18);
}

.hh-article-img-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  overflow: hidden;
  flex-shrink: 0;
}

.hh-article-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hh-article-card:hover .hh-article-img {
  transform: scale(1.08);
}

/* Category badges */
.hh-article-cat-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.hh-badge--wellness {
  background: rgba(16, 185, 129, 0.9);
  color: var(--white);
}

.hh-badge--travel {
  background: rgba(10, 47, 138, 0.92);
  color: var(--white);
}

.hh-badge--weight {
  background: rgba(139, 92, 246, 0.9);
  color: var(--white);
}

.hh-badge--seasonal {
  background: rgba(245, 101, 101, 0.88);
  color: var(--white);
}

.hh-article-body {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.hh-article-meta {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hh-article-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-blue);
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin: 0;
  transition: color 0.3s;
  flex: 1;
}

.hh-article-card:hover .hh-article-title {
  color: var(--accent-blue);
}

.hh-article-excerpt {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.65;
  font-weight: 400;
  flex: 1;
}

/* ============================================================
   EXPLORE BY TOPIC
   ============================================================ */
.hh-explore-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 50%, var(--dark-blue) 100%);
  padding: 96px 0 112px;
}

.hh-explore-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hh-explore-orb {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}
.hh-explore-orb-1 { width: 600px; height: 600px; top: -200px; left: -160px; }
.hh-explore-orb-2 { width: 500px; height: 500px; bottom: -180px; right: -120px; }

.hh-explore-container {
  position: relative;
  z-index: 2;
}

.hh-explore-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.hh-explore-tile {
  display: block;
  text-decoration: none;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-height: 220px;
}

.hh-explore-tile:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
  border-color: rgba(255, 255, 255, 0.25);
}

.hh-explore-img-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hh-explore-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
}

.hh-explore-tile:hover .hh-explore-img {
  transform: scale(1.1);
}

.hh-explore-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 29, 84, 0.88) 0%, rgba(6, 29, 84, 0.3) 60%, rgba(6, 29, 84, 0.05) 100%);
  transition: background 0.4s;
}

.hh-explore-tile:hover .hh-explore-overlay {
  background: linear-gradient(to top, rgba(6, 29, 84, 0.94) 0%, rgba(6, 29, 84, 0.5) 65%, rgba(6, 29, 84, 0.1) 100%);
}

.hh-explore-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 20px 22px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hh-explore-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-bottom: 6px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

.hh-explore-tile:hover .hh-explore-icon {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1) rotate(-5deg);
}

.hh-explore-name {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
  line-height: 1.25;
  margin: 0;
  transition: color 0.3s;
}

.hh-explore-tile:hover .hh-explore-name {
  color: var(--secondary-blue);
}

.hh-explore-count {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
}

/* ============================================================
   TRUSTED EXPERTISE
   ============================================================ */
.hh-trust-section {
  padding: 96px 0;
  background: linear-gradient(135deg, #ffffff 0%, var(--secondary-blue) 50%, #f5f9fc 100%);
  position: relative;
  overflow: hidden;
}

.hh-trust-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(10, 47, 138, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(90, 127, 196, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.hh-trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hh-trust-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--light-blue);
  text-transform: uppercase;
  margin-bottom: 16px;
  padding: 8px 16px;
  background: rgba(10, 47, 138, 0.07);
  border-radius: 50px;
  border: 1px solid rgba(10, 47, 138, 0.12);
}

.hh-trust-title {
  font-size: 44px;
  font-weight: 800;
  color: var(--primary-blue);
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin-bottom: 20px;
  font-family: 'Inter', sans-serif;
}

.hh-trust-body {
  font-size: 17px;
  color: var(--text-gray);
  line-height: 1.75;
  font-weight: 400;
  margin-bottom: 40px;
}

.hh-trust-markers {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hh-trust-marker {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background: var(--white);
  border-radius: 14px;
  border: 1px solid rgba(10, 47, 138, 0.1);
  box-shadow: 0 2px 12px rgba(10, 47, 138, 0.05);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.hh-trust-marker:hover {
  transform: translateX(6px);
  box-shadow: 0 6px 24px rgba(10, 47, 138, 0.12);
  border-color: rgba(10, 47, 138, 0.2);
}

.hh-trust-marker-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: linear-gradient(135deg, rgba(10, 47, 138, 0.1) 0%, rgba(10, 47, 138, 0.05) 100%);
  border: 1px solid rgba(10, 47, 138, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

.hh-trust-marker:hover .hh-trust-marker-icon {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
  color: var(--white);
  transform: scale(1.08) rotate(-4deg);
}

.hh-trust-marker-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hh-trust-marker-text strong {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary-blue);
  letter-spacing: -0.01em;
}

.hh-trust-marker-text span {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.5;
}

/* Right column visual */
.hh-trust-visual {
  position: relative;
}

.hh-trust-img-wrap {
  position: relative;
  border-radius: 24px;
  overflow: visible;
}

.hh-trust-img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(10, 47, 138, 0.15);
  display: block;
}

.hh-trust-float-badge {
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 60px;
  padding: 16px 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 12px 40px rgba(10, 47, 138, 0.18);
  border: 1px solid rgba(10, 47, 138, 0.1);
  white-space: nowrap;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s;
}

.hh-trust-float-badge:hover {
  transform: translateX(-50%) translateY(-4px);
  box-shadow: 0 20px 60px rgba(10, 47, 138, 0.25);
}

.hh-trust-float-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}

.hh-trust-float-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hh-trust-float-main {
  font-size: 15px;
  font-weight: 800;
  color: var(--primary-blue);
  letter-spacing: -0.01em;
}

.hh-trust-float-sub {
  font-size: 12px;
  color: var(--text-gray);
  font-weight: 500;
}

/* ============================================================
   SERVICE CONNECTION CTA
   ============================================================ */
.hh-cta-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 50%, var(--dark-blue) 100%);
  padding: 96px 0;
  text-align: center;
}

.hh-cta-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hh-cta-orb-1,
.hh-cta-orb-2 {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
}
.hh-cta-orb-1 { width: 500px; height: 500px; top: -180px; left: -120px; }
.hh-cta-orb-2 { width: 400px; height: 400px; bottom: -160px; right: -80px; }

.hh-cta-container {
  position: relative;
  z-index: 2;
}

.hh-cta-title {
  font-size: 52px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 20px;
  font-family: 'Inter', sans-serif;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.hh-cta-body {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.82);
  max-width: 680px;
  margin: 0 auto 40px;
  line-height: 1.7;
  font-weight: 400;
}

.hh-cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hh-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--white);
  color: var(--primary-blue);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  letter-spacing: -0.01em;
}

.hh-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  background: var(--secondary-blue);
}

.hh-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.hh-btn-outline:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
}

.hh-cta-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.hh-cta-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

.hh-cta-trust-item svg {
  color: #34d399;
  flex-shrink: 0;
}

/* ============================================================
   NEWSLETTER SECTION
   ============================================================ */
.hh-newsletter-section {
  padding: 80px 0;
  background: var(--white);
}

.hh-newsletter-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  background: linear-gradient(135deg, var(--secondary-blue) 0%, #eef4fd 100%);
  border-radius: 24px;
  padding: 56px 64px;
  border: 1px solid rgba(10, 47, 138, 0.1);
  box-shadow: 0 4px 32px rgba(10, 47, 138, 0.08);
  position: relative;
  overflow: hidden;
}

.hh-newsletter-card::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(10, 47, 138, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hh-newsletter-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary-blue);
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 12px;
  font-family: 'Inter', sans-serif;
}

.hh-newsletter-desc {
  font-size: 16px;
  color: var(--text-gray);
  line-height: 1.65;
  margin-bottom: 24px;
}

.hh-newsletter-topics {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hh-topic-check {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  padding: 8px 16px;
  background: rgba(10, 47, 138, 0.06);
  border: 1px solid rgba(10, 47, 138, 0.12);
  border-radius: 50px;
  transition: all 0.3s;
}

.hh-topic-check:hover {
  background: rgba(10, 47, 138, 0.1);
  border-color: rgba(10, 47, 138, 0.2);
}

.hh-topic-check input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--primary-blue);
}

.hh-newsletter-input-row {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
}

.hh-newsletter-input-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border: 1.5px solid rgba(10, 47, 138, 0.15);
  border-radius: 12px;
  padding: 0 20px;
  transition: all 0.3s;
}

.hh-newsletter-input-wrap svg {
  color: var(--text-gray);
  flex-shrink: 0;
}

.hh-newsletter-input-wrap:focus-within {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(10, 47, 138, 0.08);
}

.hh-newsletter-input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 16px 0;
  font-size: 15px;
  color: var(--text-dark);
  font-family: 'Inter', sans-serif;
  outline: none;
}

.hh-newsletter-input::placeholder {
  color: var(--text-gray);
}

.hh-newsletter-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
  color: var(--white);
  border: none;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 16px rgba(10, 47, 138, 0.3);
  white-space: nowrap;
  font-family: 'Inter', sans-serif;
}

.hh-newsletter-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(10, 47, 138, 0.4);
}

.hh-newsletter-privacy {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-gray);
  font-weight: 400;
}

.hh-newsletter-privacy svg {
  color: var(--light-blue);
  flex-shrink: 0;
}

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */
@media (max-width: 1024px) {
  .hh-hero-title {
    font-size: 48px;
  }

  .hh-section-title {
    font-size: 38px;
  }

  .hh-featured-card {
    grid-template-columns: 1fr;
  }

  .hh-featured-img-wrap {
    min-height: 320px;
    height: 320px;
  }

  .hh-featured-editorial-title {
    font-size: 19px;
  }

  .hh-trust-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .hh-trust-img {
    height: 480px;
  }

  .hh-trust-float-badge {
    bottom: -20px;
  }

  .hh-explore-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hh-newsletter-card {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 48px 40px;
  }

  .hh-cta-title {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .hh-hero {
    padding: 56px 0 60px;
  }

  .hh-hero-title {
    font-size: 34px;
  }

  .hh-br-lg { display: none; }

  .hh-hero-subtitle {
    font-size: 16px;
  }

  .hh-filter-tabs {
    gap: 8px;
  }

  .hh-tab {
    padding: 10px 18px;
    font-size: 13px;
  }

  .hh-section-title {
    font-size: 30px;
  }

  .hh-section-lead {
    font-size: 16px;
  }

  .hh-topic-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .hh-topic-card {
    min-height: 320px;
  }

  .hh-topic-title {
    font-size: 26px;
  }

  .hh-articles-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hh-featured-title {
    font-size: 24px;
  }

  .hh-featured-content-col {
    padding: 32px 28px;
  }

  .hh-explore-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .hh-explore-tile {
    min-height: 180px;
  }

  .hh-explore-name {
    font-size: 15px;
  }

  .hh-trust-title {
    font-size: 32px;
  }

  .hh-trust-img {
    height: 380px;
  }

  .hh-cta-title {
    font-size: 32px;
  }

  .hh-cta-body {
    font-size: 16px;
  }

  .hh-cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .hh-btn-primary,
  .hh-btn-outline {
    width: 100%;
    justify-content: center;
  }

  .hh-cta-trust {
    gap: 16px;
    flex-direction: column;
    align-items: flex-start;
  }

  .hh-newsletter-card {
    padding: 36px 28px;
  }

  .hh-newsletter-title {
    font-size: 22px;
  }

  .hh-newsletter-input-row {
    flex-direction: column;
  }

  .hh-newsletter-btn {
    justify-content: center;
  }

  .hh-newsletter-input-wrap {
    padding: 0 16px;
  }
}

@media (max-width: 480px) {
  .hh-explore-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hh-trust-float-badge {
    flex-direction: column;
    text-align: center;
    gap: 8px;
    padding: 16px 20px;
  }
}
