:root {
  --hfc-orange: #038005;
  --hfc-orange-dark: #026704;
  --hfc-teal: #173d8f;
  --hfc-teal-soft: #edf2fb;
  --hfc-ink: #17202e;
  --hfc-ink-2: #243247;
  --hfc-muted: #657080;
  --hfc-line: #dfe4e9;
  --hfc-soft: #f5f7f9;
  --hfc-white: #fff;
  --hfc-radius-sm: 12px;
  --hfc-radius: 20px;
  --hfc-radius-lg: 28px;
  --hfc-shadow: 0 18px 50px rgba(23, 32, 46, 0.10);
  --hfc-shadow-lg: 0 28px 70px rgba(23, 32, 46, 0.15);
}

body.hfc-site {
  margin: 0 !important;
  overflow-x: hidden;
  background: var(--hfc-white);
  color: var(--hfc-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.hfc-site *,
body.hfc-site *::before,
body.hfc-site *::after {
  box-sizing: border-box;
}

body.hfc-site img {
  display: block;
  max-width: 100%;
}

:where(body.hfc-site) a {
  color: inherit;
}

:where(body.hfc-site) h1,
:where(body.hfc-site) h2,
:where(body.hfc-site) h3,
:where(body.hfc-site) p {
  overflow-wrap: anywhere;
}

:where(body.hfc-site) h1,
:where(body.hfc-site) h2,
:where(body.hfc-site) h3 {
  color: inherit;
  font-family: inherit;
  font-weight: 850;
  hyphens: auto;
}

body.hfc-site :focus-visible {
  outline: 3px solid #116bce;
  outline-offset: 3px;
}

.hfc-container {
  width: min(1200px, calc(100% - 40px));
  margin-inline: auto;
}

.hfc-skip {
  position: fixed;
  top: -90px;
  left: 14px;
  z-index: 100000;
  padding: 11px 16px;
  border-radius: 8px;
  background: #fff;
  color: #000;
  font-weight: 800;
}

.hfc-skip:focus {
  top: 14px;
}

.hfc-topbar {
  background: #0f1724;
  color: #dce2ea;
  font-size: 13px;
}

.hfc-topbar .hfc-container,
.hfc-topbar .hfc-container > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.hfc-topbar .hfc-container {
  min-height: 35px;
}

.hfc-topbar a {
  color: #fff;
  font-weight: 750;
  text-decoration: none;
}

.hfc-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 8px 24px rgba(23, 32, 46, 0.07);
  backdrop-filter: blur(16px);
}

.admin-bar .hfc-header {
  top: 32px;
}

.hfc-header-main {
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

.hfc-logo {
  display: inline-grid;
  grid-template-columns: auto auto;
  align-items: baseline;
  column-gap: 7px;
  min-width: max-content;
  color: var(--hfc-ink);
  font-size: 29px;
  font-weight: 950;
  letter-spacing: -1.5px;
  line-height: 1;
  text-decoration: none;
}

.hfc-logo span {
  color: var(--hfc-orange);
}

.hfc-logo b {
  font-weight: 950;
}

.hfc-logo small {
  grid-column: 1 / -1;
  margin-top: 7px;
  color: var(--hfc-muted);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hfc-header-facts {
  display: grid;
  grid-template-columns: repeat(3, auto);
  align-items: stretch;
  margin-left: auto;
}

.hfc-header-facts > a,
.hfc-header-facts > div {
  display: flex;
  min-height: 58px;
  align-items: center;
  gap: 11px;
  padding: 0 22px;
  border-left: 1px solid var(--hfc-line);
  color: var(--hfc-ink);
  text-decoration: none;
}

.hfc-header-facts small,
.hfc-header-facts strong {
  display: block;
  line-height: 1.25;
}

.hfc-header-facts small {
  margin-bottom: 4px;
  color: var(--hfc-muted);
  font-size: 11px;
}

.hfc-header-facts strong {
  font-size: 13px;
  white-space: nowrap;
}

.hfc-header-icon {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  place-items: center;
  border-radius: 50%;
  background: #eaf6ea;
  color: var(--hfc-orange-dark);
}

.hfc-header-icon svg {
  width: 21px;
  height: 21px;
}

.hfc-nav-row {
  background: var(--hfc-ink);
}

.hfc-nav {
  display: flex;
  min-height: 50px;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.hfc-nav a {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  padding: 0 13px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transition: color 0.18s ease, background 0.18s ease;
}

.hfc-nav a:hover,
.hfc-nav a:focus {
  color: #83c984;
}

.hfc-nav .hfc-nav-cta {
  min-height: 36px;
  margin-left: 8px;
  padding: 0 18px;
  border-radius: 9px;
  background: var(--hfc-orange);
  color: #fff;
}

.hfc-nav .hfc-nav-cta:hover,
.hfc-nav .hfc-nav-cta:focus {
  background: var(--hfc-orange-dark);
  color: #fff;
}

.hfc-menu-toggle {
  display: none;
  min-width: 48px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 9px 13px;
  border: 1px solid var(--hfc-line);
  border-radius: 10px;
  background: #fff;
  color: var(--hfc-ink);
  font: inherit;
  font-size: 14px;
  font-weight: 850;
}

.hfc-menu-toggle i,
.hfc-menu-toggle i::before,
.hfc-menu-toggle i::after {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}

.hfc-menu-toggle i {
  position: relative;
}

.hfc-menu-toggle i::before,
.hfc-menu-toggle i::after {
  position: absolute;
  left: 0;
  content: "";
}

.hfc-menu-toggle i::before {
  top: -6px;
}

.hfc-menu-toggle i::after {
  top: 6px;
}

.hfc-menu-toggle[aria-expanded="true"] i {
  background: transparent;
}

.hfc-menu-toggle[aria-expanded="true"] i::before {
  top: 0;
  transform: rotate(45deg);
}

.hfc-menu-toggle[aria-expanded="true"] i::after {
  top: 0;
  transform: rotate(-45deg);
}

.hfc-breadcrumb {
  border-bottom: 1px solid var(--hfc-line);
  background: #fff;
}

.hfc-breadcrumb .hfc-container {
  overflow-x: auto;
}

.hfc-breadcrumb ol {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  padding: 10px 0;
  list-style: none;
  white-space: nowrap;
}

.hfc-breadcrumb li {
  display: flex;
  align-items: center;
  color: var(--hfc-muted);
  font-size: 12px;
}

.hfc-breadcrumb li + li::before {
  margin-right: 9px;
  color: #a7afb9;
  content: "/";
}

.hfc-breadcrumb a {
  font-weight: 750;
  text-decoration: none;
}

.hfc-breadcrumb [aria-current="page"] {
  color: var(--hfc-ink);
  font-weight: 750;
}

.hfc-hero {
  padding: 34px 0 72px;
  background: linear-gradient(180deg, #f7f9fa 0%, #edf2fb 100%);
}

.hfc-hero-shell {
  display: grid;
  min-height: 530px;
  overflow: hidden;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  border: 1px solid #e0e5e9;
  border-radius: var(--hfc-radius-lg);
  background: #fff;
  box-shadow: var(--hfc-shadow-lg);
}

.hfc-hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 60px 52px;
}

.hfc-kicker,
.hfc-eyebrow {
  display: inline-block;
  color: var(--hfc-orange-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hfc-hero h1 {
  max-width: 680px;
  margin: 13px 0 18px;
  color: var(--hfc-ink) !important;
  font-size: clamp(42px, 4.6vw, 64px);
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.hfc-hero:not(.hfc-hero-home) h1 {
  font-size: clamp(38px, 4vw, 56px);
}

.hfc-hero-copy > p {
  max-width: 650px;
  margin: 0;
  color: #4e5a69;
  font-size: 19px;
  line-height: 1.55;
}

.hfc-hero-points {
  display: grid;
  gap: 7px;
  margin: 24px 0 0;
  padding: 0;
  color: var(--hfc-ink-2);
  font-size: 14px;
  font-weight: 780;
  list-style: none;
}

.hfc-hero-points li::before {
  display: inline-grid;
  width: 20px;
  height: 20px;
  margin-right: 8px;
  place-items: center;
  border-radius: 50%;
  background: var(--hfc-teal-soft);
  color: #173d8f;
  content: "✓";
  font-size: 12px;
  font-weight: 950;
}

.hfc-hero-actions,
.hfc-contact-actions,
.hfc-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 27px;
}

.hfc-button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 2px solid var(--hfc-orange);
  border-radius: 11px;
  background: var(--hfc-orange);
  color: #fff !important;
  font: inherit;
  font-size: 15px;
  font-weight: 850;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.hfc-button:hover,
.hfc-button:focus {
  border-color: var(--hfc-orange-dark);
  background: var(--hfc-orange-dark);
  box-shadow: 0 10px 24px rgba(217, 111, 6, 0.22);
  transform: translateY(-1px);
}

.hfc-button-outline {
  border-color: #c9d0d8;
  background: #fff;
  color: var(--hfc-ink) !important;
}

.hfc-button-outline:hover,
.hfc-button-outline:focus {
  border-color: var(--hfc-ink);
  background: var(--hfc-ink);
  color: #fff !important;
}

.hfc-button-teal {
  border-color: #173d8f;
  background: #173d8f;
}

.hfc-button-teal:hover,
.hfc-button-teal:focus {
  border-color: #102c69;
  background: #102c69;
  box-shadow: 0 10px 24px rgba(11, 155, 152, 0.2);
}

.hfc-hero-media {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: #d6e2f5;
}

.hfc-hero-media::after {
  position: absolute;
  inset: 0 auto 0 0;
  width: 22%;
  background: linear-gradient(90deg, #fff, rgba(255, 255, 255, 0));
  content: "";
  pointer-events: none;
}

.hfc-hero-media picture,
.hfc-hero-media img {
  width: 100%;
  height: 100%;
}

.hfc-hero-media img {
  object-fit: cover;
  object-position: 58% center;
}

.hfc-image-badge,
.hfc-image-note {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.93);
  box-shadow: var(--hfc-shadow);
  backdrop-filter: blur(12px);
}

.hfc-image-badge {
  right: 22px;
  bottom: 62px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 13px 17px;
  border-radius: 14px;
}

.hfc-image-badge strong {
  color: var(--hfc-orange-dark);
  font-size: 28px;
  line-height: 1;
}

.hfc-image-badge span {
  color: var(--hfc-ink);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.15;
}

.hfc-image-note {
  right: 22px;
  bottom: 20px;
  padding: 8px 12px;
  border-radius: 9px;
  color: var(--hfc-ink);
  font-size: 11px;
  font-weight: 800;
}

.hfc-hero-compact {
  padding-bottom: 42px;
}

.hfc-hero-compact .hfc-hero-shell {
  min-height: 340px;
  grid-template-columns: 1fr;
}

.hfc-hero-compact .hfc-hero-copy {
  max-width: 880px;
}

.hfc-finder-section {
  position: relative;
  z-index: 4;
  margin-top: -48px;
  padding-bottom: 10px;
}

.hfc-finder {
  padding: 30px;
  border-top: 5px solid var(--hfc-orange);
  border-radius: var(--hfc-radius);
  background: #fff;
  box-shadow: var(--hfc-shadow-lg);
}

.hfc-finder-head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 23px;
}

.hfc-finder-head h2 {
  margin: 0;
  color: var(--hfc-ink);
  font-size: clamp(26px, 3vw, 36px);
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.hfc-finder-head p {
  margin: 4px 0 0;
  color: var(--hfc-muted);
  font-size: 15px;
}

.hfc-finder-step {
  display: grid;
  min-width: 90px;
  min-height: 54px;
  place-items: center;
  padding: 9px 12px;
  border-radius: 12px;
  background: var(--hfc-teal-soft);
  color: #173d8f;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
}

.hfc-finder-fields {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  align-items: end;
  gap: 13px;
}

.hfc-finder label > span {
  display: block;
  margin: 0 0 6px 3px;
  color: var(--hfc-ink);
  font-size: 12px;
  font-weight: 850;
}

.hfc-finder select {
  width: 100%;
  min-height: 52px;
  padding: 0 40px 0 14px;
  border: 1px solid #cfd6dd;
  border-radius: 10px;
  background: #fff;
  color: var(--hfc-ink);
  font: inherit;
  font-size: 14px;
}

.hfc-finder select:disabled {
  background: #f2f4f6;
  color: #8b949f;
}

.hfc-finder-fields .hfc-button {
  min-height: 52px;
  white-space: nowrap;
}

.hfc-finder-note,
.hfc-finder noscript p {
  margin: 15px 0 0;
  color: var(--hfc-muted);
  font-size: 12px;
}

.hfc-finder-note a,
.hfc-finder noscript a {
  color: #173d8f;
  font-weight: 800;
}

.hfc-benefits {
  padding: 34px 0 18px;
}

.hfc-benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.hfc-benefit {
  display: flex;
  min-height: 104px;
  align-items: center;
  gap: 13px;
  padding: 19px;
  border: 1px solid var(--hfc-line);
  border-radius: var(--hfc-radius-sm);
  background: #fff;
}

.hfc-benefit > span {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  place-items: center;
  border-radius: 13px;
  background: #eaf6ea;
  color: var(--hfc-orange-dark);
}

.hfc-benefit svg {
  width: 24px;
  height: 24px;
}

.hfc-benefit strong,
.hfc-benefit small {
  display: block;
  line-height: 1.35;
}

.hfc-benefit strong {
  color: var(--hfc-ink);
  font-size: 15px;
}

.hfc-benefit small {
  margin-top: 4px;
  color: var(--hfc-muted);
  font-size: 12px;
}

.hfc-section {
  padding: 88px 0;
}

.hfc-section-soft {
  background: var(--hfc-soft);
}

.hfc-section-dark {
  background: var(--hfc-ink);
  color: #fff;
}

.hfc-section-head {
  max-width: 770px;
  margin-bottom: 38px;
}

.hfc-section-head h2,
.hfc-split h2,
.hfc-contact-grid h2,
.hfc-cta h2 {
  margin: 8px 0 13px;
  color: var(--hfc-ink);
  font-size: clamp(32px, 3.8vw, 50px);
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.hfc-section-head p,
.hfc-split > div > p,
.hfc-contact-grid > div > p {
  color: var(--hfc-muted);
  font-size: 18px;
}

.hfc-grid {
  display: grid;
  gap: 20px;
}

.hfc-service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hfc-card {
  position: relative;
  display: block;
  min-height: 315px;
  padding: 27px;
  overflow: hidden;
  border: 1px solid var(--hfc-line);
  border-radius: var(--hfc-radius);
  background: #fff;
  color: var(--hfc-ink);
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.hfc-card::after {
  position: absolute;
  top: -70px;
  right: -70px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(11, 155, 152, 0.11), rgba(11, 155, 152, 0));
  content: "";
}

.hfc-card:hover,
.hfc-card:focus {
  border-color: rgba(242, 140, 24, 0.75);
  box-shadow: var(--hfc-shadow);
  transform: translateY(-4px);
}

.hfc-service-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 16px;
  background: var(--hfc-teal-soft);
  color: #173d8f;
}

.hfc-service-icon svg {
  width: 30px;
  height: 30px;
}

.hfc-card-tag {
  position: absolute;
  top: 27px;
  right: 24px;
  z-index: 1;
  color: var(--hfc-orange-dark);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.hfc-card h3 {
  margin: 30px 0 9px;
  color: var(--hfc-ink);
  font-size: 23px;
  line-height: 1.18;
}

.hfc-card p {
  margin: 0 0 20px;
  color: var(--hfc-muted);
  font-size: 15px;
}

.hfc-link {
  color: var(--hfc-orange-dark);
  font-weight: 850;
  text-decoration: none;
}

.hfc-price-teaser {
  border-top: 1px solid var(--hfc-line);
  background: #f6faf6;
}

.hfc-price-teaser-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 15px;
}

.hfc-price-tile {
  display: flex;
  min-height: 230px;
  flex-direction: column;
  padding: 25px;
  border: 1px solid #d8ead8;
  border-radius: var(--hfc-radius-sm);
  background: #fff;
  color: var(--hfc-ink);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hfc-price-tile:hover,
.hfc-price-tile:focus {
  box-shadow: var(--hfc-shadow);
  transform: translateY(-3px);
}

.hfc-price-tile > span {
  color: var(--hfc-orange-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hfc-price-tile h3 {
  margin: 11px 0 23px;
  color: var(--hfc-ink);
  font-size: 20px;
  line-height: 1.25;
}

.hfc-price-tile strong {
  margin-top: auto;
  color: var(--hfc-ink);
  font-size: 31px;
  line-height: 1;
}

.hfc-price-tile small {
  margin-top: 10px;
  color: var(--hfc-muted);
  font-size: 12px;
}

.hfc-price-tile-accent {
  border-color: var(--hfc-ink);
  background: var(--hfc-ink);
}

.hfc-price-tile-accent h3,
.hfc-price-tile-accent strong {
  color: #fff;
}

.hfc-price-tile-accent > span {
  color: #5aae5c;
}

.hfc-price-tile-accent small {
  color: #c5ced9;
}

.hfc-price-teaser-note {
  margin: 17px 0 0;
  color: var(--hfc-muted);
  font-size: 12px;
}

.hfc-showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.hfc-showcase-card {
  overflow: hidden;
  border: 1px solid var(--hfc-line);
  border-radius: var(--hfc-radius);
  background: #fff;
  box-shadow: 0 12px 34px rgba(23, 32, 46, 0.07);
}

.hfc-showcase-card picture,
.hfc-showcase-card img {
  width: 100%;
  height: 280px;
}

.hfc-showcase-card img {
  object-fit: cover;
  transition: transform 0.35s ease;
}

.hfc-showcase-card:hover img {
  transform: scale(1.025);
}

.hfc-showcase-card > div {
  padding: 26px;
}

.hfc-showcase-card > div > span {
  color: #173d8f;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hfc-showcase-card h3 {
  margin: 8px 0 9px;
  color: var(--hfc-ink);
  font-size: 25px;
}

.hfc-showcase-card p {
  margin: 0 0 15px;
  color: var(--hfc-muted);
  font-size: 15px;
}

.hfc-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: start;
  gap: 72px;
}

.hfc-section-dark .hfc-eyebrow {
  color: #5aae5c;
}

.hfc-section-dark .hfc-split h2,
.hfc-section-dark .hfc-split > div > p {
  color: #fff;
}

.hfc-section-dark .hfc-split > div > p {
  color: #c7cfda;
}

.hfc-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.hfc-facts div {
  padding: 25px;
  border: 1px solid #3a475b;
  border-radius: var(--hfc-radius-sm);
  background: #202c3d;
}

.hfc-facts strong,
.hfc-facts span {
  display: block;
}

.hfc-facts strong {
  color: #fff;
  font-size: 27px;
  line-height: 1.15;
}

.hfc-facts span {
  margin-top: 6px;
  color: #b8c2cf;
  font-size: 13px;
}

.hfc-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hfc-steps li {
  min-height: 250px;
  padding: 25px;
  border: 1px solid var(--hfc-line);
  border-radius: var(--hfc-radius-sm);
  background: #fff;
}

.hfc-steps li > span {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 25px;
  place-items: center;
  border-radius: 11px;
  background: var(--hfc-orange);
  color: #fff;
  font-weight: 950;
}

.hfc-steps h3 {
  margin: 0 0 8px;
  color: var(--hfc-ink);
  font-size: 20px;
}

.hfc-steps p {
  margin: 0;
  color: var(--hfc-muted);
  font-size: 14px;
}

.hfc-narrow {
  max-width: 860px;
}

.hfc-faq-section {
  background: var(--hfc-soft);
}

.hfc-faq-section details {
  padding: 21px 0;
  border-top: 1px solid #cfd6dd;
}

.hfc-faq-section details:last-child {
  border-bottom: 1px solid #cfd6dd;
}

.hfc-faq-section summary {
  cursor: pointer;
  color: var(--hfc-ink);
  font-size: 18px;
  font-weight: 850;
}

.hfc-faq-section details p {
  color: var(--hfc-muted);
}

.hfc-service-detail {
  align-items: center;
}

.hfc-check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hfc-check-list li {
  position: relative;
  padding: 13px 14px 13px 46px;
  border-bottom: 1px solid var(--hfc-line);
  color: var(--hfc-ink);
  font-weight: 720;
}

.hfc-check-list li::before {
  position: absolute;
  left: 12px;
  color: #173d8f;
  content: "✓";
  font-weight: 1000;
}

.hfc-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hfc-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.hfc-mini-card {
  padding: 27px;
  border: 1px solid var(--hfc-line);
  border-radius: var(--hfc-radius-sm);
  background: #fff;
}

.hfc-mini-card h3 {
  margin-top: 0;
  color: var(--hfc-ink);
}

.hfc-mini-card p {
  margin-bottom: 0;
  color: var(--hfc-muted);
}

.hfc-platform-card {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.hfc-platform-card:hover,
.hfc-platform-card:focus {
  border-color: var(--hfc-orange);
  box-shadow: var(--hfc-shadow);
  transform: translateY(-3px);
}

.hfc-quote {
  padding: 40px;
  border-left: 5px solid var(--hfc-orange);
  border-radius: 0 var(--hfc-radius) var(--hfc-radius) 0;
  background: var(--hfc-soft);
}

.hfc-quote p {
  margin: 0 0 14px;
  color: var(--hfc-ink);
  font-size: 28px;
  font-weight: 850;
  line-height: 1.25;
}

.hfc-quote span {
  color: var(--hfc-muted);
}

.hfc-contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: start;
  gap: 72px;
}

.hfc-contact-card {
  padding: 34px;
  border-radius: var(--hfc-radius);
  background: var(--hfc-ink);
  color: #fff;
  box-shadow: var(--hfc-shadow);
  font-style: normal;
}

.hfc-contact-card .hfc-contact-title {
  margin-top: 0;
  color: #fff;
  font-size: 28px;
  font-weight: 850;
}

.hfc-contact-card p {
  color: #c8d1dc;
}

.hfc-contact-card a {
  color: #fff;
}

.hfc-local-section {
  background: linear-gradient(135deg, #fff, #f5f7fa);
}

.hfc-local-links {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px;
  border: 1px solid var(--hfc-line);
  border-radius: var(--hfc-radius);
  background: #fff;
  box-shadow: var(--hfc-shadow);
}

.hfc-local-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 14px;
  background: #eaf6ea;
  color: var(--hfc-orange-dark);
}

.hfc-local-icon svg {
  width: 26px;
  height: 26px;
}

.hfc-local-links h3 {
  margin: 16px 0 12px;
  color: var(--hfc-ink);
  font-size: 24px;
}

.hfc-local-links a {
  padding: 11px 0;
  border-bottom: 1px solid var(--hfc-line);
  color: var(--hfc-ink);
  font-weight: 780;
  text-decoration: none;
}

.hfc-local-links a:last-child {
  border-bottom: 0;
}

.hfc-local-links a:hover,
.hfc-local-links a:focus {
  color: var(--hfc-orange-dark);
}

.hfc-price-card {
  padding: 36px;
  border-radius: var(--hfc-radius);
  background: var(--hfc-ink);
  color: #fff;
  box-shadow: var(--hfc-shadow);
}

.hfc-price-card > span,
.hfc-price-card > small {
  display: block;
  color: #c1cad6;
}

.hfc-price-card > strong {
  display: block;
  margin: 7px 0 12px;
  color: #fff;
  font-size: 62px;
  line-height: 1;
}

.hfc-price-card .hfc-button {
  margin-top: 23px;
}

.hfc-model-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hfc-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--hfc-line);
  border-radius: var(--hfc-radius-sm);
  background: #fff;
  -webkit-overflow-scrolling: touch;
}

.hfc-price-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  color: var(--hfc-ink);
  text-align: left;
}

.hfc-price-table caption {
  padding: 16px 18px;
  background: #fff;
  color: var(--hfc-ink);
  font-size: 16px;
  font-weight: 850;
  text-align: left;
}

.hfc-price-table thead th {
  padding: 16px 18px;
  background: var(--hfc-ink);
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.03em;
}

.hfc-price-table td,
.hfc-price-table tbody th {
  padding: 15px 18px;
  border-bottom: 1px solid var(--hfc-line);
  vertical-align: top;
}

.hfc-price-table tbody th {
  background: transparent;
  color: var(--hfc-ink);
  font-size: inherit;
  font-weight: 800;
  letter-spacing: normal;
  text-align: left;
}

.hfc-price-table tbody tr:last-child td,
.hfc-price-table tbody tr:last-child th {
  border-bottom: 0;
}

.hfc-price-table tbody tr:hover {
  background: #f4faf4;
}

.hfc-table-note,
.hfc-legal-note {
  color: var(--hfc-muted);
  font-size: 13px;
}

.hfc-legal h2 {
  margin: 40px 0 10px;
  color: var(--hfc-ink);
  font-size: 26px;
  line-height: 1.2;
}

.hfc-legal h2:first-child {
  margin-top: 0;
}

.hfc-legal p {
  color: #3f4958;
}

.hfc-legal a {
  color: #038005;
  font-weight: 700;
}

.hfc-legal .hfc-button {
  color: #fff;
}

.hfc-legal-note {
  margin-top: 46px;
  padding-top: 17px;
  border-top: 1px solid var(--hfc-line);
}

.hfc-cta {
  background: linear-gradient(115deg, #026704, #038005);
  color: #fff;
}

.hfc-cta .hfc-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 60px 0;
}

.hfc-cta .hfc-eyebrow,
.hfc-cta h2,
.hfc-cta p {
  color: #fff;
}

.hfc-cta h2 {
  margin-bottom: 7px;
}

.hfc-cta p {
  margin: 0;
}

.hfc-cta .hfc-button {
  border-color: #fff;
  background: #fff;
  color: var(--hfc-orange-dark) !important;
}

.hfc-cta .hfc-button-outline-light {
  border-color: #fff;
  background: transparent;
  color: #fff !important;
}

.hfc-footer {
  background: #0d1420;
  color: #d3d9e1;
}

.hfc-footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.8fr 0.8fr 0.8fr;
  gap: 54px;
  padding: 68px 0 42px;
}

.hfc-logo-footer {
  color: #fff;
}

.hfc-logo-footer span {
  color: #5aae5c;
}

.hfc-footer p {
  color: #9faab9;
  font-size: 14px;
}

.hfc-footer h2 {
  margin: 0 0 15px;
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hfc-footer nav {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.hfc-footer a {
  color: #d3d9e1;
  text-decoration: none;
}

.hfc-footer a:hover,
.hfc-footer a:focus {
  color: #fff;
}

.hfc-footer-bottom {
  display: flex;
  justify-content: space-between;
  padding: 21px 0;
  border-top: 1px solid #283345;
  color: #8995a5;
  font-size: 12px;
}

.hfc-mobile-actions {
  display: none;
}

body.hfc-site .cmplz-cookiebanner {
  z-index: 2147483000 !important;
  border-radius: 14px;
  box-shadow: 0 18px 55px rgba(23, 32, 46, 0.22);
}

body:not(.hfc-site) .cmplz-cookiebanner {
  z-index: 2147483000 !important;
}

body.hfc-site .cmplz-cookiebanner .cmplz-btn.cmplz-accept {
  border-color: var(--hfc-orange);
  background: var(--hfc-orange);
}

#reparatur-starten,
#cookie-einstellungen {
  scroll-margin-top: 160px;
}

body.hfc-consent-open #simple-chat-button--container,
body.hfc-consent-open .simple-chat-button--container,
body:has(.cmplz-cookiebanner.cmplz-show) #simple-chat-button--container {
  display: none !important;
}

.hfc-legacy-service {
  padding: 42px 0 70px;
  background: #fff;
}

.hfc-legacy-price-note {
  margin-bottom: 34px;
  padding: 18px 22px;
  border: 1px solid #c9e2c9;
  border-left: 5px solid var(--hfc-orange);
  border-radius: 12px;
  background: #f3f9f3;
  color: #4a3420;
  box-shadow: 0 10px 28px rgba(23, 32, 46, 0.06);
}

.hfc-legacy-content {
  width: min(1200px, calc(100% - 40px));
  margin-inline: auto;
}

.hfc-legacy-content > .elementor,
.hfc-legacy-content > [data-elementor-type] {
  width: 100%;
}

body.hfc-legacy .hfc-legacy-content .elementskit-info-image-box.simple-card {
  overflow: hidden;
  border: 1px solid var(--hfc-line) !important;
  border-radius: var(--hfc-radius) !important;
  background: #fff;
  box-shadow: var(--hfc-shadow) !important;
}

body.hfc-legacy .hfc-legacy-content .elementskit-btn {
  border-radius: 9px !important;
  background: var(--hfc-orange) !important;
  color: #fff !important;
  font-weight: 850 !important;
}

body.hfc-legacy .hfc-legacy-content .jet-accordion__item {
  margin-bottom: 12px;
  overflow: hidden;
  border: 1px solid var(--hfc-line);
  border-radius: var(--hfc-radius-sm);
  background: #fff;
  box-shadow: 0 8px 24px rgba(23, 32, 46, 0.06);
}

body.hfc-legacy .hfc-legacy-content .jet-toggle__control {
  min-height: 56px;
  padding: 15px 18px;
  background: var(--hfc-soft);
  color: var(--hfc-ink);
}

body.hfc-legacy .hfc-legacy-content .jet-toggle__control[aria-expanded="true"] {
  background: #eaf6ea;
}

body.hfc-legacy .hfc-legacy-content .jet-toggle__label-text {
  color: var(--hfc-ink) !important;
  font-family: inherit !important;
  font-size: 16px !important;
  font-weight: 850 !important;
  line-height: 1.35;
}

body.hfc-legacy .hfc-legacy-content .jet-toggle__label-icon .jet-toggle__icon {
  border-radius: 50%;
  background: var(--hfc-orange) !important;
  color: #fff !important;
}

body.hfc-legacy .hfc-legacy-content .jet-toggle__content {
  border-top: 1px solid var(--hfc-line);
  color: var(--hfc-ink) !important;
  font-family: inherit !important;
}

body.hfc-legacy .hfc-legacy-content .jet-toggle__content-inner {
  padding: 22px;
}

body.hfc-legacy .hfc-legacy-content .jet-toggle__content-inner h2 span {
  color: var(--hfc-orange-dark) !important;
}

body.hfc-legacy .hfc-legacy-content a.maxbutton.maxbutton-immediate-repair {
  display: inline-flex;
  width: 100%;
  max-width: 300px;
  min-height: 50px;
  height: auto;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--hfc-orange);
  border-radius: 11px;
  background: var(--hfc-orange);
  box-shadow: none;
  text-decoration: none;
}

body.hfc-legacy .hfc-legacy-content a.maxbutton.maxbutton-immediate-repair:hover,
body.hfc-legacy .hfc-legacy-content a.maxbutton.maxbutton-immediate-repair:focus {
  border-color: var(--hfc-orange-dark);
  background: var(--hfc-orange-dark);
  box-shadow: 0 10px 24px rgba(123, 61, 0, 0.2);
}

body.hfc-legacy .hfc-legacy-content a.maxbutton.maxbutton-immediate-repair .mb-text {
  display: block;
  padding: 13px 18px;
  color: #fff;
  font-family: inherit;
  font-size: 15px;
  font-weight: 850;
  line-height: 1.2;
  text-align: center;
  text-shadow: none;
}

body.hfc-legacy .ekit-template-content-header,
body.hfc-legacy .ekit-template-content-footer,
body.hfc-legacy #masthead,
body.hfc-legacy #colophon,
body.hfc-legacy .site-header,
body.hfc-legacy .site-footer {
  display: none !important;
}

@media (max-width: 1160px) {
  .hfc-header-facts > a,
  .hfc-header-facts > div {
    padding-inline: 14px;
  }

  .hfc-header-facts > a:first-child {
    display: none;
  }

  .hfc-nav a {
    padding-inline: 9px;
  }

  .hfc-hero-copy {
    padding-inline: 42px;
  }

  .hfc-finder-fields {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hfc-finder-fields .hfc-button {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

@media (max-width: 1024px) {
  .hfc-header-main {
    min-height: 74px;
  }

  .hfc-header-facts {
    display: none;
  }

  .hfc-menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .hfc-nav-row {
    height: 0;
    background: transparent;
  }

  .hfc-nav {
    position: absolute;
    top: 100%;
    right: 20px;
    left: 20px;
    display: none;
    max-height: calc(100dvh - 110px);
    overflow-y: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 14px;
    border: 1px solid var(--hfc-line);
    border-radius: 0 0 16px 16px;
    background: #fff;
    box-shadow: var(--hfc-shadow-lg);
  }

  .hfc-nav.is-open {
    display: flex;
  }

  .hfc-nav a {
    min-height: 46px;
    padding: 10px 12px;
    border-radius: 8px;
    color: var(--hfc-ink);
  }

  .hfc-nav a:hover,
  .hfc-nav a:focus {
    background: var(--hfc-soft);
    color: var(--hfc-orange-dark);
  }

  .hfc-nav .hfc-nav-cta {
    justify-content: center;
    min-height: 46px;
    margin: 4px 0 0;
    color: #fff;
  }

  body.hfc-menu-open {
    overflow: hidden;
  }

  .hfc-hero-shell {
    grid-template-columns: 1fr 0.9fr;
  }

  .hfc-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hfc-price-teaser-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hfc-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hfc-four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hfc-footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hfc-footer-grid > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 782px) {
  .admin-bar .hfc-header {
    top: 46px;
  }
}

@media (max-width: 768px) {
  #reparatur-starten,
  #cookie-einstellungen {
    scroll-margin-top: 112px;
  }

  .hfc-container {
    width: min(100% - 28px, 1200px);
  }

  .hfc-legacy-service {
    padding: 28px 0 48px;
  }

  .hfc-legacy-price-note {
    margin-bottom: 24px;
    padding: 15px 17px;
  }

  .hfc-legacy-content {
    width: min(100% - 28px, 1200px);
  }

  .hfc-topbar .hfc-container {
    min-height: 32px;
  }

  .hfc-topbar .hfc-container > div a:first-child {
    display: none;
  }

  .hfc-header-main {
    min-height: 68px;
  }

  .hfc-logo {
    font-size: 25px;
  }

  .hfc-logo small {
    display: none;
  }

  .hfc-menu-toggle span {
    display: none;
  }

  .hfc-nav {
    right: 14px;
    left: 14px;
  }

  .hfc-hero {
    padding: 20px 0 42px;
  }

  .hfc-hero-shell {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .hfc-hero-copy {
    padding: 38px 28px 30px;
  }

  .hfc-hero h1,
  .hfc-hero:not(.hfc-hero-home) h1 {
    font-size: clamp(37px, 10vw, 52px);
  }

  .hfc-hero-copy > p {
    font-size: 17px;
  }

  .hfc-hero-media {
    min-height: 330px;
  }

  .hfc-hero-media::after {
    display: none;
  }

  .hfc-hero-media img {
    object-position: 66% center;
  }

  .hfc-hero-compact .hfc-hero-shell {
    min-height: 300px;
  }

  .hfc-finder-section {
    margin-top: -20px;
  }

  .hfc-finder {
    padding: 24px;
  }

  .hfc-finder-head {
    align-items: flex-start;
  }

  .hfc-finder-step {
    display: none;
  }

  .hfc-finder-fields {
    grid-template-columns: 1fr;
  }

  .hfc-finder-fields .hfc-button {
    grid-column: auto;
    width: 100%;
  }

  .hfc-benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hfc-section {
    padding: 66px 0;
  }

  .hfc-section-head {
    margin-bottom: 30px;
  }

  .hfc-section-head h2,
  .hfc-split h2,
  .hfc-contact-grid h2,
  .hfc-cta h2 {
    font-size: clamp(30px, 8vw, 42px);
  }

  .hfc-showcase-grid,
  .hfc-split,
  .hfc-contact-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .hfc-showcase-card picture,
  .hfc-showcase-card img {
    height: 250px;
  }

  .hfc-three {
    grid-template-columns: 1fr;
  }

  .hfc-cta .hfc-container {
    display: block;
    padding: 48px 0;
  }

  .hfc-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px;
  }

  .hfc-footer-grid > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  body.hfc-site {
    padding-bottom: calc(62px + env(safe-area-inset-bottom));
    font-size: 16px;
  }

  .hfc-topbar .hfc-container > span {
    max-width: 70%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hfc-hero-copy {
    padding: 33px 22px 25px;
  }

  .hfc-hero-actions,
  .hfc-contact-actions,
  .hfc-cta-actions {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr;
  }

  .hfc-button {
    width: 100%;
  }

  .hfc-hero-actions .hfc-button-call {
    display: none;
  }

  .hfc-hero-media {
    min-height: 265px;
  }

  .hfc-image-badge {
    right: 14px;
    bottom: 52px;
  }

  .hfc-image-note {
    right: 14px;
    bottom: 14px;
  }

  .hfc-benefit-grid,
  .hfc-service-grid,
  .hfc-price-teaser-grid,
  .hfc-steps,
  .hfc-facts,
  .hfc-four,
  .hfc-model-grid {
    grid-template-columns: 1fr;
  }

  .hfc-benefit {
    min-height: 0;
  }

  .hfc-card {
    min-height: 0;
  }

  .hfc-card-tag {
    position: static;
    display: block;
    margin-top: 14px;
  }

  .hfc-steps li {
    min-height: 0;
  }

  .hfc-price-card > strong {
    font-size: 50px;
  }

  .hfc-price-table {
    display: block;
    min-width: 0;
    font-size: 14px;
  }

  .hfc-table-wrap {
    overflow: visible;
    border: 0;
    background: transparent;
  }

  .hfc-price-table caption {
    display: block;
    width: 100%;
    border: 1px solid var(--hfc-line);
    border-radius: 10px 10px 0 0;
  }

  .hfc-price-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .hfc-price-table tbody,
  .hfc-price-table tr,
  .hfc-price-table tbody th,
  .hfc-price-table td {
    display: block;
    width: 100%;
  }

  .hfc-price-table tr {
    margin: 0 0 14px;
    overflow: hidden;
    border: 1px solid var(--hfc-line);
    border-radius: 10px;
    background: #fff;
  }

  .hfc-price-table tbody th {
    padding: 13px 15px;
    border: 0;
    background: var(--hfc-ink);
    color: #fff;
  }

  .hfc-price-table td {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    padding: 11px 15px;
    text-align: right;
  }

  .hfc-price-table td::before {
    flex: 0 0 44%;
    color: var(--hfc-muted);
    font-size: 11px;
    font-weight: 850;
    text-align: left;
    text-transform: uppercase;
  }

  .hfc-price-table td[data-label]::before {
    content: attr(data-label);
  }

  .hfc-table-wrap[aria-label="iPhone Reparaturpreise"] td:nth-of-type(1)::before {
    content: "Soft OLED / Ersatz";
  }

  .hfc-table-wrap[aria-label="iPhone Reparaturpreise"] td:nth-of-type(2)::before {
    content: "Premium / geprüfte Variante";
  }

  .hfc-table-wrap[aria-label="iPhone Reparaturpreise"] td:nth-of-type(3)::before {
    content: "Teilequalität auf Anfrage";
  }

  .hfc-table-wrap[aria-label="iPhone Reparaturpreise"] td:nth-of-type(4)::before {
    content: "Akku";
  }

  .hfc-table-wrap[aria-label="Reparaturpreise für Konsolen und Gaming-PCs"] td:nth-of-type(1)::before,
  .hfc-table-wrap[aria-label="MacBook Reparaturpreise"] td:nth-of-type(1)::before {
    content: "Leistung";
  }

  .hfc-table-wrap[aria-label="Reparaturpreise für Konsolen und Gaming-PCs"] td:nth-of-type(2)::before {
    content: "Preis inkl. MwSt.";
  }

  .hfc-table-wrap[aria-label="MacBook Reparaturpreise"] td:nth-of-type(2)::before {
    content: "Richtpreis inkl. MwSt.";
  }

  .hfc-footer-grid {
    grid-template-columns: 1fr;
  }

  .hfc-footer-grid > div:first-child {
    grid-column: auto;
  }

  .hfc-footer-bottom {
    display: grid;
    gap: 6px;
  }

  .hfc-mobile-actions {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 980;
    display: grid;
    min-height: calc(60px + env(safe-area-inset-bottom));
    grid-template-columns: repeat(3, 1fr);
    padding-bottom: env(safe-area-inset-bottom);
    border-top: 1px solid #d7dde3;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 -8px 26px rgba(23, 32, 46, 0.12);
    backdrop-filter: blur(12px);
  }

  .hfc-mobile-actions a {
    display: grid;
    min-height: 60px;
    place-items: center;
    border-right: 1px solid #e1e5e9;
    color: var(--hfc-ink);
    font-size: 12px;
    font-weight: 850;
    text-decoration: none;
  }

  .hfc-mobile-actions a:nth-child(2) {
    color: #173d8f;
  }

  .hfc-mobile-actions a:last-child {
    border-right: 0;
    background: var(--hfc-orange);
    color: #fff;
  }

  body.hfc-consent-open .hfc-mobile-actions {
    display: none;
  }

}

@media (prefers-reduced-motion: reduce) {
  body.hfc-site *,
  body.hfc-site *::before,
  body.hfc-site *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
