:root {
  --hf-bg: #ede6df;
  --hf-surface: #fffaf6;
  --hf-surface-variant: #f3ebe3;
  --hf-card: #fffaf6;
  --hf-text: #1a100c;
  --hf-muted: #3d302a;
  --hf-border: rgba(26, 16, 12, 0.10);
  --hf-primary: #b71c1c;
  --hf-primary-dark: #7f0000;
  --hf-primary-light: #e65100;
  --hf-primary-container: #ffccbc;
  --hf-on-primary: #ffffff;
  --hf-nav-bg: #140e0c;
  --hf-nav-text: #f5ebe4;
  --hf-hero-deep: #1a0f0c;
  --hf-accent-gold: #ff8f00;
  --hf-navy: #1c1b1f;
  --hf-blue: #e65100;
  --hf-green: #f97316;
  --hf-green-2: #fb923c;
  --hf-cyan: #ea580c;
  --hf-violet: #c2410c;
  --hf-radius-xl: 28px;
  --hf-radius-lg: 16px;
  --hf-radius-md: 12px;
  --md-elevation-1: 0 1px 2px rgba(0,0,0,.06), 0 1px 3px rgba(0,0,0,.1);
  --md-elevation-2: 0 2px 6px rgba(0,0,0,.08), 0 4px 12px rgba(0,0,0,.06);
  --md-elevation-3: 0 4px 8px rgba(0,0,0,.08), 0 8px 24px rgba(0,0,0,.08);
}

html {
  font-size: 14px;
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  width: 100%;
  overflow-x: clip;
}

@media (min-width: 768px) {
  html { font-size: 16px; }
}

body {
  background: var(--hf-bg);
  color: var(--hf-text);
  font-family: var(--hf-font-sans);
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

* {
  box-sizing: border-box;
  scrollbar-width: thin;
  scrollbar-color: rgba(15, 23, 42, 0.28) transparent;
}

img,
svg,
video,
canvas {
  max-width: 100%;
}

.hf-main,
.hf-main > * {
  width: 100%;
  max-width: 100%;
}

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb {
  background: rgba(15, 23, 42, 0.25);
  border-radius: 999px;
  border: 3px solid transparent;
  background-clip: content-box;
}
::-webkit-scrollbar-thumb:hover { background: rgba(15, 23, 42, 0.35); }

a { color: inherit; }
a:hover { color: inherit; }

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid rgba(249, 115, 22, 0.50);
  outline-offset: 2px;
}

.hf-main {
  flex: 1;
  overflow-x: clip;
}

.material-symbols-rounded.hf-mi {
  font-size: 20px;
  line-height: 1;
}

@media (max-width: 1023.98px) {
  .hf-body {
    padding-bottom: calc(150px + env(safe-area-inset-bottom, 0px));
  }
}

.hf-nav {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--hf-border);
  box-shadow: var(--md-elevation-1);
  position: sticky;
  top: 0;
  z-index: 1030;
  transition: background .2s ease, box-shadow .2s ease;
}

.hf-nav.hf-nav--scrolled {
  background: rgba(255, 246, 240, 0.96);
  box-shadow: 0 18px 44px rgba(90, 35, 12, 0.12);
}

.hf-brand {
  gap: 10px;
  display: inline-flex;
  align-items: center;
}

.hf-brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  padding: 0;
  background: transparent;
  box-shadow: 0 10px 22px rgba(230, 57, 70, 0.22);
}

.hf-brand-mark__img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: inherit;
}

.hf-brand-name {
  font-weight: 950;
  letter-spacing: -0.02em;
}

.hf-brand-accent {
  background: linear-gradient(90deg, var(--hf-green-2), var(--hf-cyan), var(--hf-blue));
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: hf-gradient 7s ease infinite;
}

.hf-brand-sub {
  color: var(--hf-muted);
  font-size: 0.78rem;
}

.hf-navlinks .nav-link {
  font-weight: 600;
  color: rgba(15, 23, 42, 0.78);
}

.hf-navlinks .nav-link:hover {
  color: rgba(15, 23, 42, 1);
}

.hf-pill {
  border: 1px solid var(--hf-border);
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.92);
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 24px rgba(2, 6, 23, 0.06);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
}

.hf-pill:hover {
  transform: translateY(-1px);
  border-color: rgba(239, 68, 68, 0.18);
  box-shadow: 0 16px 36px rgba(2, 6, 23, 0.10);
}

.hf-pill-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--hf-green);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.16);
}

.hf-cta {
  border-radius: 12px;
  padding: 10px 14px;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.98), rgba(239, 68, 68, 0.95), rgba(244, 63, 94, 0.92));
  border: 1px solid rgba(239, 68, 68, 0.26);
  color: rgba(255, 255, 255, 0.98);
  font-weight: 950;
  box-shadow: 0 16px 40px rgba(239, 68, 68, 0.18);
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease, filter .15s ease;
}

.hf-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 54px rgba(239, 68, 68, 0.26);
  filter: saturate(1.06);
}

.hf-navlink {
  position: relative;
  transition: color .15s ease;
}

.hf-navlink::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(249, 115, 22, 0.85), rgba(239, 68, 68, 0.85), rgba(244, 63, 94, 0.85));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
  opacity: 0.9;
}

.hf-navlink:hover::after {
  transform: scaleX(1);
}

.hf-mobile-backdrop {
  background:
    radial-gradient(420px 240px at 100% 10%, rgba(239, 68, 68, 0.12), transparent 60%),
    radial-gradient(320px 200px at 0% 100%, rgba(249, 115, 22, 0.12), transparent 60%),
    rgba(148, 163, 184, 0.32);
  backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity .18s ease-out;
}

#hfMobileNav.is-open .hf-mobile-backdrop {
  opacity: 1;
}

.hf-mobile-sheet {
  width: min(90vw, 360px);
  max-width: 100%;
  height: 100dvh;
  border-left: 1px solid rgba(255, 255, 255, 0.72);
  background:
    radial-gradient(380px 220px at 100% 0%, rgba(239, 68, 68, 0.20), transparent 62%),
    radial-gradient(320px 220px at 0% 100%, rgba(249, 115, 22, 0.18), transparent 62%),
    linear-gradient(180deg, rgba(255, 250, 246, 0.99), rgba(255, 239, 230, 0.98));
  box-shadow: -24px 0 56px rgba(90, 35, 12, 0.18);
  backdrop-filter: blur(14px);
  border-radius: 24px 0 0 24px;
  overflow: hidden;
  opacity: 1;
  filter: none;
  transition:
    transform .22s cubic-bezier(.22, 1, .36, 1),
    box-shadow .18s ease-out;
  will-change: transform;
  contain: layout paint style;
  backface-visibility: hidden;
}

.hf-mobile-sheet.is-open,
#hfMobileNav.is-open .hf-mobile-sheet {
  box-shadow: -24px 0 64px rgba(15, 23, 42, 0.20);
}

.hf-mobile-sheet::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.65);
  pointer-events: none;
}

.hf-mobile-sheet::after {
  content: "";
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 58px;
  height: 4px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.52);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.55);
  pointer-events: none;
}

.hf-mobile-sheet-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: calc(14px + env(safe-area-inset-top, 0px)) 14px 12px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 249, 245, 0.58)),
    radial-gradient(220px 120px at 0% 0%, rgba(249, 115, 22, 0.14), transparent 70%),
    radial-gradient(220px 120px at 100% 0%, rgba(239, 68, 68, 0.12), transparent 70%);
  position: sticky;
  top: 0;
  z-index: 2;
}

.hf-mobile-sheet-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hf-brand-mark--mobile {
  box-shadow: 0 12px 26px rgba(239, 68, 68, 0.18);
}

.hf-mobile-sheet-title {
  font-size: 0.98rem;
  line-height: 1.1;
  font-weight: 950;
  color: rgba(15, 23, 42, 0.96);
}

.hf-mobile-sheet-sub {
  margin-top: 4px;
  font-size: 0.78rem;
  font-weight: 750;
  color: rgba(100, 116, 139, 0.86);
}

.hf-mobile-sheet-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 32px;
  padding: 6px 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.14), rgba(239, 68, 68, 0.10));
  border: 1px solid rgba(239, 68, 68, 0.20);
  color: rgba(154, 52, 18, 0.96);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(239, 68, 68, 0.10);
}

.hf-mobile-close {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.20);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 244, 237, 0.96));
  color: rgba(15, 23, 42, 0.86);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}

.hf-mobile-close:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.10);
}

.hf-mobile-sheet-body {
  display: grid;
  gap: 6px;
  padding: 10px 10px calc(16px + env(safe-area-inset-bottom, 0px));
  overflow-y: auto;
  min-height: 0;
  height: calc(100dvh - 66px - env(safe-area-inset-top, 0px));
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  align-content: start;
}

.hf-mobile-panel-card {
  border-radius: 18px;
  border: 1px solid rgba(249, 115, 22, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 248, 243, 0.98));
  padding: 9px;
  box-shadow: 0 10px 24px rgba(90, 35, 12, 0.06);
  backdrop-filter: blur(10px);
}

.hf-mobile-panel-card + .hf-mobile-panel-card {
  margin-top: 0;
}

.hf-mobile-panel-card--accent {
  background: linear-gradient(135deg, rgba(255, 245, 238, 0.99), rgba(255, 237, 229, 0.98), rgba(255, 250, 246, 0.98));
}

.hf-mobile-panel-label {
  margin-bottom: 6px;
  color: rgba(194, 65, 12, 0.86);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hf-mobile-shortcuts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
}

.hf-mobile-shortcut {
  display: grid;
  justify-items: center;
  gap: 5px;
  min-width: 0;
  padding: 9px 5px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 249, 245, 0.98));
  border: 1px solid rgba(249, 115, 22, 0.12);
  color: rgba(15, 23, 42, 0.88);
  text-decoration: none;
  font-size: 0.7rem;
  font-weight: 850;
  text-align: center;
  box-shadow: 0 8px 18px rgba(90, 35, 12, 0.05);
  transition: transform .14s ease-out, border-color .14s ease-out, background .14s ease-out, box-shadow .14s ease-out;
}

.hf-mobile-shortcut .hf-mi {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 237, 213, 0.98), rgba(254, 215, 170, 0.98), rgba(252, 165, 165, 0.96));
  color: rgba(124, 45, 18, 0.94);
  box-shadow: 0 8px 18px rgba(239, 68, 68, 0.12);
}

.hf-mobile-shortcut:hover,
.hf-mobile-shortcut.is-active {
  transform: translateY(-1px);
  border-color: rgba(239, 68, 68, 0.24);
  background: linear-gradient(135deg, rgba(255, 245, 238, 0.98), rgba(255, 236, 229, 0.98), rgba(255, 255, 255, 0.98));
  box-shadow: 0 10px 20px rgba(239, 68, 68, 0.08);
}

.hf-mobile-shortcut.is-active .hf-mi {
  box-shadow: 0 0 0 1px rgba(249, 115, 22, 0.18), 0 10px 20px rgba(239, 68, 68, 0.16);
}

.hf-mnav-item {
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 16px;
  padding: 9px;
  font-weight: 850;
  color: rgba(15, 23, 42, 0.92);
  text-decoration: none;
  border: 1px solid rgba(249, 115, 22, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(255, 248, 243, 0.98));
  box-shadow: 0 8px 18px rgba(90, 35, 12, 0.05);
  transition: transform .14s ease-out, background .14s ease-out, border-color .14s ease-out, box-shadow .14s ease-out;
}

.hf-mnav-item:hover {
  background: linear-gradient(135deg, rgba(255, 244, 237, 0.98), rgba(255, 236, 229, 0.98), rgba(255, 255, 255, 0.98));
  border-color: rgba(239, 68, 68, 0.24);
  transform: translateY(-1px);
  box-shadow: 0 12px 22px rgba(239, 68, 68, 0.08);
}

.hf-mnav-item.is-active {
  background: linear-gradient(135deg, rgba(255, 243, 233, 0.98), rgba(255, 231, 223, 0.98), rgba(255, 255, 255, 0.98));
  border-color: rgba(239, 68, 68, 0.28);
  box-shadow: 0 12px 24px rgba(239, 68, 68, 0.10);
}

.hf-mnav-icon {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 237, 213, 0.98), rgba(254, 215, 170, 0.98), rgba(252, 165, 165, 0.96));
  color: rgba(124, 45, 18, 0.94);
  box-shadow: 0 8px 18px rgba(239, 68, 68, 0.12);
  position: relative;
  overflow: hidden;
}

.hf-mnav-copy {
  display: grid;
  min-width: 0;
}

.hf-mnav-title {
  font-size: 0.84rem;
  line-height: 1.1;
  font-weight: 900;
  color: rgba(15, 23, 42, 0.94);
}

.hf-mnav-sub {
  margin-top: 2px;
  color: rgba(120, 89, 81, 0.92);
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.2;
}

.hf-mnav-arrow {
  color: rgba(234, 88, 12, 0.72);
  margin-left: auto;
}

.hf-mnav-item.is-active .hf-mnav-icon {
  box-shadow: 0 0 0 1px rgba(251, 146, 60, 0.20), 0 10px 20px rgba(239, 68, 68, 0.12);
}

.hf-mobile-panel-card--spotlight {
  padding: 14px 12px;
  background:
    radial-gradient(220px 140px at 100% 0%, rgba(239, 68, 68, 0.16), transparent 65%),
    linear-gradient(135deg, rgba(255, 244, 237, 0.98), rgba(255, 232, 224, 0.98), rgba(255, 250, 246, 0.98));
  border-color: rgba(239, 68, 68, 0.16);
}

.hf-mobile-spotlight-label {
  color: rgba(194, 65, 12, 0.84);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hf-mobile-spotlight-value {
  margin-top: 6px;
  color: rgba(42, 15, 11, 0.94);
  font-size: 0.98rem;
  font-weight: 900;
  line-height: 1.3;
}

.hf-mobile-spotlight-sub {
  margin-top: 6px;
  color: rgba(124, 94, 87, 0.92);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.45;
}

.hf-mobile-action {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 100%;
  min-height: 40px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 900;
  border: 1px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
  font-size: 0.82rem;
}

.hf-mobile-action--secondary {
  background: rgba(255, 255, 255, 0.98);
  border-color: rgba(226, 232, 240, 0.96);
  color: rgba(15, 23, 42, 0.88);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.04);
}

.hf-mobile-action--primary {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.98), rgba(239, 68, 68, 0.95), rgba(244, 63, 94, 0.92));
  color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 12px 24px rgba(239, 68, 68, 0.14);
}

.hf-mobile-action:hover {
  transform: translateY(-1px);
}

@media (max-width: 575.98px) {
  .hf-mobile-sheet {
    width: min(100vw, 100%);
    border-radius: 20px 0 0 20px;
  }
  .hf-mobile-sheet-top {
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
  }
  .hf-mobile-sheet-badge {
    order: 3;
    width: 100%;
    justify-content: center;
  }
  .hf-mobile-shortcuts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .hf-mobile-shortcut {
    padding: 8px 4px;
    font-size: 0.66rem;
  }
  .hf-mnav-item {
    padding: 8px;
  }
  .hf-mnav-icon {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }
  .hf-mnav-title {
    font-size: 0.8rem;
  }
  .hf-mnav-sub {
    font-size: 0.66rem;
  }
  .hf-mobile-action {
    min-height: 38px;
    font-size: 0.78rem;
  }
}

.hf-reveal {
  opacity: 0;
  transform: translateY(14px);
}

.hf-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2, .8, .2, 1);
}

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hf-brand-accent { animation: none; }
  .hf-hero-accent,
  .hf-text-shimmer::after,
  .hf-pay-bubble-ring,
  .hf-hero-float-card { animation: none; }
  .hf-reveal { opacity: 1; transform: none; }
  .hf-reveal.is-visible { transition: none; }
  .hf-mnav-item, .hf-cta, .hf-navlink::after, .hf-bottomtab, .hf-bottomtab-ic,
  .hf-mobile-sheet, .hf-mobile-backdrop, .hf-mobile-shortcut, .hf-mobile-close { transition: none; }
}

.hf-modal {
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: var(--hf-radius-lg);
}

.hf-modal-hint {
  color: var(--hf-muted);
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.hf-chip {
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #fff;
  font-weight: 650;
  padding: 8px 12px;
}

.hf-chip:hover {
  background: rgba(249, 115, 22, 0.08);
}

.hf-hero {
  padding: 0;
  position: relative;
  width: 100%;
}

.hf-hero-shell {
  width: 100%;
  background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 40%, #fff8e1 100%);
  border-bottom: 1px solid var(--hf-border);
}

.hf-hero-inner {
  padding-top: clamp(2rem, 5vw, 3.5rem);
  padding-bottom: clamp(2rem, 5vw, 3rem);
}

.hf-hero-content {
  max-width: 640px;
}

.hf-hero-eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--hf-primary);
  margin-bottom: 0.75rem;
}

.hf-hero-title {
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--hf-text);
  margin: 0 0 0.75rem;
}

.hf-hero-lead {
  font-size: 1.0625rem;
  line-height: 1.5;
  color: var(--hf-muted);
  margin: 0 0 1.5rem;
  max-width: 42ch;
}

.hf-hero-search {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
  margin-bottom: 1.25rem;
}

@media (min-width: 640px) {
  .hf-hero-search {
    flex-direction: row;
    align-items: center;
    padding: 12px 12px 12px 16px;
  }
}

.hf-hero-search-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 0;
}

.hf-hero-select {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  font-size: 1rem;
  font-weight: 500;
  color: var(--hf-text);
  padding: 8px 0;
  appearance: none;
  cursor: pointer;
}

.hf-hero-cta {
  flex-shrink: 0;
}

.hf-hero-stats-inline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  font-size: 0.875rem;
  color: var(--hf-muted);
}

.hf-hero-stats-inline strong {
  color: var(--hf-text);
  font-weight: 700;
}

.hf-dot-sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(28, 27, 31, 0.28);
}

/* Material cards & buttons */
.md-card {
  background: var(--hf-surface);
  border-radius: var(--hf-radius-lg);
  border: 1px solid var(--hf-border);
  box-shadow: var(--md-elevation-1);
}

.md-card--interactive {
  cursor: pointer;
  text-align: left;
  width: 100%;
  transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.md-card--interactive:hover {
  box-shadow: var(--md-elevation-2);
  transform: translateY(-2px);
  border-color: rgba(230, 81, 0, 0.2);
}

.md-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 20px;
  border-radius: 999px;
  border: 0;
  font-size: 0.9375rem;
  font-weight: 500;
  cursor: pointer;
  transition: box-shadow 0.2s ease, background 0.2s ease, transform 0.15s ease;
  text-decoration: none;
}

.md-btn-filled {
  background: var(--hf-primary);
  color: var(--hf-on-primary);
  box-shadow: var(--md-elevation-1);
}

.md-btn-filled:hover {
  background: #d84315;
  color: #fff;
  box-shadow: var(--md-elevation-2);
}

.md-btn-text {
  background: transparent;
  color: var(--hf-primary);
  padding: 8px 12px;
  min-height: 40px;
}

.md-btn-text:hover {
  background: rgba(230, 81, 0, 0.08);
}

.md-btn-block {
  width: 100%;
}

.hidden {
  display: none !important;
}

/* Browse flow */
.hf-browse-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.hf-browse-area-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  margin-bottom: 20px;
}

.hf-browse-area-label {
  font-size: 0.875rem;
  color: var(--hf-muted);
  white-space: nowrap;
}

.hf-chips--inline {
  margin-top: 0;
  flex: 1;
}

.hf-chip--filter {
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  font-size: 0.8125rem;
  padding: 6px 14px;
}

.hf-chip--filter.is-active {
  background: var(--hf-primary-container);
  border-color: rgba(230, 81, 0, 0.35);
  color: #bf360c;
  font-weight: 500;
}

.hf-browse-stages {
  position: relative;
  min-height: 280px;
}

.hf-browse-stage {
  opacity: 0;
  transform: translateX(24px);
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.2, 0, 0, 1), transform 0.35s cubic-bezier(0.2, 0, 0, 1);
}

.hf-browse-stage.is-active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.hf-browse-stage[hidden] {
  display: none;
}

.hf-browse-stage.is-exiting {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(-24px);
}

.hf-cat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

@media (min-width: 1024px) {
  .hf-cat-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
}

.hf-cat-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: auto auto;
  gap: 4px 14px;
  padding: 16px;
  align-items: center;
}

.hf-cat-card .hf-cat-ic {
  grid-row: 1 / 3;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--hf-primary-container);
  color: var(--hf-primary);
  display: grid;
  place-items: center;
}

.hf-cat-name {
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--hf-text);
}

.hf-cat-meta {
  grid-column: 2;
  font-size: 0.8125rem;
  color: var(--hf-muted);
  line-height: 1.4;
}

.hf-cat-arrow {
  grid-row: 1 / 3;
  grid-column: 3;
  color: var(--hf-muted);
}

.hf-stage-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.hf-stage-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--hf-primary-container);
  color: var(--hf-primary);
}

.hf-stage-title {
  font-size: 1.25rem;
  font-weight: 500;
  margin: 0;
}

.hf-stage-sub {
  font-size: 0.875rem;
  color: var(--hf-muted);
  margin: 2px 0 0;
}

.hf-provider-list {
  display: grid;
  gap: 12px;
}

@media (min-width: 768px) {
  .hf-provider-list { grid-template-columns: repeat(2, 1fr); }
}

.hf-provider-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  cursor: pointer;
  animation: hf-slide-in 0.4s cubic-bezier(0.2, 0, 0, 1) both;
}

.hf-provider-card:nth-child(2) { animation-delay: 0.05s; }
.hf-provider-card:nth-child(3) { animation-delay: 0.1s; }
.hf-provider-card:nth-child(4) { animation-delay: 0.15s; }
.hf-provider-card:nth-child(5) { animation-delay: 0.2s; }

@keyframes hf-slide-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.hf-provider-photo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.hf-provider-info {
  flex: 1;
  min-width: 0;
}

.hf-provider-name {
  font-weight: 500;
  font-size: 1rem;
  color: var(--hf-text);
}

.hf-provider-meta {
  font-size: 0.8125rem;
  color: var(--hf-muted);
  margin-top: 2px;
}

.hf-provider-rating {
  font-weight: 500;
  color: #e65100;
  font-size: 0.875rem;
  white-space: nowrap;
}

.hf-badge-verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  font-weight: 500;
  color: #2e7d32;
  background: #e8f5e9;
  padding: 4px 8px;
  border-radius: 999px;
}

.hf-provider-detail {
  overflow: hidden;
  animation: hf-fade-up 0.4s cubic-bezier(0.2, 0, 0, 1);
}

@keyframes hf-fade-up {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.hf-provider-detail-hero {
  display: flex;
  gap: 16px;
  padding: 20px;
  border-bottom: 1px solid var(--hf-border);
}

.hf-provider-detail-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.hf-provider-detail-name {
  font-size: 1.375rem;
  font-weight: 500;
  margin: 0;
}

.hf-provider-detail-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.hf-provider-detail-cat {
  font-size: 0.875rem;
  color: var(--hf-muted);
  margin: 4px 0 8px;
}

.hf-provider-detail-body {
  padding: 20px;
}

.hf-provider-detail-bio {
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--hf-muted);
  margin: 0 0 20px;
}

.hf-detail-grid {
  display: grid;
  gap: 12px;
  margin-bottom: 20px;
}

@media (min-width: 640px) {
  .hf-detail-grid { grid-template-columns: repeat(3, 1fr); }
}

.hf-detail-item {
  display: flex;
  gap: 12px;
  padding: 12px;
  background: var(--hf-surface-variant);
  border-radius: var(--hf-radius-md);
}

.hf-detail-item .hf-mi {
  color: var(--hf-primary);
}

.hf-detail-label {
  display: block;
  font-size: 0.75rem;
  color: var(--hf-muted);
  margin-bottom: 2px;
}

.hf-detail-value {
  display: block;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--hf-text);
}

.hf-detail-phone {
  color: var(--hf-primary);
  text-decoration: none;
}

.hf-detail-phone:hover {
  text-decoration: underline;
}

.hf-detail-areas {
  margin-bottom: 20px;
}

.hf-detail-areas .hf-detail-label {
  margin-bottom: 10px;
}

.hf-steps-minimal {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

@media (min-width: 640px) {
  .hf-steps-minimal { grid-template-columns: repeat(3, 1fr); }
}

.hf-step-min {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
}

.hf-step-min-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--hf-primary-container);
  color: var(--hf-primary);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.9375rem;
  flex-shrink: 0;
}

.hf-step-min-title {
  font-weight: 500;
  font-size: 1rem;
}

.hf-review-city {
  font-size: 0.8125rem;
}

.hf-review-rating {
  margin-left: auto;
  font-weight: 500;
  color: #e65100;
  white-space: nowrap;
}

.hf-review-text {
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--hf-muted);
  margin: 12px 0 0;
}

.hf-hero-shell-old-placeholder {
  position: relative;
}

.hf-hero-backdrop {
  position: absolute;
  inset: 6px 12px auto;
  height: min(100%, 620px);
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(255, 250, 246, 0.92), rgba(255, 243, 236, 0.82)),
    linear-gradient(135deg, rgba(249, 115, 22, 0.05), rgba(239, 68, 68, 0.06));
  border: 1px solid rgba(249, 115, 22, 0.10);
  box-shadow: 0 30px 80px rgba(90, 35, 12, 0.08);
  overflow: hidden;
  pointer-events: none;
}

.hf-hero-backdrop-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(249, 115, 22, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(239, 68, 68, 0.05) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 92%);
}

.hf-hero-backdrop-blur {
  position: absolute;
  border-radius: 999px;
  filter: blur(12px);
  opacity: 0.8;
}

.hf-hero-backdrop-blur--one {
  width: 320px;
  height: 320px;
  top: -80px;
  right: 7%;
  background: rgba(239, 68, 68, 0.14);
}

.hf-hero-backdrop-blur--two {
  width: 260px;
  height: 260px;
  left: 4%;
  bottom: 8%;
  background: rgba(249, 115, 22, 0.14);
}

.hf-hero-left {
  position: relative;
  z-index: 1;
}

.hf-hero-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.hf-hero-kicker-text,
.hf-section-kicker {
  color: rgba(15, 23, 42, 0.64);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hf-hero-title {
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.02;
  color: var(--hf-navy);
  font-size: clamp(2.4rem, 3.2vw, 3.4rem);
  margin-bottom: 14px;
}

.hf-hero-title-line {
  display: block;
}

.hf-hero-accent {
  background: linear-gradient(90deg, var(--hf-green-2), var(--hf-cyan), var(--hf-blue));
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: hf-gradient 7s ease infinite;
}

.hf-text-shimmer {
  position: relative;
}

.hf-text-shimmer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.8) 45%, transparent 100%);
  mix-blend-mode: screen;
  opacity: 0.35;
  transform: translateX(-120%);
  animation: hf-shimmer 5.5s ease-in-out infinite;
}

.hf-hero-sub {
  color: rgba(15, 23, 42, 0.72);
  font-size: 1.08rem;
  line-height: 1.65;
  max-width: 60ch;
  margin-bottom: 18px;
}

.hf-hero-marquee {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.hf-hero-marquee-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(249, 115, 22, 0.10);
  box-shadow: 0 14px 28px rgba(90, 35, 12, 0.06);
  color: rgba(15, 23, 42, 0.84);
  font-size: 0.82rem;
  font-weight: 850;
}

.hf-hero-marquee-pill .hf-mi {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 237, 213, 0.96), rgba(254, 215, 170, 0.96), rgba(252, 165, 165, 0.92));
}

.hf-search {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(249, 115, 22, 0.12);
  border-radius: var(--hf-radius-xl);
  padding: 16px;
  box-shadow: 0 18px 46px rgba(90, 35, 12, 0.08);
  backdrop-filter: blur(18px);
}

.hf-label {
  font-weight: 750;
  color: rgba(15, 23, 42, 0.74);
  font-size: 0.86rem;
}

.hf-inputgroup {
  display: flex;
}

.hf-igicon {
  background: rgba(249, 115, 22, 0.08);
  border: 1px solid rgba(249, 115, 22, 0.22);
  color: rgba(15, 23, 42, 0.82);
  border-radius: 14px 0 0 14px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
}

.hf-input {
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #fff;
}

.hf-inputgroup .hf-input {
  border-left: 0;
  border-radius: 0 14px 14px 0;
}

.hf-btn-search {
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(249, 115, 22, 1), rgba(239, 68, 68, 0.96), rgba(244, 63, 94, 0.92));
  border: 1px solid rgba(239, 68, 68, 0.32);
  color: #fff;
  font-weight: 800;
  padding: 12px 14px;
  box-shadow: 0 16px 34px rgba(239, 68, 68, 0.18);
}

.hf-btn-search:hover {
  background: linear-gradient(135deg, #ea580c, #ef4444, #f43f5e);
  color: #fff;
}

.hf-search-meta {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 12px;
  flex-wrap: wrap;
}

.hf-tag {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 6px 10px;
  font-weight: 900;
  background: rgba(249, 115, 22, 0.14);
  color: rgba(15, 23, 42, 0.88);
  border: 1px solid rgba(249, 115, 22, 0.24);
  font-size: 0.8rem;
}

.hf-muted {
  color: var(--hf-muted);
}

.hf-hero-badges {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.hf-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.hf-hero-stat {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(249, 115, 22, 0.10);
  border-radius: 18px;
  padding: 12px 14px;
  box-shadow: 0 12px 28px rgba(90, 35, 12, 0.06);
}

.hf-hero-stat-val {
  font-size: 1.24rem;
  line-height: 1;
  font-weight: 950;
  color: rgba(15, 23, 42, 0.96);
}

.hf-hero-stat-sub {
  margin-top: 6px;
  color: var(--hf-muted);
  font-weight: 700;
  font-size: 0.88rem;
}

.hf-badge {
  display: flex;
  gap: 10px;
  align-items: center;
  border-radius: 16px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(249, 115, 22, 0.10);
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}

.hf-badge:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.86);
  border-color: rgba(239, 68, 68, 0.16);
}

.hf-badge-ic {
  width: 36px;
  height: 36px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 30% 30%, rgba(249, 115, 22, 0.95), rgba(239, 68, 68, 0.95));
  color: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 26px rgba(2, 6, 23, 0.12);
}

.hf-badge-title {
  font-weight: 850;
  font-size: 0.94rem;
  color: rgba(15, 23, 42, 0.92);
  line-height: 1.1;
}

.hf-badge-sub {
  font-size: 0.82rem;
  color: var(--hf-muted);
  line-height: 1.15;
}

.hf-hero-right {
  position: relative;
  min-height: 0;
  display: grid;
  gap: 18px;
  z-index: 1;
}

.hf-hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(14px);
  opacity: 0.6;
  pointer-events: none;
}

.hf-hero-glow--one {
  width: 160px;
  height: 160px;
  top: 8%;
  right: 8%;
  background: rgba(239, 68, 68, 0.16);
}

.hf-hero-glow--two {
  width: 190px;
  height: 190px;
  left: 2%;
  bottom: 6%;
  background: rgba(249, 115, 22, 0.16);
}

.hf-hero-topline {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 14px;
}

.hf-pay-bubble {
  position: relative;
  width: 112px;
  height: 112px;
  flex: 0 0 112px;
  border-radius: 999px;
  background: #fff;
  border: 2px solid rgba(239, 68, 68, 0.22);
  box-shadow: 0 14px 34px rgba(2, 6, 23, 0.10);
  display: grid;
  place-items: center;
  isolation: isolate;
}

.hf-pay-bubble-ring {
  position: absolute;
  inset: -8px;
  border-radius: inherit;
  border: 1px dashed rgba(249, 115, 22, 0.26);
  animation: hf-spin-slow 24s linear infinite;
  z-index: 0;
}

.hf-pay-bubble-inner {
  position: relative;
  z-index: 1;
  width: 92px;
  height: 92px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #fb923c, #ef4444, #f43f5e);
  color: #fff;
  display: grid;
  place-items: center;
  text-align: center;
  font-weight: 900;
  line-height: 1;
  box-shadow: inset 0 1px 10px rgba(255, 255, 255, 0.22);
}

.hf-pay-bubble-top,
.hf-pay-bubble-bot {
  font-size: 0.68rem;
  opacity: 0.95;
}

.hf-pay-bubble-mid {
  font-size: 1.05rem;
}

.hf-hero-mini-panel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  padding: 14px 16px;
  border-radius: 22px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 36px rgba(2, 6, 23, 0.08);
  backdrop-filter: blur(16px);
}

.hf-hero-mini-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.08), rgba(239, 68, 68, 0.09), transparent 70%);
  pointer-events: none;
}

.hf-hero-mini-icon {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: rgba(15, 23, 42, 0.96);
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.22), rgba(239, 68, 68, 0.18));
  box-shadow: 0 14px 28px rgba(239, 68, 68, 0.12);
}

.hf-hero-mini-copy {
  display: grid;
  min-width: 0;
}

.hf-hero-mini-eyebrow {
  color: rgba(15, 23, 42, 0.58);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hf-hero-mini-title {
  margin-top: 4px;
  color: rgba(15, 23, 42, 0.92);
  font-size: 0.96rem;
  font-weight: 850;
  line-height: 1.35;
}

.hf-hero-visual {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  min-height: clamp(360px, 42vw, 520px);
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.18), rgba(239, 68, 68, 0.16));
  border: 1px solid rgba(249, 115, 22, 0.12);
  box-shadow: var(--hf-shadow);
  isolation: isolate;
}

.hf-hero-visual-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 360px at 70% 30%, rgba(239, 68, 68, 0.22), transparent 60%),
              radial-gradient(540px 340px at 30% 70%, rgba(249, 115, 22, 0.20), transparent 60%);
}

.hf-hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18), inset 0 -120px 180px rgba(8, 15, 37, 0.22);
  z-index: 2;
}

.hf-hero-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.06);
  filter: saturate(1.04) contrast(1.03);
  object-position: 50% 35%;
}

.hf-hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-direction: column;
  padding: 20px;
  background:
    radial-gradient(420px 260px at 20% 0%, rgba(249, 115, 22, 0.12), transparent 62%),
    radial-gradient(420px 260px at 80% 10%, rgba(239, 68, 68, 0.10), transparent 62%),
    linear-gradient(180deg, rgba(8, 15, 37, 0.02), rgba(8, 15, 37, 0.14) 45%, rgba(8, 15, 37, 0.66));
  z-index: 3;
}

.hf-hero-overlay-card {
  position: relative;
  width: min(360px, 100%);
  background: rgba(255, 255, 255, 0.90);
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 20px;
  padding: 14px;
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.20);
  backdrop-filter: blur(12px);
}

.hf-hero-overlay-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.40), rgba(239, 68, 68, 0.28), rgba(255, 255, 255, 0));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.hf-hero-overlay-sub {
  margin-top: 8px;
  color: rgba(15, 23, 42, 0.68);
  font-size: 0.9rem;
  font-weight: 650;
  line-height: 1.5;
}

.hf-hero-overlay-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.hf-hero-overlay-score {
  font-weight: 900;
  color: rgba(15, 23, 42, 0.86);
}

.hf-hero-overlay-title {
  color: rgba(15, 23, 42, 0.92);
  font-weight: 900;
  line-height: 1.35;
}

.hf-hero-floating-metrics {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.hf-hero-float-card {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: rgba(15, 23, 42, 0.94);
  box-shadow: 0 18px 34px rgba(90, 35, 12, 0.16);
  backdrop-filter: blur(10px);
  animation: hf-float 6.2s ease-in-out infinite;
  flex: 1 1 220px;
}

.hf-hero-float-card--accent {
  animation-delay: -2.4s;
}

.hf-hero-float-card .hf-mi {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 237, 213, 0.96), rgba(254, 215, 170, 0.96), rgba(252, 165, 165, 0.92));
}

.hf-hero-float-kicker {
  color: rgba(15, 23, 42, 0.58);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hf-hero-float-value {
  margin-top: 3px;
  color: rgba(15, 23, 42, 0.92);
  font-weight: 850;
  line-height: 1.2;
}

.hf-tech-figure {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.hf-promo-card {
  position: relative;
  width: 100%;
  max-width: 100%;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(249, 115, 22, 0.12);
  border-radius: 24px;
  padding: 16px 16px 14px;
  box-shadow: var(--hf-shadow);
  overflow: hidden;
}

.hf-promo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(280px 140px at 100% 0%, rgba(239, 68, 68, 0.12), transparent 65%),
    radial-gradient(240px 140px at 0% 100%, rgba(249, 115, 22, 0.12), transparent 65%);
  pointer-events: none;
}

.hf-pillfree {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 4px 10px;
  font-weight: 900;
  background: rgba(249, 115, 22, 0.14);
  border: 1px solid rgba(249, 115, 22, 0.24);
  font-size: 0.76rem;
}

.hf-promo-top {
  display: flex;
  align-items: start;
  gap: 10px;
  flex-wrap: wrap;
}

.hf-promo-title {
  font-weight: 900;
  color: rgba(15, 23, 42, 0.92);
  line-height: 1.2;
}

.hf-promo-avatars {
  display: flex;
  align-items: center;
  margin: 14px 0 12px;
}

.hf-avatar {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(37, 99, 235, 0.10);
  border: 1px solid rgba(37, 99, 235, 0.18);
  font-weight: 900;
  margin-left: -10px;
  color: rgba(15, 23, 42, 0.86);
  box-shadow: 0 10px 22px rgba(2, 6, 23, 0.06);
}

.hf-avatar:first-child { margin-left: 0; }

.hf-avatar-more {
  background: rgba(15, 23, 42, 0.06);
  border-color: rgba(15, 23, 42, 0.10);
  font-size: 0.72rem;
}

.hf-promo-list {
  list-style: none;
  padding-left: 0;
  margin: 0 0 12px;
  color: rgba(15, 23, 42, 0.76);
  font-weight: 650;
}

.hf-promo-list li {
  position: relative;
  margin: 8px 0;
  padding-left: 28px;
}

.hf-promo-list li::before {
  content: "check";
  position: absolute;
  left: 0;
  top: 1px;
  font-family: "Material Symbols Rounded";
  font-size: 18px;
  line-height: 1;
  color: var(--hf-green);
}

.hf-btn-primary {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.98), rgba(239, 68, 68, 0.95), rgba(244, 63, 94, 0.92));
  border: 1px solid rgba(239, 68, 68, 0.24);
  color: #fff;
  font-weight: 900;
  padding: 10px 14px;
  box-shadow: 0 16px 34px rgba(239, 68, 68, 0.18);
}

.hf-btn-primary:hover {
  background: linear-gradient(135deg, #ea580c, #ef4444, #f43f5e);
  color: #fff;
}

.hf-section {
  padding: 42px 0;
  scroll-margin-top: 92px;
}

.hf-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.hf-h2 {
  font-weight: 950;
  letter-spacing: -0.02em;
  color: var(--hf-navy);
  margin: 0;
  font-size: clamp(1.6rem, 2vw, 2.2rem);
}

.hf-link {
  color: rgba(239, 68, 68, 0.95);
  text-decoration: none;
  font-weight: 800;
}

.hf-link:hover { text-decoration: underline; }

.hf-pop-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 768px) {
  .hf-pop-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1200px) {
  .hf-pop-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.hf-pop-card {
  background: #fff;
  border-radius: 24px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 14px 34px rgba(2, 6, 23, 0.06);
  overflow: hidden;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.hf-pop-card:hover {
  transform: translateY(-4px);
  border-color: rgba(239, 68, 68, 0.18);
  box-shadow: 0 22px 46px rgba(90, 35, 12, 0.12);
}

.hf-pop-card:nth-child(odd) .hf-pop-media::after {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.02), rgba(239, 68, 68, 0.14) 48%, rgba(15, 23, 42, 0.54));
}

.hf-pop-card:nth-child(even) .hf-pop-media::after {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.02), rgba(249, 115, 22, 0.12) 48%, rgba(15, 23, 42, 0.54));
}

.hf-pop-media {
  position: relative;
  aspect-ratio: 1.18 / 1;
  overflow: hidden;
}

.hf-pop-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 50% 35%;
  transform: scale(1.04);
}

.hf-pop-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.04), rgba(15, 23, 42, 0.10) 50%, rgba(15, 23, 42, 0.52));
}

.hf-pop-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: rgba(15, 23, 42, 0.92);
  font-size: 0.75rem;
  font-weight: 900;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.hf-pop-body {
  padding: 16px;
}

.hf-pop-head {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hf-pop-name {
  font-size: 1.08rem;
  font-weight: 900;
  color: rgba(15, 23, 42, 0.96);
}

.hf-pop-text {
  margin: 12px 0 14px;
  color: rgba(15, 23, 42, 0.70);
  line-height: 1.6;
  font-weight: 650;
}

.hf-pop-link {
  color: rgba(239, 68, 68, 0.96);
  font-weight: 900;
}

.hf-cat {
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  padding: 14px 12px;
  text-decoration: none;
  display: grid;
  place-items: center;
  gap: 8px;
  box-shadow: 0 10px 26px rgba(2, 6, 23, 0.05);
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease, background .15s ease;
}

.hf-cat:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(2, 6, 23, 0.08);
  border-color: rgba(239, 68, 68, 0.16);
  background: rgba(255, 255, 255, 0.96);
}

.hf-cat-ic {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: rgba(249, 115, 22, 0.10);
  color: rgba(15, 23, 42, 0.86);
  display: grid;
  place-items: center;
}

.hf-cat-name {
  font-weight: 850;
  color: rgba(15, 23, 42, 0.92);
  font-size: 0.95rem;
  text-align: center;
}

.hf-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

@media (min-width: 768px) {
  .hf-steps { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

.hf-step {
  background: linear-gradient(180deg, rgba(249, 115, 22, 0.10), rgba(255, 255, 255, 0.95));
  border: 1px solid rgba(249, 115, 22, 0.12);
  border-radius: 18px;
  padding: 14px 14px 12px;
  box-shadow: 0 12px 30px rgba(2, 6, 23, 0.05);
  position: relative;
  overflow: hidden;
}

.hf-step::after {
  content: "";
  position: absolute;
  inset: -40px -40px auto auto;
  width: 120px;
  height: 120px;
  border-radius: 999px;
  background: rgba(239, 68, 68, 0.10);
}

.hf-step-num {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.18);
  border: 1px solid rgba(239, 68, 68, 0.22);
  display: grid;
  place-items: center;
  font-weight: 950;
  color: rgba(15, 23, 42, 0.90);
  position: relative;
  z-index: 1;
}

.hf-step-title {
  margin-top: 10px;
  font-weight: 900;
  color: rgba(15, 23, 42, 0.92);
  position: relative;
  z-index: 1;
}

.hf-step-sub {
  margin-top: 6px;
  color: var(--hf-muted);
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.hf-top-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

@media (min-width: 768px) {
  .hf-top-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1280px) {
  .hf-top-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1280px) {
  .hf-servicecard--feature {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: stretch;
  }
}

.hf-servicecard {
  background: #fff;
  border-radius: 22px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--hf-shadow-soft);
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.hf-servicecard:hover {
  transform: translateY(-4px);
  border-color: rgba(239, 68, 68, 0.18);
  box-shadow: 0 22px 46px rgba(90, 35, 12, 0.12);
}

.hf-servicecard--feature .hf-servicecard-photo {
  height: 100%;
  min-height: 100%;
}

@media (min-width: 1280px) {
  .hf-servicecard--feature .hf-servicecard-media {
    min-height: 100%;
  }
}

.hf-servicecard-media {
  position: relative;
}

.hf-servicecard-photo {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  object-position: 50% 35%;
  transform: scale(1.04);
}

.hf-servicecard-chiprow {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.hf-servicecard-area {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.90);
  border: 1px solid rgba(255, 255, 255, 0.78);
  color: rgba(15, 23, 42, 0.92);
  font-size: 0.78rem;
  font-weight: 900;
  padding: 6px 10px;
  backdrop-filter: blur(10px);
}

.hf-servicecard-body {
  padding: 18px;
}

.hf-servicecard--feature .hf-servicecard-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px;
}

.hf-servicecard-title {
  font-weight: 950;
  color: rgba(15, 23, 42, 0.92);
  font-size: 1.15rem;
}

.hf-servicecard--feature .hf-servicecard-title {
  font-size: 1.45rem;
}

.hf-servicecard-sub {
  color: var(--hf-muted);
  font-weight: 650;
  margin-top: 2px;
  font-size: 0.95rem;
}

.hf-servicecard-info {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.hf-servicecard-hero-note {
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 237, 213, 0.82), rgba(254, 215, 170, 0.38), rgba(255, 255, 255, 0.9));
  border: 1px solid rgba(249, 115, 22, 0.12);
  color: rgba(15, 23, 42, 0.78);
  font-weight: 700;
  line-height: 1.6;
}

.hf-serviceinfo {
  background: rgba(248, 250, 252, 0.96);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  padding: 12px;
}

.hf-serviceinfo-label {
  display: block;
  color: var(--hf-muted);
  font-size: 0.8rem;
  font-weight: 700;
}

.hf-serviceinfo-value {
  display: block;
  margin-top: 5px;
  color: rgba(15, 23, 42, 0.94);
  font-weight: 900;
}

.hf-servicecard-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 10px 0 12px;
  flex-wrap: wrap;
}

.hf-stars {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.hf-star {
  color: rgba(15, 23, 42, 0.20);
}

.hf-star--on {
  color: #f59e0b;
}

.hf-starval {
  font-weight: 900;
  color: rgba(15, 23, 42, 0.86);
}

.hf-badgepill {
  border-radius: 999px;
  padding: 6px 10px;
  font-weight: 900;
  background: rgba(249, 115, 22, 0.14);
  border: 1px solid rgba(249, 115, 22, 0.24);
  font-size: 0.82rem;
}

.hf-btn-outline {
  border-radius: 14px;
  border: 1px solid rgba(239, 68, 68, 0.34);
  background: #fff;
  color: rgba(15, 23, 42, 0.92);
  font-weight: 900;
  padding: 10px 12px;
  width: 100%;
}

.hf-btn-outline:hover {
  background: rgba(239, 68, 68, 0.08);
}

.hf-area-card {
  background: linear-gradient(180deg, rgba(255, 237, 213, 0.54), rgba(255, 255, 255, 0.95));
  border: 1px solid rgba(249, 115, 22, 0.12);
  border-radius: 26px;
  padding: 20px;
  box-shadow: var(--hf-shadow-soft);
}

.hf-area-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: center;
}

@media (min-width: 992px) {
  .hf-area-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.hf-area-photo {
  width: 100%;
  min-height: 240px;
  max-height: 360px;
  display: block;
  object-fit: cover;
  object-position: 50% 40%;
  border-radius: 24px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.08);
  transform: scale(1.03);
}

.hf-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.hf-statsbar {
  margin-top: 16px;
  background: rgba(11, 26, 74, 0.95);
  color: #fff;
  border-radius: 18px;
  padding: 14px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

@media (min-width: 768px) {
  .hf-statsbar { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

.hf-stat {
  display: grid;
  gap: 2px;
  align-content: start;
}

.hf-stat-val {
  font-weight: 950;
  letter-spacing: -0.01em;
  font-size: 1.08rem;
}

.hf-stat-sub {
  opacity: 0.86;
  font-weight: 650;
  font-size: 0.9rem;
}

.hf-review-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 768px) {
  .hf-review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1280px) {
  .hf-review-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.hf-review {
  background: #fff;
  border-radius: 22px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 14px 34px rgba(2, 6, 23, 0.06);
  padding: 16px;
  height: 100%;
}

@media (min-width: 1280px) {
  .hf-review--feature {
    grid-column: span 2;
  }
}

.hf-review--feature {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 244, 237, 0.98));
}

.hf-review-kicker {
  display: inline-flex;
  margin-bottom: 10px;
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.18);
  color: rgba(15, 23, 42, 0.84);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hf-review-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.hf-review-avatar {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  object-fit: cover;
  display: block;
  border: 1px solid rgba(15, 23, 42, 0.08);
  object-position: 50% 30%;
  transform: scale(1.06);
}

.hf-review-service {
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(249, 115, 22, 0.10);
  border: 1px solid rgba(239, 68, 68, 0.14);
  color: rgba(15, 23, 42, 0.90);
  font-size: 0.74rem;
  font-weight: 900;
}

.hf-review-stars {
  margin-bottom: 8px;
}

.hf-review-text {
  color: rgba(15, 23, 42, 0.74);
  font-weight: 650;
  line-height: 1.7;
  margin-bottom: 0;
}

.hf-review-name {
  font-weight: 950;
  line-height: 1.1;
}

.hf-app {
  background: linear-gradient(135deg, rgba(255, 237, 213, 0.58), rgba(254, 215, 170, 0.20), rgba(255, 255, 255, 0.9));
  border: 1px solid rgba(249, 115, 22, 0.12);
  border-radius: 26px;
  padding: 18px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  box-shadow: var(--hf-shadow-soft);
}

@media (min-width: 992px) {
  .hf-app { grid-template-columns: 1.2fr 0.8fr; align-items: center; }
}

.hf-app-kicker {
  display: inline-flex;
  border-radius: 999px;
  padding: 6px 10px;
  font-weight: 950;
  background: rgba(249, 115, 22, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.18);
  margin-bottom: 10px;
}

.hf-app-pills {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

@media (min-width: 768px) {
  .hf-app-pills { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

.hf-mini {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  padding: 12px;
}

.hf-mini-ic {
  width: 34px;
  height: 34px;
  border-radius: 14px;
  background: rgba(249, 115, 22, 0.14);
  border: 1px solid rgba(239, 68, 68, 0.18);
  display: grid;
  place-items: center;
  font-weight: 950;
  margin-bottom: 10px;
}

.hf-mini-title {
  font-weight: 950;
  line-height: 1.1;
}

.hf-mini-sub {
  color: var(--hf-muted);
  font-weight: 650;
  margin-top: 4px;
}

.hf-phone {
  background: rgba(11, 26, 74, 0.96);
  border-radius: 30px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--hf-shadow);
  max-width: 340px;
  margin-left: auto;
  margin-right: auto;
}

.hf-phone-top {
  height: 10px;
  width: 120px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  margin: 0 auto 12px;
}

.hf-phone-body {
  display: grid;
  gap: 12px;
}

.hf-phone-card {
  background: rgba(255, 255, 255, 0.94);
  border-radius: 20px;
  padding: 14px;
  border: 1px solid rgba(15, 23, 42, 0.10);
}

.hf-phone-card--alt {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.88), rgba(239, 68, 68, 0.88));
  border-color: rgba(255, 255, 255, 0.14);
  color: #fff6f1;
}

.hf-phone-title {
  font-weight: 950;
  color: rgba(15, 23, 42, 0.94);
}

.hf-phone-card--alt .hf-phone-title,
.hf-phone-card--alt .hf-phone-sub {
  color: rgba(255, 255, 255, 0.95);
}

.hf-phone-sub {
  color: rgba(15, 23, 42, 0.62);
  font-weight: 650;
  margin-top: 2px;
}

.hf-phone-row {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.hf-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(239, 68, 68, 0.40);
}

.hf-phone-card--alt .hf-dot {
  background: rgba(255, 255, 255, 0.40);
}

.hf-phone-bar {
  height: 10px;
  border-radius: 999px;
  margin-top: 12px;
  background: rgba(255, 255, 255, 0.30);
}

.hf-bottomtabs {
  position: fixed;
  left: calc(10px + env(safe-area-inset-left, 0px));
  right: calc(10px + env(safe-area-inset-right, 0px));
  bottom: calc(10px + env(safe-area-inset-bottom, 0px));
  z-index: 1040;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 6px;
  padding: 8px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 22px 44px rgba(2, 6, 23, 0.16);
  backdrop-filter: blur(18px);
  max-width: min(100%, 560px);
  margin-inline: auto;
}

.hf-bottomtabs::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.hf-bottomtab {
  position: relative;
  min-width: 0;
  display: grid;
  justify-items: center;
  gap: 4px;
  border: 0;
  border-radius: 18px;
  padding: 10px 6px 8px;
  background: transparent;
  color: rgba(15, 23, 42, 0.62);
  font-size: 0.69rem;
  font-weight: 800;
  text-decoration: none;
  transition: background .15s ease, color .15s ease, transform .15s ease, box-shadow .15s ease;
  appearance: none;
}

.hf-bottomtab-ic {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.05);
  transition: background .15s ease, transform .15s ease;
}

.hf-bottomtab.is-active {
  color: rgba(15, 23, 42, 0.96);
  background: linear-gradient(180deg, rgba(249, 115, 22, 0.14), rgba(255, 255, 255, 0.5));
  box-shadow: inset 0 0 0 1px rgba(249, 115, 22, 0.14), 0 12px 24px rgba(239, 68, 68, 0.10);
}

.hf-bottomtab.is-active .hf-bottomtab-ic {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.22), rgba(239, 68, 68, 0.18));
  transform: translateY(-1px);
}

.hf-bottomtab .hf-mi {
  font-size: 20px;
}

.hf-bottomtab--menu[aria-expanded="true"] {
  color: rgba(15, 23, 42, 0.96);
  background: linear-gradient(180deg, rgba(239, 68, 68, 0.12), rgba(255, 255, 255, 0.5));
  box-shadow: inset 0 0 0 1px rgba(239, 68, 68, 0.12), 0 12px 24px rgba(239, 68, 68, 0.10);
}

.hf-bottomtab--menu[aria-expanded="true"] .hf-bottomtab-ic {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.22), rgba(239, 68, 68, 0.18));
}

.hf-footer {
  margin-top: 18px;
  background:
    radial-gradient(900px 420px at 10% 0%, rgba(249, 115, 22, 0.32), transparent 55%),
    radial-gradient(800px 420px at 90% 20%, rgba(239, 68, 68, 0.30), transparent 60%),
    linear-gradient(180deg, rgba(44, 11, 7, 0.98), rgba(18, 7, 7, 0.98));
  color: rgba(255, 255, 255, 0.92);
  padding: 26px 0 18px;
}

.hf-brand-mark--footer {
  box-shadow: 0 10px 22px rgba(230, 57, 70, 0.28);
}

.hf-footer-brand {
  font-weight: 950;
  letter-spacing: -0.02em;
}

.hf-footer-sub {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
}

.hf-footer-title {
  font-weight: 950;
  margin-bottom: 10px;
}

.hf-footer-text {
  color: rgba(255, 255, 255, 0.70);
  font-weight: 650;
  margin-bottom: 6px;
}

.hf-footer-link {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-weight: 750;
}

.hf-footer-link:hover {
  text-decoration: underline;
  color: rgba(255, 255, 255, 0.92);
}

.hf-footer-bottom {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  display: flex;
  gap: 14px;
  justify-content: space-between;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.70);
  font-weight: 650;
}

@media (max-width: 575.98px) {
  html {
    font-size: 13px;
  }
  input,
  select,
  textarea,
  button {
    font-size: 16px;
  }
  .hf-main {
    overflow-x: clip;
  }
  .hf-hero,
  .hf-search,
  .hf-hero-visual,
  .hf-servicecard,
  .hf-review,
  .hf-app,
  .hf-phone-frame,
  .hf-footer {
    max-width: 100%;
    overflow-x: clip;
  }
  .hf-hero-shell {
    padding-left: 0.85rem;
    padding-right: 0.85rem;
  }
  .hf-hero {
    padding-top: 18px;
    padding-bottom: 10px;
  }
  .hf-hero-backdrop {
    inset: 4px 8px auto;
    border-radius: 26px;
    height: min(100%, 560px);
  }
  .hf-search {
    padding: 14px;
    border-radius: 20px;
  }
  .hf-inputgroup {
    min-width: 0;
  }
  .hf-input {
    min-width: 0;
    font-size: 16px;
  }
  .hf-hero-title {
    font-size: clamp(1.78rem, 8.5vw, 2.2rem);
    line-height: 0.98;
    margin-bottom: 10px;
  }
  .hf-hero-kicker-text {
    display: none;
  }
  .hf-hero-title-line:last-child:not(.hf-hero-title-line--2) {
    display: none;
  }
  .hf-hero-title--saas .hf-hero-title-line--2,
  .hf-hero-title--saas .hf-hero-title-line:last-child.hf-hero-title-line--2 {
    display: block !important;
  }
  .hf-hero-sub {
    font-size: 0.92rem;
    line-height: 1.48;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }
  .hf-hero-marquee {
    display: none;
  }
  .hf-search-meta {
    display: grid;
    gap: 8px;
  }
  .hf-label {
    font-size: 0.8rem;
  }
  .hf-tag {
    font-size: 0.74rem;
    padding: 5px 9px;
  }
  .hf-section-kicker {
    font-size: 0.78rem;
  }
  .hf-h2 {
    font-size: clamp(1.38rem, 5.4vw, 1.72rem);
  }
  .hf-muted {
    font-size: 0.9rem;
  }
  .hf-hero-badges,
  .hf-hero-stats,
  .hf-promo-card {
    display: none;
  }
  .hf-review-top { grid-template-columns: auto 1fr; }
  .hf-review-service { grid-column: 1 / -1; justify-self: start; }
  .hf-servicecard-info { grid-template-columns: 1fr; }
  .hf-hero-right {
    gap: 12px;
  }
  .hf-hero-topline {
    grid-template-columns: 1fr;
    align-items: stretch;
  }
  .hf-pay-bubble {
    display: none;
  }
  .hf-hero-mini-panel {
    padding: 12px 13px;
  }
  .hf-hero-visual {
    min-height: 250px;
  }
  .hf-hero-overlay {
    padding: 12px;
  }
  .hf-hero-overlay-card {
    width: 100%;
    padding: 12px;
    border-radius: 16px;
  }
  .hf-hero-floating-metrics {
    justify-content: stretch;
    gap: 8px;
  }
  .hf-hero-float-card {
    width: 100%;
    padding: 10px 12px;
  }
  .hf-promo-list li {
    margin: 7px 0;
  }
  .hf-bottomtabs {
    left: calc(6px + env(safe-area-inset-left, 0px));
    right: calc(6px + env(safe-area-inset-right, 0px));
    bottom: calc(6px + env(safe-area-inset-bottom, 0px));
    gap: 4px;
    padding: 6px;
    border-radius: 22px;
  }
  .hf-bottomtab {
    padding: 8px 4px 6px;
    font-size: 0.58rem;
  }
  .hf-bottomtab-ic {
    width: 30px;
    height: 30px;
    border-radius: 12px;
  }
  .hf-bottomtab .hf-mi { font-size: 18px; }

  .hf-pop-name { font-size: 0.98rem; }
  .hf-pop-text { font-size: 0.9rem; }
  .hf-pop-link { font-size: 0.9rem; }

  .hf-servicecard-title { font-size: 1.06rem; }
  .hf-servicecard-sub { font-size: 0.9rem; }
  .hf-serviceinfo-label { font-size: 0.74rem; }
  .hf-serviceinfo-value { font-size: 0.92rem; }
  .hf-btn-outline,
  .hf-btn-primary { font-size: 0.9rem; }
}

@keyframes hf-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes hf-spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes hf-shimmer {
  0%, 100% { transform: translateX(-120%); opacity: 0; }
  20%, 80% { opacity: 0.35; }
  50% { transform: translateX(120%); opacity: 0.18; }
}

/* Nav notification bell — always visible on home top bar */
#hfNav .hf-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-width: 0;
  width: 100%;
}

#hfNav .hf-brand {
  flex: 1 1 auto;
  min-width: 0;
}

#hfNav .hf-navlinks {
  display: none;
  min-width: 0;
}

@media (min-width: 1024px) {
  #hfNav .hf-nav-inner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) minmax(0, max-content);
    align-items: center;
    gap: 1rem;
  }

  #hfNav .hf-brand {
    flex: none;
  }

  #hfNav .hf-navlinks {
    display: flex !important;
    justify-self: center;
    justify-content: center;
    min-width: 0;
  }
}

#hfNav .hf-nav-actions {
  display: inline-flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.45rem;
  flex: 0 0 auto;
  min-width: 0;
  margin-left: auto;
}

#hfNav .hf-nav-actions-main {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
  flex: 0 1 auto;
}

#hfNav .hf-nav-actions-trail {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  flex: 0 0 auto;
  min-width: 0;
}

#hfNav .hf-nav-actions-cluster {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  flex: 0 0 auto;
}

#hfNav .hf-nav-actions-slot {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
}

#hfNav .hf-nav-actions-slot > .hf-nav-customer-mobile,
#hfNav .hf-nav-actions-slot > .hf-nav-menu {
  position: absolute;
  inset: 0;
}

#hfNav .hf-nav-actions-slot > .hidden {
  visibility: hidden;
  pointer-events: none;
}

.hf-nav-pwa-install {
  display: none;
}

@media (min-width: 1024px) {
  .hf-nav-pwa-install:not(.hf-auth-desktop-hidden) {
    display: inline-flex;
  }

  #hfNav .hf-nav-actions-slot {
    display: none;
  }

  body[data-hf-customer-auth="true"] #hfNav .hf-nav-customer--desktop {
    max-width: min(100%, 18.5rem);
  }
}

@media (max-width: 1023.98px) {
  #hfNav .hf-nav-actions-main {
    display: none !important;
  }

  body[data-hf-customer-auth="true"] #hfNav .hf-brand {
    max-width: calc(100% - 13.75rem);
  }

  body[data-hf-customer-auth="false"] #hfNav .hf-brand {
    max-width: calc(100% - 10.25rem);
  }
}

#hfNav .hf-nav-notif {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  flex-shrink: 0;
}

#hfNav .hf-nav-notif.hidden {
  display: none !important;
}

#hfNav .hf-nav-notif-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06));
  color: #fff;
  cursor: pointer;
  flex-shrink: 0;
  overflow: visible;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}

#hfNav .hf-nav-notif-btn__ring {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 9px;
}

#hfNav .hf-nav-notif-btn__icon {
  font-size: 1.22rem !important;
  line-height: 1;
  font-variation-settings: 'FILL' 1, 'wght' 600, 'GRAD' 0, 'opsz' 24;
}

#hfNav .hf-nav-notif-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.35rem;
  height: 1.35rem;
  padding: 0 0.3rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff6d00, #e53935);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  text-align: center;
  border: 2px solid #140e0c;
  box-shadow: 0 2px 10px rgba(229, 57, 53, 0.5);
  pointer-events: none;
  z-index: 3;
  box-sizing: border-box;
}

@media (max-width: 767px) {
  #hfNav .hf-nav-notif-badge {
    top: -6px;
    right: -6px;
    min-width: 1.5rem;
    height: 1.5rem;
    padding: 0 0.32rem;
    font-size: 0.78rem;
  }
}

#hfNav .hf-nav-notif-btn[aria-expanded="true"] {
  border-color: rgba(255, 183, 77, 0.55);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.2);
}
