/* ==========================================================================
   H-Focus Medical Laboratory - Modern Landing Page Design System 2026
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

/* Great Day Local Font Definition (Zero FOUT / Instant Load) */
@font-face {
  font-family: 'Great Day';
  src: url('../fonts/Great%20Day%20bold%20Personal%20Use.ttf') format('truetype'),
       url('../fonts/Great Day bold Personal Use.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: 'Great Day';
  src: url('../fonts/Great%20Day%20Personal%20Use.ttf') format('truetype'),
       url('../fonts/Great Day Personal Use.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: block;
}

/* Corinthia Local Font Definition */
@font-face {
  font-family: 'Corinthia';
  font-style: normal;
  font-weight: 700;
  font-display: block;
  src: url('../fonts/corinthia-bold.woff2') format('woff2'),
       url('https://fonts.gstatic.com/s/corinthia/v13/wEO6EBrAnchaJyPMHE097d8f02oa.woff2') format('woff2');
}

:root {
  --hf-primary: #057837;
  --hf-primary-dark: #034b22;
  --hf-primary-light: #0ea750;
  --hf-accent: #10b981;
  --hf-teal: #06b6d4;
  --hf-emerald: #047857;
  --hf-navy: #0b132b;
  --hf-navy-light: #1c2541;
  --hf-slate: #334155;
  --hf-slate-light: #64748b;
  --hf-bg-light: #f8fafc;
  --hf-bg-card: #ffffff;
  --hf-border: rgba(5, 120, 55, 0.12);
  --hf-border-light: rgba(148, 163, 184, 0.15);
  --hf-shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.04);
  --hf-shadow-md: 0 10px 30px rgba(5, 120, 55, 0.08);
  --hf-shadow-lg: 0 20px 50px rgba(5, 120, 55, 0.14);
  --hf-shadow-glow: 0 0 40px rgba(16, 185, 129, 0.25);
  --hf-radius-sm: 8px;
  --hf-radius-md: 14px;
  --hf-radius-lg: 20px;
  --hf-radius-xl: 28px;
  --hf-font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --hf-font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Base Resets & Typography */
body {
  font-family: var(--hf-font-body) !important;
  color: var(--hf-slate);
  background-color: var(--hf-bg-light);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--hf-font-heading) !important;
  color: var(--hf-navy);
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* Modern Top Notice Bar */
.hf-topbar {
  background: linear-gradient(135deg, var(--hf-navy) 0%, var(--hf-primary-dark) 100%);
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.hf-topbar a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.2s ease;
}
.hf-topbar a:hover {
  color: #34d399;
}
.hf-topbar-pill {
  background: rgba(16, 185, 129, 0.2);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #6ee7b7;
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hf-pulse-dot {
  width: 7px;
  height: 7px;
  background: #10b981;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 8px #10b981;
  animation: hfPulse 1.8s infinite;
}
@keyframes hfPulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1.1); box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* Modern Sticky Header */
.hf-header,
.wrapper header.hf-header {
  position: sticky;
  top: 0;
  z-index: 1050;
  height: auto !important;
  max-height: none !important;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--hf-border-light);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.hf-navbar {
  padding: 12px 0;
}
.hf-navbar .container,
.hf-topbar .container {
  max-width: 1540px !important;
  width: 96% !important;
  padding-left: 20px !important;
  padding-right: 20px !important;
}
.hf-brand-logo {
  max-height: 52px;
  width: auto;
  transition: transform 0.3s ease;
}
.hf-brand-logo:hover {
  transform: scale(1.02);
}

@media (min-width: 992px) {
  .hf-navbar .navbar-collapse {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
  }
  .hf-navbar .navbar-nav {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 4px;
    margin-left: auto !important;
    margin-right: auto !important;
    padding: 0 12px;
  }
  .hf-navbar .navbar-collapse > .d-flex {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    flex-shrink: 0 !important;
  }
}

.hf-nav-link {
  font-weight: 600;
  font-size: 14px;
  color: var(--hf-navy) !important;
  padding: 8px 11px !important;
  border-radius: var(--hf-radius-sm);
  transition: all 0.25s ease;
  position: relative;
  white-space: nowrap !important;
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: center;
}

@media (min-width: 1200px) {
  .hf-navbar .navbar-nav {
    gap: 6px;
  }
  .hf-nav-link {
    font-size: 14.5px;
    padding: 8px 14px !important;
  }
}

@media (min-width: 1400px) {
  .hf-navbar .navbar-nav {
    gap: 12px;
  }
  .hf-nav-link {
    font-size: 15px;
    padding: 9px 16px !important;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .hf-navbar .navbar-nav {
    gap: 2px !important;
    padding: 0 6px !important;
  }
  .hf-nav-link {
    font-size: 13px !important;
    padding: 6px 8px !important;
  }
  .hf-btn-header-result {
    font-size: 12px !important;
    padding: 6px 12px !important;
  }
  .hf-btn-header-book {
    font-size: 12px !important;
    padding: 7px 14px !important;
  }
}

.hf-nav-link:hover, .hf-nav-link.active {
  color: var(--hf-primary) !important;
  background: rgba(5, 120, 55, 0.06);
}
.hf-nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--hf-primary);
  border-radius: 2px;
}
.hf-btn-header-result {
  border: 1.5px solid var(--hf-primary);
  color: var(--hf-primary) !important;
  font-weight: 700;
  font-size: 13px;
  padding: 8px 16px;
  border-radius: 30px;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap !important;
  flex-shrink: 0;
}
.hf-btn-header-result:hover {
  background: var(--hf-primary);
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(5, 120, 55, 0.25);
  text-decoration: none;
}
.hf-btn-header-book {
  background: linear-gradient(135deg, var(--hf-primary) 0%, #0ea750 100%);
  color: #ffffff !important;
  font-weight: 700;
  font-size: 13.5px;
  padding: 9px 20px;
  border-radius: 30px;
  box-shadow: 0 6px 18px rgba(5, 120, 55, 0.28);
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap !important;
  flex-shrink: 0;
}
.hf-btn-header-book:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(5, 120, 55, 0.38);
  color: #ffffff !important;
  text-decoration: none;
}

/* Mobile Brand Name beside Logo */
.hf-brand-mobile-text {
  line-height: 1.15;
  text-align: left;
}
.hf-brand-mobile-name {
  font-family: var(--hf-font-heading);
  font-weight: 800;
  font-size: 14.5px;
  color: var(--hf-navy);
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.hf-brand-mobile-sub {
  font-family: var(--hf-font-body);
  font-weight: 700;
  font-size: 10px;
  color: var(--hf-primary);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* Hero Section with Transparent Background Banners */
.hf-hero {
  position: relative;
  background: #f8fafc;
  padding: 85px 0 65px 0;
  overflow: hidden;
}

/* Transparent Hero Background Banners */
.hf-hero-bg-container {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.hf-hero-bg-banner {
  position: absolute;
  inset: -15px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 2s cubic-bezier(0.4, 0, 0.2, 1), transform 8s ease-out;
  filter: saturate(0.85) contrast(1.05);
}
.hf-hero-bg-banner.active {
  opacity: 0.38; /* Visible but translucent — premium feel */
  transform: scale(1);
}
.hf-hero-bg-overlay {
  position: absolute;
  inset: 0;
  /* Left side brighter for text legibility, right side shows image through */
  background:
    linear-gradient(110deg,
      rgba(255,255,255,0.96) 0%,
      rgba(255,255,255,0.88) 38%,
      rgba(240,253,244,0.72) 60%,
      rgba(240,253,244,0.45) 100%),
    radial-gradient(circle at 80% 20%, rgba(16,185,129,0.07) 0%, transparent 55%);
  pointer-events: none;
}

.hf-hero > .container {
  position: relative;
  z-index: 2;
}

.hf-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(5, 120, 55, 0.2);
  color: var(--hf-primary);
  font-weight: 700;
  font-size: 12.5px;
  padding: 6px 16px;
  border-radius: 30px;
  box-shadow: 0 4px 12px rgba(5, 120, 55, 0.08);
  margin-bottom: 24px;
}
.hf-hero-title {
  font-size: 3.4rem;
  line-height: 1.25;
  font-weight: 800;
  color: var(--hf-navy);
  margin-bottom: 20px;
  overflow: visible;
}
.hf-hero-title .hf-gradient-text {
  background: linear-gradient(135deg, var(--hf-primary) 0%, #10b981 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Stylistic Calligraphy Font for "Precision Diagnostics" */
.hf-script-title-wrap {
  display: inline-flex;
  align-items: center;
  position: relative;
  vertical-align: baseline;
  padding-top: 18px; /* Generous breathing space prevents clipping of top ascender */
  padding-bottom: 6px;
  overflow: visible;
}

.hf-swash-lead {
  width: 44px;
  height: 22px;
  margin-right: 4px;
  flex-shrink: 0;
  vertical-align: middle;
}

.hf-swash-lead path {
  stroke-dasharray: 80;
  stroke-dashoffset: 80;
  animation: hfSwashDraw 1.6s ease-out forwards;
}

.hf-script-title {
  font-family: 'Great Day', cursive !important;
  font-weight: 400 !important;
  font-size: 1.68em;
  line-height: 1.35;
  letter-spacing: 0.01em;
  word-spacing: -0.22em;
  background: linear-gradient(120deg, #057837 0%, #10b981 35%, #057837 70%, #0fa953 100%);
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-flex;
  align-items: center;
  animation: hfScriptShimmer 4.5s ease-in-out infinite;
  padding: 16px 4px 6px 2px;
  margin-top: -10px;
  filter: drop-shadow(0 2px 8px rgba(16, 185, 129, 0.28));
  overflow: visible;
  min-height: 1.35em;
  transition: all 0.3s ease;
}

/* Animated Medical Stethoscope Cursor - Prominent Centerpiece */
.hf-stethoscope-cursor {
  display: inline-block;
  position: relative;
  width: 84px;
  height: 84px;
  margin-left: 10px;
  margin-bottom: -18px;
  vertical-align: middle;
  pointer-events: none;
  z-index: 5;
  transform-origin: 9px 33px; /* Chestpiece resting at text baseline */
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.4s ease;
  filter: drop-shadow(0 6px 16px rgba(16, 185, 129, 0.45)) drop-shadow(0 2px 8px rgba(5, 120, 55, 0.3));
  animation: hfStethHeartbeat 2.2s ease-in-out infinite;
}

/* Expanded Prominent Scale on Settle */
.hf-stethoscope-cursor.is-settled {
  transform: scale(1.35);
  animation: hfStethSettledPulse 2s ease-in-out infinite;
  filter: drop-shadow(0 8px 24px rgba(16, 185, 129, 0.65)) drop-shadow(0 3px 10px rgba(5, 120, 55, 0.4));
}

@keyframes hfStethSettledPulse {
  0%, 100% {
    transform: scale(1.35) rotate(0deg);
  }
  16% {
    transform: scale(1.48) translateY(-3px) rotate(-1deg);
  }
  30% {
    transform: scale(1.35) rotate(0deg);
  }
  44% {
    transform: scale(1.55) translateY(-4px) rotate(1.2deg);
  }
  64% {
    transform: scale(1.35) rotate(0deg);
  }
}

.hf-stethoscope-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.hf-steth-pulse {
  animation: hfStethAuraPulse 2.2s ease-in-out infinite;
}

@keyframes hfStethAuraPulse {
  0%, 70%, 100% {
    r: 4.5;
    opacity: 0.5;
  }
  14% {
    r: 9;
    opacity: 0.95;
    filter: drop-shadow(0 0 6px #34d399);
  }
  42% {
    r: 11;
    opacity: 1;
    filter: drop-shadow(0 0 8px #6ee7b7);
  }
}

/* Cardiac Heartbeat Motion (Lub-Dub) */
@keyframes hfStethHeartbeat {
  0% {
    transform: scale(1);
  }
  14% {
    transform: scale(1.12) translateY(-2px);
  }
  26% {
    transform: scale(1);
  }
  40% {
    transform: scale(1.16) translateY(-3px);
  }
  60% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}

/* Active tracing vibration while typing/deleting */
.hf-stethoscope-cursor.is-writing {
  animation: hfStethTrace 0.12s infinite alternate ease-in-out;
}

@keyframes hfStethTrace {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(-1px, -2px);
  }
}

@keyframes hfScriptShimmer {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Calligraphic Underline Flourish Swash */
.hf-script-swash {
  position: absolute;
  bottom: -4px;
  left: 36px;
  width: calc(100% - 36px);
  height: 18px;
  pointer-events: none;
  overflow: visible;
}

.hf-script-swash path {
  stroke-dasharray: 320;
  stroke-dashoffset: 320;
  animation: hfSwashDraw 2s ease-out forwards, hfSwashGlow 4s ease-in-out 2s infinite;
}

@keyframes hfSwashDraw {
  0% {
    stroke-dashoffset: 320;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  100% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
}

@keyframes hfSwashGlow {
  0%, 100% {
    opacity: 0.85;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(-1.5px);
    filter: drop-shadow(0 2px 5px rgba(16, 185, 129, 0.45));
  }
}
.hf-hero-subtitle {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--hf-slate);
  margin-bottom: 32px;
  max-width: 580px;
}
.hf-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}
.hf-btn-lg-primary {
  background: linear-gradient(135deg, var(--hf-primary) 0%, #0fa953 100%);
  color: #ffffff !important;
  font-weight: 700;
  font-size: 16px;
  padding: 16px 32px;
  border-radius: 50px;
  box-shadow: 0 10px 25px rgba(5, 120, 55, 0.32);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.hf-btn-lg-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(5, 120, 55, 0.42);
  color: #ffffff !important;
  text-decoration: none;
}
.hf-btn-lg-secondary {
  background: #ffffff;
  color: var(--hf-navy) !important;
  border: 1.5px solid var(--hf-border);
  font-weight: 700;
  font-size: 15.5px;
  padding: 15px 28px;
  border-radius: 50px;
  box-shadow: var(--hf-shadow-sm);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.hf-btn-lg-secondary:hover {
  border-color: var(--hf-primary);
  color: var(--hf-primary) !important;
  transform: translateY(-3px);
  box-shadow: var(--hf-shadow-md);
  text-decoration: none;
}

/* Hero Stats Bar */
.hf-hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(5, 120, 55, 0.12);
}
.hf-stat-item h4 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--hf-primary);
  margin-bottom: 2px;
}
.hf-stat-item p {
  font-size: 12px;
  color: var(--hf-slate-light);
  margin: 0;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Hero Visual Composition & Hero Banner Carousel */
.hf-hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.hf-hero-carousel-wrap {
  position: relative;
  width: 100%;
  max-width: 520px;
  border-radius: var(--hf-radius-xl);
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(5, 120, 55, 0.2);
  border: 5px solid #ffffff;
  background: #0B132B;
}
.hf-hero-slide-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.carousel-item:hover .hf-hero-slide-img {
  transform: scale(1.03);
}
.hf-slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 24px 20px 24px;
  background: linear-gradient(180deg, transparent 0%, rgba(11, 19, 43, 0.9) 100%);
  text-align: left;
  z-index: 5;
}
.hf-slide-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: #34d399;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 4px;
}
.hf-slide-caption h5 {
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0,0,0,0.4);
}
.hf-hero-indicators {
  bottom: 12px;
  margin-bottom: 0;
  z-index: 6;
}
.hf-hero-indicators li {
  width: 24px;
  height: 4px;
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.45);
  border: none;
  transition: all 0.25s ease;
}
.hf-hero-indicators li.active {
  width: 36px;
  background-color: #34d399;
}
.hf-carousel-arrow {
  width: 40px;
  height: 40px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  background: rgba(11, 19, 43, 0.6);
  backdrop-filter: blur(8px);
  color: #ffffff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  opacity: 0;
  transition: all 0.25s ease;
  z-index: 6;
}
.hf-hero-carousel-wrap:hover .hf-carousel-arrow {
  opacity: 0.9;
}
.hf-carousel-arrow:hover {
  background: var(--hf-primary);
  color: #ffffff !important;
  opacity: 1 !important;
}

/* Hero Floating Glass Badges */
.hf-float-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--hf-radius-lg);
  padding: 16px 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  z-index: 2;
  transition: transform 0.3s ease;
}
.hf-float-card:hover {
  transform: translateY(-4px);
}
.hf-float-top {
  top: 15px;
  left: -20px;
}
.hf-float-bottom {
  bottom: 25px;
  right: -20px;
}
.hf-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.hf-card-icon.green {
  background: #dcfce7;
  color: var(--hf-primary);
}
.hf-card-icon.blue {
  background: #e0f2fe;
  color: #0284c7;
}

/* Quick Action Bridge Cards */
.hf-quick-actions {
  position: relative;
  margin-top: -40px;
  z-index: 10;
}
.hf-action-card {
  background: #ffffff;
  border: 1px solid var(--hf-border-light);
  border-radius: var(--hf-radius-lg);
  padding: 24px;
  box-shadow: var(--hf-shadow-md);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.hf-action-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--hf-primary), #10b981);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.hf-action-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--hf-shadow-lg);
  border-color: rgba(5, 120, 55, 0.3);
}
.hf-action-card:hover::before {
  opacity: 1;
}
.hf-action-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--hf-radius-md);
  background: rgba(5, 120, 55, 0.08);
  color: var(--hf-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
  transition: all 0.3s ease;
}
.hf-action-card:hover .hf-action-icon {
  background: var(--hf-primary);
  color: #ffffff;
  transform: scale(1.08);
}
.hf-action-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.hf-action-desc {
  font-size: 13.5px;
  color: var(--hf-slate-light);
  line-height: 1.55;
  margin-bottom: 16px;
  flex-grow: 1;
}
.hf-action-link {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--hf-primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s ease;
}
.hf-action-link:hover {
  gap: 10px;
  color: var(--hf-primary-dark);
  text-decoration: none;
}

/* Sections Styling */
.hf-section {
  padding: 85px 0;
  position: relative;
}
.hf-section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 50px auto;
}
.hf-section-tag {
  color: var(--hf-primary);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
  display: inline-block;
}
.hf-section-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--hf-navy);
  margin-bottom: 16px;
  line-height: 1.2;
}
.hf-section-subtitle {
  font-size: 1.05rem;
  color: var(--hf-slate-light);
  line-height: 1.65;
}

/* About Section Redesign */
.hf-about-box {
  background: #ffffff;
  border-radius: var(--hf-radius-xl);
  padding: 45px;
  border: 1px solid var(--hf-border-light);
  box-shadow: var(--hf-shadow-md);
}
.hf-about-visual {
  position: relative;
  border-radius: var(--hf-radius-lg);
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}
.hf-about-visual img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--hf-radius-lg);
}
.hf-exp-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--hf-navy);
  color: #ffffff;
  border-radius: var(--hf-radius-md);
  padding: 14px 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.1);
}
.hf-pillar-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}
.hf-pillar-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 10px;
  background: #ecfdf5;
  color: var(--hf-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

/* Services Grid Redesign */
.hf-service-card {
  background: #ffffff;
  border: 1px solid var(--hf-border-light);
  border-radius: var(--hf-radius-lg);
  padding: 32px 28px;
  box-shadow: var(--hf-shadow-sm);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.hf-service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--hf-shadow-lg);
  border-color: rgba(5, 120, 55, 0.25);
}
.hf-service-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 15px;
  background: #ecfdf5;
  color: var(--hf-primary);
  margin-bottom: 16px;
  align-self: flex-start;
}
.hf-service-icon-box {
  width: 60px;
  height: 60px;
  border-radius: var(--hf-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, rgba(5, 120, 55, 0.1) 0%, rgba(16, 185, 129, 0.15) 100%);
  color: var(--hf-primary);
}
.hf-service-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.hf-service-desc {
  font-size: 14px;
  color: var(--hf-slate-light);
  line-height: 1.65;
  margin-bottom: 20px;
  flex-grow: 1;
}
.hf-service-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14px;
  color: var(--hf-primary);
  text-decoration: none;
  transition: gap 0.2s ease;
}
.hf-service-action:hover {
  gap: 12px;
  text-decoration: none;
  color: var(--hf-primary-dark);
}

/* Fast Result Verification Banner */
.hf-verify-banner {
  background: linear-gradient(135deg, var(--hf-navy) 0%, var(--hf-primary-dark) 100%);
  border-radius: var(--hf-radius-xl);
  padding: 45px 50px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(5, 120, 55, 0.22);
}
.hf-verify-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.3) 0%, transparent 70%);
  pointer-events: none;
}
.hf-verify-input-group {
  display: flex;
  max-width: 480px;
  background: #ffffff;
  border-radius: 50px;
  padding: 5px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}
.hf-verify-input {
  border: none;
  background: transparent;
  padding: 12px 20px;
  font-size: 14.5px;
  width: 100%;
  outline: none;
  font-weight: 500;
  color: var(--hf-navy);
}
.hf-verify-btn {
  background: var(--hf-primary);
  color: #ffffff;
  border: none;
  padding: 12px 24px;
  border-radius: 40px;
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
  transition: all 0.25s ease;
}
.hf-verify-btn:hover {
  background: var(--hf-primary-dark);
  transform: scale(1.02);
}

/* ==========================================================================
   Health Check Plans Section - Smart & Elegant Design with Animated HFML
   ========================================================================== */
.hf-section-pricing {
  position: relative;
  overflow: hidden;
  padding: 100px 0 90px 0;
  background: radial-gradient(circle at 50% 0%, rgba(16, 185, 129, 0.09) 0%, transparent 65%),
              linear-gradient(180deg, #f8fafc 0%, #f0fdf4 50%, #f8fafc 100%);
}

/* Giant Animated HFML Inscription in Background */
.hf-watermark-wrapper {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  pointer-events: none;
  user-select: none;
  z-index: 1;
  overflow: hidden;
  white-space: nowrap;
}

.hf-watermark-track {
  display: inline-flex;
  align-items: center;
  gap: 40px;
  animation: hfmlMarqueeRightToLeft 50s linear infinite;
  will-change: transform;
}

.hf-watermark-text {
  font-family: var(--hf-font-heading);
  font-size: clamp(7rem, 15vw, 15rem);
  font-weight: 900;
  letter-spacing: 0.12em;
  color: transparent;
  -webkit-text-stroke: 2px rgba(5, 120, 55, 0.07);
  text-transform: uppercase;
  line-height: 1;
  display: inline-block;
}

.hf-watermark-dot {
  font-size: clamp(3rem, 6vw, 6rem);
  color: rgba(16, 185, 129, 0.15);
  line-height: 1;
}

@keyframes hfmlMarqueeRightToLeft {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Slick List padding to prevent card and badge clipping */
.hf-section-pricing .slick-list {
  padding: 25px 0 !important;
  overflow: hidden;
}

.hf-section-pricing .slick-track {
  display: flex !important;
  align-items: stretch;
}

.hf-section-pricing .slick-slide {
  height: auto !important;
  outline: none;
}

.hf-section-pricing .slick-slide > div {
  height: 100%;
}

/* Slider Controls Header Container */
.hf-pricing-controls-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
}

.hf-slider-arrow-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ffffff;
  border: 1.5px solid var(--hf-border);
  color: var(--hf-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.25s ease;
  cursor: pointer;
  outline: none !important;
}

.hf-slider-arrow-btn:hover {
  background: var(--hf-primary);
  color: #ffffff;
  border-color: var(--hf-primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(5, 120, 55, 0.25);
}

/* Modern Smart & Elegant Plan Cards */
.hf-plan-card {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1.5px solid var(--hf-border-light);
  border-radius: var(--hf-radius-xl);
  padding: 32px 26px 28px 26px;
  position: relative;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  height: 100%;
  z-index: 2;
}

.hf-plan-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(5, 120, 55, 0.12);
  border-color: rgba(5, 120, 55, 0.3);
}

/* Specific Plan Accents */
.hf-plan-card.diamond-tier {
  border: 2px solid var(--hf-primary);
  background: linear-gradient(180deg, rgba(240, 253, 244, 0.9) 0%, #ffffff 28%);
  box-shadow: 0 16px 45px rgba(5, 120, 55, 0.14);
}

.hf-plan-card.diamond-tier:hover {
  box-shadow: 0 24px 60px rgba(5, 120, 55, 0.22);
}

/* Header & Badges */
.hf-plan-header {
  margin-bottom: 20px;
  text-align: left;
}

.hf-plan-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.hf-plan-pill.platinum { background: #f1f5f9; color: #475569; border: 1px solid #cbd5e1; }
.hf-plan-pill.diamond { background: linear-gradient(135deg, var(--hf-primary), #10b981); color: #ffffff; box-shadow: 0 4px 12px rgba(5, 120, 55, 0.28); }
.hf-plan-pill.gold { background: #fef3c7; color: #b45309; border: 1px solid #fde68a; }
.hf-plan-pill.silver { background: #e0f2fe; color: #0369a1; border: 1px solid #bae6fd; }
.hf-plan-pill.executive { background: #f8fafc; color: #334155; border: 1px solid #e2e8f0; }

.hf-plan-name {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--hf-navy);
  margin-bottom: 4px;
  line-height: 1.2;
}

.hf-plan-tagline {
  font-size: 13px;
  color: var(--hf-slate-light);
  margin-bottom: 16px;
  font-weight: 500;
}

/* Price Formatting */
.hf-plan-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 14px;
}

.hf-plan-symbol {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--hf-primary);
}

.hf-plan-amount {
  font-size: 2.35rem;
  font-weight: 800;
  color: var(--hf-navy);
  letter-spacing: -0.03em;
  line-height: 1;
}

.hf-plan-duration {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--hf-slate-light);
  margin-left: 4px;
}

.hf-plan-highlight-bar {
  background: rgba(5, 120, 55, 0.06);
  border: 1px solid rgba(5, 120, 55, 0.12);
  border-radius: var(--hf-radius-sm);
  padding: 8px 12px;
  font-size: 12.5px;
  color: var(--hf-primary-dark);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.hf-plan-divider {
  height: 1px;
  background: var(--hf-border-light);
  margin: 18px 0;
}

/* Clean, Aligned Features List */
.hf-plan-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  flex-grow: 1;
}

.hf-plan-feature-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(148, 163, 184, 0.18);
  gap: 8px;
}

.hf-plan-feature-row:last-child {
  border-bottom: none;
}

.hf-feature-left {
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
  flex-grow: 1;
}

.hf-feature-icon-circle {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.15);
  color: var(--hf-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10.5px;
}

.hf-feature-text {
  font-size: 13.5px;
  color: #334155;
  font-weight: 500;
  line-height: 1.35;
}

.hf-feature-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 12px;
  background: #f1f5f9;
  color: #475569;
  white-space: nowrap;
}

.diamond-tier .hf-feature-badge {
  background: #ecfdf5;
  color: var(--hf-primary);
}

/* Plan Action Button */
.hf-plan-footer {
  margin-top: auto;
  padding-top: 10px;
}

.hf-btn-plan-action {
  width: 100%;
  background: #f1f5f9;
  color: var(--hf-navy) !important;
  font-weight: 700;
  font-size: 14px;
  padding: 13px 20px;
  border-radius: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none !important;
  transition: all 0.25s ease;
  border: 1px solid transparent;
}

.hf-btn-plan-action:hover {
  background: var(--hf-primary);
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(5, 120, 55, 0.25);
}

.diamond-tier .hf-btn-plan-action {
  background: linear-gradient(135deg, var(--hf-primary) 0%, #10b981 100%);
  color: #ffffff !important;
  box-shadow: 0 8px 22px rgba(5, 120, 55, 0.28);
}

.diamond-tier .hf-btn-plan-action:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(5, 120, 55, 0.38);
}

/* Slick Dots Styling in Pricing Section */
.hf-section-pricing .slick-dots {
  position: static;
  margin-top: 25px;
}

.hf-section-pricing .slick-dots li {
  margin: 0 4px;
}

.hf-section-pricing .slick-dots li button:before {
  font-size: 10px;
  color: rgba(5, 120, 55, 0.25);
  opacity: 1;
}

.hf-section-pricing .slick-dots li.slick-active button:before {
  color: var(--hf-primary);
  font-size: 13px;
}


/* Testimonials Redesign */
.hf-testimonial-card {
  background: #ffffff;
  border: 1px solid var(--hf-border-light);
  border-radius: var(--hf-radius-xl);
  padding: 35px;
  box-shadow: var(--hf-shadow-sm);
  margin: 15px 12px;
  transition: all 0.3s ease;
  position: relative;
}
.hf-testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--hf-shadow-md);
  border-color: rgba(5, 120, 55, 0.25);
}
.hf-stars-row {
  color: #f59e0b;
  font-size: 15px;
  margin-bottom: 16px;
}
.hf-testimonial-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #334155;
  font-style: italic;
  margin-bottom: 24px;
}
.hf-author-box {
  display: flex;
  align-items: center;
  gap: 14px;
}
.hf-author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--hf-primary), #10b981);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
}
.hf-author-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--hf-navy);
  margin: 0;
}
.hf-author-role {
  font-size: 12.5px;
  color: var(--hf-primary);
  font-weight: 600;
  margin: 0;
}

/* Modern Contact Section */
.hf-contact-wrap {
  background: #ffffff;
  border-radius: var(--hf-radius-xl);
  border: 1px solid var(--hf-border-light);
  overflow: hidden;
  box-shadow: var(--hf-shadow-lg);
}
.hf-contact-info-panel {
  background: linear-gradient(145deg, var(--hf-navy) 0%, var(--hf-primary-dark) 100%);
  color: #ffffff;
  padding: 50px 40px;
  height: 100%;
}
.hf-contact-tile {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  align-items: flex-start;
}
.hf-tile-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #34d399;
}
.hf-contact-form-panel {
  padding: 50px 45px;
}
.hf-form-floating {
  position: relative;
  margin-bottom: 20px;
}
.hf-form-control {
  width: 100%;
  padding: 14px 18px;
  border-radius: var(--hf-radius-md);
  border: 1.5px solid #e2e8f0;
  background: #f8fafc;
  font-size: 14.5px;
  color: var(--hf-navy);
  transition: all 0.25s ease;
  outline: none;
}
.hf-form-control:focus {
  background: #ffffff;
  border-color: var(--hf-primary);
  box-shadow: 0 0 0 4px rgba(5, 120, 55, 0.12);
}
.hf-btn-submit {
  background: linear-gradient(135deg, var(--hf-primary) 0%, #10b981 100%);
  color: #ffffff;
  border: none;
  padding: 15px 36px;
  border-radius: 40px;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 8px 20px rgba(5, 120, 55, 0.28);
  transition: all 0.3s ease;
}
.hf-btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(5, 120, 55, 0.38);
}

/* Modern Dark Footer */
footer.hf-footer,
.wrapper footer.hf-footer,
.hf-footer {
  background: var(--hf-navy) !important;
  color: #94a3b8 !important;
  padding: 70px 0 20px 0 !important;
  font-size: 14px !important;
  border: none !important;
  position: relative !important;
  bottom: auto !important;
}
footer.hf-footer .container,
.wrapper footer.hf-footer .container {
  max-width: 1540px !important;
  width: 96% !important;
}
footer.hf-footer h5,
.wrapper footer.hf-footer h5,
.hf-footer h5 {
  color: #ffffff !important;
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  margin-bottom: 20px !important;
}
footer.hf-footer ul,
.wrapper footer.hf-footer ul,
.hf-footer ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
footer.hf-footer ul li,
.wrapper footer.hf-footer ul li,
.hf-footer ul li {
  margin-bottom: 12px !important;
  padding: 0 !important;
}
footer.hf-footer ul li::before,
.wrapper footer.hf-footer ul li::before,
.hf-footer ul li::before {
  content: none !important;
  display: none !important;
}
footer.hf-footer ul li a,
.wrapper footer.hf-footer ul li a,
.hf-footer ul li a {
  color: #cbd5e1 !important;
  text-decoration: none !important;
  transition: all 0.2s ease !important;
  display: inline-block !important;
}
footer.hf-footer ul li a:hover,
.wrapper footer.hf-footer ul li a:hover,
.hf-footer ul li a:hover {
  color: #34d399 !important;
  padding-left: 5px !important;
}
footer.hf-footer .hf-footer-social,
.wrapper footer.hf-footer .hf-footer-social,
.hf-footer-social {
  display: flex !important;
  gap: 12px !important;
  margin-top: 18px !important;
}
footer.hf-footer .hf-footer-social a,
.wrapper footer.hf-footer .hf-footer-social a,
.hf-footer-social a {
  width: 38px !important;
  height: 38px !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.08) !important;
  color: #ffffff !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 15px !important;
  transition: all 0.25s ease !important;
  text-decoration: none !important;
}
footer.hf-footer .hf-footer-social a:hover,
.wrapper footer.hf-footer .hf-footer-social a:hover,
.hf-footer-social a:hover {
  background: var(--hf-primary) !important;
  transform: translateY(-3px) !important;
}
footer.hf-footer .hf-footer-bottom,
.wrapper footer.hf-footer .hf-footer-bottom,
.hf-footer-bottom {
  margin-top: 50px !important;
  padding-top: 25px !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  text-align: center !important;
  font-size: 13.5px !important;
}

/* ==========================================================================
   Responsive Design System: Mobile & iPhone SE Polish
   ========================================================================== */

/* Tablet & Smaller Desktops */
@media (max-width: 991px) {
  .hf-navbar {
    padding: 8px 0;
  }
  .hf-brand-logo {
    max-height: 44px;
  }
  .navbar-toggler {
    padding: 6px 10px;
    border-radius: 8px;
    border: 1px solid var(--hf-border);
    background: #ffffff;
    font-size: 14px;
    outline: none !important;
  }
  .navbar-collapse {
    background: #ffffff;
    border-radius: var(--hf-radius-md);
    padding: 16px;
    margin-top: 12px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    border: 1px solid var(--hf-border-light);
  }
  .hf-btn-header-result, .hf-btn-header-book {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  .hf-hero-title { font-size: 2.5rem; }
  .hf-hero-stats { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .hf-hero-visual { margin-top: 36px; }
  .hf-float-card { display: none; }
}

/* Mobile Devices (Under 768px) */
@media (max-width: 767px) {
  .hf-hero {
    padding: 30px 0 35px 0;
  }
  .hf-hero-title {
    font-size: 1.95rem;
    line-height: 1.2;
    margin-bottom: 12px;
  }
  .hf-script-title {
    font-size: 1.45em;
  }
  .hf-stethoscope-cursor {
    width: 60px;
    height: 60px;
    margin-bottom: -12px;
  }
  .hf-stethoscope-cursor.is-settled {
    transform: scale(1.25);
  }
  .hf-script-swash {
    height: 12px;
    bottom: -3px;
  }
  .hf-hero-subtitle {
    font-size: 14px;
    line-height: 1.55;
    margin-bottom: 22px;
  }
  .hf-hero-actions {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 25px;
  }
  .hf-btn-lg-primary, .hf-btn-lg-secondary {
    width: 100%;
    justify-content: center;
    padding: 13px 20px;
    font-size: 14.5px;
  }
  .hf-hero-slide-img {
    height: 250px;
  }
  .hf-contact-info-panel, .hf-contact-form-panel {
    padding: 30px 20px;
  }
  .hf-verify-banner {
    padding: 30px 20px;
    border-radius: 16px;
    text-align: center;
  }
  .hf-verify-input-group {
    flex-direction: column;
    background: transparent;
    box-shadow: none;
    gap: 8px;
  }
  .hf-verify-input {
    background: #ffffff;
    border-radius: 30px;
    margin-bottom: 0;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  }
  .hf-verify-btn {
    width: 100%;
    border-radius: 30px;
    padding: 12px 20px;
  }
  .hf-section {
    padding: 55px 0;
  }
  .hf-about-box {
    padding: 25px 18px;
  }
  .hf-about-visual img {
    height: 250px;
  }
}

/* iPhone SE & Small Mobile Screens (375px & under) */
@media (max-width: 480px) {
  .hf-navbar {
    padding: 8px 0;
  }
  .hf-navbar .container {
    padding-left: 20px;
    padding-right: 16px;
  }
  .hf-brand-logo {
    max-height: 40px;
  }
  .hf-hero {
    padding: 20px 0 28px 0;
    text-align: center;
  }
  .hf-hero-badge {
    font-size: 11px;
    padding: 5px 14px;
    margin-bottom: 14px;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
  }
  .hf-hero-title {
    font-size: 1.65rem;
    line-height: 1.22;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
  }
  .hf-hero-subtitle {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 18px;
    padding: 0 4px;
    color: #475569;
  }
  .hf-hero-actions {
    display: flex;
    flex-direction: row;
    gap: 8px;
    margin-bottom: 20px;
    padding: 0;
    justify-content: center;
  }
  .hf-btn-lg-primary {
    flex: 1 1 50%;
    padding: 11px 10px;
    font-size: 13px;
    font-weight: 700;
    border-radius: 30px;
    justify-content: center;
    white-space: nowrap;
    text-align: center;
    box-shadow: 0 4px 14px rgba(5, 120, 55, 0.25);
  }
  .hf-btn-lg-secondary {
    flex: 1 1 50%;
    padding: 11px 10px;
    font-size: 13px;
    font-weight: 700;
    border-radius: 30px;
    justify-content: center;
    white-space: nowrap;
    text-align: center;
    border: 1.5px solid rgba(5, 120, 55, 0.3);
  }
  .hf-hero-visual {
    margin-top: 10px;
    margin-bottom: 15px;
  }
  .hf-hero-carousel-wrap {
    border-radius: 16px;
    border: 3px solid #ffffff;
    box-shadow: 0 10px 25px rgba(5, 120, 55, 0.12);
  }
  .hf-hero-slide-img {
    height: 195px;
  }
  .hf-slide-caption {
    padding: 12px 14px;
  }
  .hf-slide-caption h5 {
    font-size: 13px;
  }
  .hf-slide-tag {
    font-size: 9.5px;
  }

  /* Compact Stats Bar on iPhone SE */
  .hf-hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    padding-top: 14px;
    margin-top: 8px;
  }
  .hf-stat-item {
    background: #ffffff;
    padding: 8px 6px;
    border-radius: 10px;
    border: 1px solid var(--hf-border-light);
    box-shadow: 0 2px 6px rgba(0,0,0,0.02);
  }
  .hf-stat-item h4 {
    font-size: 1.25rem;
    margin-bottom: 0;
  }
  .hf-stat-item p {
    font-size: 10px;
    letter-spacing: 0.3px;
  }

  /* Quick Action Cards */
  .hf-quick-actions {
    margin-top: 0;
    padding: 15px 0;
  }
  .hf-action-card {
    padding: 16px 14px;
    margin-bottom: 10px;
    border-radius: 14px;
  }
  .hf-action-icon {
    width: 38px;
    height: 38px;
    font-size: 16px;
    margin-bottom: 8px;
  }
  .hf-action-title {
    font-size: 1rem;
    margin-bottom: 4px;
  }
  .hf-action-desc {
    font-size: 12px;
    line-height: 1.45;
    margin-bottom: 8px;
  }

  /* Section Headers on iPhone SE */
  .hf-section {
    padding: 45px 0;
  }
  .hf-section-header {
    margin-bottom: 25px;
    padding: 0 4px;
  }
  .hf-section-tag {
    font-size: 11px;
    letter-spacing: 1px;
    margin-bottom: 6px;
  }
  .hf-section-title {
    font-size: 1.5rem;
    line-height: 1.22;
    margin-bottom: 10px;
  }
  .hf-section-subtitle {
    font-size: 12.5px;
    line-height: 1.5;
  }

  /* Plan Cards on iPhone SE */
  .hf-section-pricing {
    padding: 50px 0 35px 0;
  }
  .hf-plan-card {
    padding: 22px 16px 18px 16px;
    border-radius: 16px;
  }
  .hf-plan-name {
    font-size: 1.25rem;
  }
  .hf-plan-amount {
    font-size: 1.8rem;
  }
  .hf-plan-symbol {
    font-size: 1.2rem;
  }
  .hf-feature-text {
    font-size: 12px;
  }
  .hf-feature-badge {
    font-size: 9.5px;
    padding: 2px 6px;
  }
  .hf-watermark-text {
    font-size: 4.5rem;
    -webkit-text-stroke: 1px rgba(5, 120, 55, 0.05);
  }
}

