/*
 * Haza Fix visual system v2
 * A crisp, service-first interface using the established Haza green and blue.
 * This file intentionally loads after site.css and neutralises its old palette.
 */

:root {
  --hfc-green: #038005;
  --hfc-green-dark: #026704;
  --hfc-green-soft: #eaf6ea;
  --hfc-blue: #173d8f;
  --hfc-blue-dark: #102c69;
  --hfc-blue-soft: #edf2fb;
  --hfc-charcoal: #25282d;
  --hfc-ink: #25282d;
  --hfc-ink-2: #333941;
  --hfc-muted: #616973;
  --hfc-line: #dfe3e8;
  --hfc-soft: #f8f8f8;
  --hfc-white: #fff;
  --hfc-radius-sm: 7px;
  --hfc-radius: 11px;
  --hfc-radius-lg: 15px;
  --hfc-shadow: 0 8px 24px rgba(26, 35, 48, 0.08);
  --hfc-shadow-lg: 0 16px 42px rgba(26, 35, 48, 0.11);

  /* Compatibility aliases used by the first-generation stylesheet. */
  --hfc-orange: var(--hfc-green);
  --hfc-orange-dark: var(--hfc-green-dark);
  --hfc-teal: var(--hfc-blue);
  --hfc-teal-soft: var(--hfc-blue-soft);
}

body.hfc-site {
  background: var(--hfc-white);
  color: var(--hfc-charcoal);
  font-family: Inter, Arial, Helvetica, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.hfc-site :focus-visible {
  outline: 3px solid var(--hfc-blue);
  outline-offset: 3px;
}

.hfc-nav a:focus-visible,
.hfc-footer a:focus-visible,
.hfc-cta a:focus-visible,
.hfc-contact-card a:focus-visible,
.hfc-price-card a:focus-visible {
  outline-color: #fff;
}

.hfc-container {
  width: min(1240px, calc(100% - 48px));
}

/* Header: a white identity layer and a strong navigation layer. */
.hfc-topbar {
  display: none;
}

.hfc-header {
  position: relative;
  top: auto;
  background: #fff;
  box-shadow: 0 2px 14px rgba(23, 30, 40, 0.08);
  backdrop-filter: none;
}

.admin-bar .hfc-header {
  top: auto;
}

/* Haza Fix already provides dedicated phone and WhatsApp actions. */
body.hfc-site #simple-chat-button--container,
body.hfc-site .simple-chat-button--container {
  display: none !important;
}

/* Hostinger's owner-only assistant is useful in wp-admin, not over the shop. */
body.hfc-site .kodee-fab {
  display: none !important;
}

body.hfc-legacy [data-hfc-generated="true"] + [data-hfc-legacy-source],
body.hfc-legacy [data-hfc-legacy-source][data-hfc-source-hidden="true"] {
  display: none !important;
}

.hfc-google-strip {
  border-bottom: 1px solid #dfe5ea;
  background: #fff;
}

.hfc-google-strip a {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--hfc-charcoal);
  font-size: 14px;
  text-decoration: none;
}

.hfc-google-strip .hfc-review-stars {
  color: #f4b400;
  letter-spacing: 1px;
}

.hfc-google-strip__link {
  color: var(--hfc-blue);
  font-weight: 800;
}

.hfc-header-main {
  min-height: 94px;
  gap: 30px;
}

.hfc-logo {
  display: flex;
  min-width: 128px;
  align-items: center;
  color: var(--hfc-charcoal);
  font-size: 27px;
  letter-spacing: -0.8px;
}

.hfc-logo span {
  color: var(--hfc-green);
}

.hfc-logo small {
  color: var(--hfc-muted);
}

.hfc-brand-logo {
  display: inline-flex;
  width: min(330px, 32vw);
  max-width: 330px;
  height: 76px;
  align-items: center;
  gap: 14px;
  color: var(--hfc-charcoal);
  text-decoration: none;
}

.hfc-brand-logo picture {
  display: block;
  width: 54px;
  height: 100%;
  flex: 0 0 54px;
}

.hfc-brand-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hfc-brand-copy {
  display: grid;
  min-width: 0;
  gap: 3px;
  line-height: 1.15;
}

.hfc-brand-copy strong {
  color: var(--hfc-blue-dark);
  font-size: 14px;
  font-weight: 850;
}

.hfc-brand-copy small {
  color: var(--hfc-muted);
  font-size: 11px;
}

.hfc-header-facts {
  align-items: center;
}

.hfc-header-facts > a,
.hfc-header-facts > div {
  min-height: 54px;
  padding: 0 18px;
  border-left-color: var(--hfc-line);
}

.hfc-header-facts small {
  color: var(--hfc-muted);
  font-size: 11px;
}

.hfc-header-facts strong {
  color: var(--hfc-charcoal);
  font-size: 13px;
}

.hfc-header-icon {
  width: 40px;
  height: 40px;
  flex-basis: 40px;
  border: 1px solid #d5e6d5;
  background: var(--hfc-green-soft);
  color: var(--hfc-green-dark);
}

.hfc-nav-row {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--hfc-charcoal);
}

.hfc-nav {
  min-height: 54px;
}

.hfc-nav a {
  position: relative;
  min-height: 54px;
  padding: 0 15px;
  color: #fff;
  font-size: 13px;
  font-weight: 760;
}

.hfc-nav a::after {
  position: absolute;
  right: 15px;
  bottom: 7px;
  left: 15px;
  height: 2px;
  background: var(--hfc-green);
  content: "";
  opacity: 0;
  transform: scaleX(0.35);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.hfc-nav a:hover,
.hfc-nav a:focus,
.hfc-nav a[aria-current="page"] {
  color: #fff;
}

.hfc-nav a:hover::after,
.hfc-nav a:focus::after,
.hfc-nav a[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.hfc-nav .hfc-nav-cta {
  min-height: 38px;
  margin-left: 10px;
  border: 1px solid var(--hfc-green);
  border-radius: 5px;
  background: var(--hfc-green);
  color: #fff;
}

.hfc-nav .hfc-nav-cta::after {
  display: none;
}

.hfc-nav .hfc-nav-cta:hover,
.hfc-nav .hfc-nav-cta:focus {
  border-color: var(--hfc-green-dark);
  background: var(--hfc-green-dark);
  color: #fff;
}

.hfc-menu-toggle {
  border-color: #cfd4da;
  border-radius: 6px;
  color: var(--hfc-charcoal);
}

.hfc-menu-toggle:hover,
.hfc-menu-toggle:focus {
  border-color: var(--hfc-blue);
  color: var(--hfc-blue);
}

.hfc-breadcrumb {
  border-bottom-color: var(--hfc-line);
  background: #fff;
}

.hfc-breadcrumb a:hover,
.hfc-breadcrumb a:focus {
  color: var(--hfc-blue);
}

/* Light service banner. */
.hfc-hero {
  padding: 34px 0 62px;
  background: linear-gradient(180deg, #f8fafc 0%, #f4f5f7 100%);
}

.hfc-hero-shell {
  min-height: 500px;
  overflow: hidden;
  border: 1px solid #dfe4e9;
  border-radius: var(--hfc-radius-lg);
  background: #fff;
  box-shadow: var(--hfc-shadow-lg);
}

.hfc-hero-copy {
  padding: 56px 50px;
}

.hfc-kicker,
.hfc-eyebrow {
  color: var(--hfc-green-dark);
  letter-spacing: 0.105em;
}

.hfc-hero h1,
.hfc-hero:not(.hfc-hero-home) h1 {
  color: var(--hfc-charcoal) !important;
  font-size: clamp(38px, 4vw, 56px);
  letter-spacing: -0.035em;
  line-height: 1.06;
}

.hfc-hero-copy > p {
  color: #525b66;
  font-size: 18px;
}

.hfc-hero-points {
  color: var(--hfc-ink-2);
}

.hfc-hero-points li::before {
  background: var(--hfc-green-soft);
  color: var(--hfc-green-dark);
}

.hfc-hero-media {
  background: var(--hfc-blue-soft);
}

.hfc-hero-media::after {
  background: linear-gradient(90deg, #fff, rgba(255, 255, 255, 0));
}

.hfc-image-badge,
.hfc-image-note {
  border-color: rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(18, 29, 45, 0.14);
}

.hfc-image-badge strong {
  color: var(--hfc-green-dark);
}

.hfc-hero-compact {
  padding-bottom: 44px;
}

.hfc-hero-compact .hfc-hero-shell {
  min-height: 310px;
  border-left: 5px solid var(--hfc-green);
}

/* Buttons and form controls. */
.hfc-button,
body.hfc-site button.hfc-button,
body.hfc-site input[type="submit"].hfc-button {
  min-height: 48px;
  padding: 11px 22px;
  border: 2px solid var(--hfc-green);
  border-radius: 6px;
  background: var(--hfc-green);
  color: #fff !important;
  font-weight: 820;
  box-shadow: none;
}

.hfc-button:hover,
.hfc-button:focus,
body.hfc-site button.hfc-button:hover,
body.hfc-site button.hfc-button:focus {
  border-color: var(--hfc-green-dark);
  background: var(--hfc-green-dark);
  box-shadow: 0 8px 20px rgba(3, 128, 5, 0.18);
}

.hfc-button-outline {
  border-color: var(--hfc-blue);
  background: #fff;
  color: var(--hfc-blue) !important;
}

.hfc-button-outline:hover,
.hfc-button-outline:focus {
  border-color: var(--hfc-blue-dark);
  background: var(--hfc-blue-dark);
  color: #fff !important;
}

.hfc-button-teal,
.hfc-button-blue {
  border-color: var(--hfc-blue);
  background: var(--hfc-blue);
}

.hfc-button-teal:hover,
.hfc-button-teal:focus,
.hfc-button-blue:hover,
.hfc-button-blue:focus {
  border-color: var(--hfc-blue-dark);
  background: var(--hfc-blue-dark);
  box-shadow: 0 8px 20px rgba(23, 61, 143, 0.18);
}

body.hfc-site input[type="text"],
body.hfc-site input[type="search"],
body.hfc-site input[type="email"],
body.hfc-site input[type="tel"],
body.hfc-site select,
body.hfc-site textarea {
  border-color: #cbd2d9;
  border-radius: 6px;
  background: #fff;
  color: var(--hfc-charcoal);
}

body.hfc-site input:focus,
body.hfc-site select:focus,
body.hfc-site textarea:focus {
  border-color: var(--hfc-blue);
  box-shadow: 0 0 0 3px rgba(23, 61, 143, 0.12);
  outline: 0;
}

body.hfc-site input:focus-visible,
body.hfc-site select:focus-visible,
body.hfc-site textarea:focus-visible {
  outline: 3px solid var(--hfc-blue);
  outline-offset: 2px;
}

/* Finder, benefits and general sections. */
.hfc-finder-section {
  margin-top: -42px;
}

.hfc-finder {
  padding: 28px;
  border: 1px solid #dce2e7;
  border-top: 5px solid var(--hfc-green);
  border-radius: 10px;
  box-shadow: var(--hfc-shadow-lg);
}

.hfc-finder-step {
  border: 1px solid #d8e1f3;
  border-radius: 6px;
  background: var(--hfc-blue-soft);
  color: var(--hfc-blue);
}

.hfc-finder select {
  border-color: #cbd2d9;
  border-radius: 6px;
}

.hfc-finder-note a,
.hfc-finder noscript a {
  color: var(--hfc-blue);
}

.hfc-benefit {
  border-color: var(--hfc-line);
  border-radius: 8px;
}

.hfc-benefit > span {
  border-radius: 7px;
  background: var(--hfc-green-soft);
  color: var(--hfc-green-dark);
}

.hfc-section {
  padding: 80px 0;
}

.hfc-section-soft,
.hfc-faq-section {
  background: var(--hfc-soft);
}

.hfc-section-dark {
  background: var(--hfc-charcoal);
}

.hfc-section-dark .hfc-eyebrow {
  color: #8fe091;
}

.hfc-card,
.hfc-mini-card,
.hfc-showcase-card,
.hfc-price-tile,
.hfc-steps li,
.hfc-local-links {
  border-color: var(--hfc-line);
  border-radius: var(--hfc-radius);
  background: #fff;
  box-shadow: none;
}

.hfc-card::after {
  background: radial-gradient(circle, rgba(23, 61, 143, 0.09), rgba(23, 61, 143, 0));
}

.hfc-card:hover,
.hfc-card:focus,
.hfc-platform-card:hover,
.hfc-platform-card:focus,
.hfc-price-tile:hover,
.hfc-price-tile:focus,
.hfc-showcase-card:hover,
.hfc-showcase-card:focus-within {
  border-color: rgba(3, 128, 5, 0.62);
  box-shadow: var(--hfc-shadow);
}

.hfc-service-icon {
  border-radius: 8px;
  background: var(--hfc-blue-soft);
  color: var(--hfc-blue);
}

.hfc-card-tag,
.hfc-price-tile > span,
.hfc-link,
.hfc-local-links a:hover,
.hfc-local-links a:focus {
  color: var(--hfc-green-dark);
}

.hfc-price-teaser {
  border-top-color: var(--hfc-line);
  background: var(--hfc-soft);
}

.hfc-price-tile-accent {
  border-color: var(--hfc-blue);
  background: var(--hfc-blue);
}

.hfc-price-tile-accent > span {
  color: #bde5be;
}

.hfc-showcase-card > div > span {
  color: var(--hfc-blue);
}

.hfc-facts div {
  border-color: #424950;
  border-radius: 8px;
  background: #30343a;
}

.hfc-steps li > span {
  border-radius: 6px;
  background: var(--hfc-green);
}

.hfc-check-list li::before {
  color: var(--hfc-green-dark);
}

.hfc-quote {
  border-left-color: var(--hfc-green);
  border-radius: 0 10px 10px 0;
  background: var(--hfc-soft);
}

.hfc-contact-card,
.hfc-price-card {
  border-radius: 11px;
  background: var(--hfc-blue-dark);
}

.hfc-local-section {
  background: #f7f9fb;
}

.hfc-local-icon {
  border-radius: 7px;
  background: var(--hfc-green-soft);
  color: var(--hfc-green-dark);
}

/* New click-through device and repair catalogue. */
.hfc-catalog {
  padding: 54px 0 84px;
  background: var(--hfc-soft);
}

.hfc-catalog > .hfc-container,
.hfc-catalog-stage {
  min-width: 0;
}

.hfc-catalog-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 820px;
  margin: 0 auto 28px;
  padding: 0;
  counter-reset: hfc-catalog-step;
  list-style: none;
}

.hfc-catalog-steps > * {
  position: relative;
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 12px;
  color: #59636f;
  font-size: 13px;
  font-weight: 760;
  text-align: center;
  counter-increment: hfc-catalog-step;
}

.hfc-catalog-steps > *::before {
  position: relative;
  z-index: 2;
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  place-items: center;
  border: 2px solid #c9cfd6;
  border-radius: 50%;
  background: #fff;
  color: #59636f;
  content: counter(hfc-catalog-step);
  font-size: 12px;
}

.hfc-catalog-steps > * + *::after {
  position: absolute;
  top: 14px;
  right: 50%;
  width: 100%;
  height: 2px;
  background: #d8dde3;
  content: "";
  transform: translateX(-15px);
}

.hfc-catalog-steps > .is-active,
.hfc-catalog-steps > [aria-current="step"],
.hfc-catalog-steps > .is-complete {
  color: var(--hfc-charcoal);
}

.hfc-catalog-steps > .is-active::before,
.hfc-catalog-steps > [aria-current="step"]::before {
  border-color: var(--hfc-green);
  background: var(--hfc-green);
  color: #fff;
}

.hfc-catalog-steps > .is-complete::before {
  border-color: var(--hfc-blue);
  background: var(--hfc-blue);
  color: #fff;
  content: "\2713";
}

.hfc-catalog-stage {
  scroll-margin-top: 154px;
  padding: 34px;
  border: 1px solid var(--hfc-line);
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--hfc-shadow);
}

#reparaturen-preise {
  scroll-margin-top: 154px;
}

.hfc-catalog-stage > :first-child {
  margin-top: 0;
}

.hfc-catalog-stage > h2,
.hfc-catalog-stage header h2 {
  margin: 0 0 8px;
  color: var(--hfc-charcoal);
  font-size: clamp(27px, 3vw, 38px);
  letter-spacing: -0.025em;
  line-height: 1.12;
}

.hfc-catalog-stage > p,
.hfc-catalog-stage header p {
  margin: 0 0 25px;
  color: var(--hfc-muted);
}

.hfc-choice-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 15px;
}

.hfc-choice-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 112px;
  align-items: center;
  gap: 15px;
  padding: 18px;
  border: 1px solid #d9dee4;
  border-radius: 8px;
  background: #fff;
  color: var(--hfc-charcoal);
  font: inherit;
  font-weight: 780;
  line-height: 1.25;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.hfc-choice-card::after {
  margin-left: auto;
  color: var(--hfc-green-dark);
  content: "\203A";
  font-size: 28px;
  font-weight: 500;
  line-height: 1;
}

.hfc-choice-card:hover,
.hfc-choice-card:focus,
.hfc-choice-card.is-active,
.hfc-choice-card[aria-pressed="true"],
.hfc-choice-card[aria-current="true"] {
  border-color: var(--hfc-green);
  box-shadow: 0 7px 18px rgba(3, 128, 5, 0.11);
  color: var(--hfc-green-dark);
  transform: translateY(-2px);
}

.hfc-choice-card img,
.hfc-choice-card svg,
.hfc-choice-card .hfc-choice-icon {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  object-fit: contain;
}

.hfc-choice-card .hfc-choice-icon {
  display: grid;
  place-items: center;
  border-radius: 7px;
  background: var(--hfc-blue-soft);
  color: var(--hfc-blue);
}

.hfc-choice-card .hfc-choice-icon svg {
  width: 29px;
  height: 29px;
}

.hfc-catalog-search {
  position: relative;
  max-width: 660px;
  margin: 0 0 26px;
}

.hfc-catalog-search label {
  display: block;
  margin-bottom: 7px;
  color: var(--hfc-charcoal);
  font-size: 13px;
  font-weight: 800;
}

.hfc-catalog-search input[type="search"],
.hfc-catalog-search input[type="text"] {
  width: 100%;
  min-height: 52px;
  padding: 10px 48px 10px 16px;
  border: 1px solid #c7ced6;
  border-radius: 6px;
  background: #fff;
  font: inherit;
  font-size: 15px;
}

.hfc-catalog-search button {
  position: absolute;
  right: 5px;
  bottom: 5px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 0;
  border-radius: 5px;
  background: var(--hfc-blue);
  color: #fff;
  cursor: pointer;
}

.hfc-model-grid-v2 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.hfc-model-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 178px;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px;
  overflow: hidden;
  border: 1px solid #d9dee4;
  border-radius: 8px;
  background: #fff;
  color: var(--hfc-charcoal);
  text-decoration: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.hfc-model-card:hover,
.hfc-model-card:focus,
.hfc-model-card:focus-within,
.hfc-model-card.is-active {
  border-color: var(--hfc-green);
  box-shadow: 0 8px 20px rgba(24, 34, 48, 0.1);
  transform: translateY(-2px);
}

.hfc-model-card img {
  width: auto;
  max-width: 100%;
  height: 76px;
  margin: 0 auto 15px;
  object-fit: contain;
}

.hfc-model-card h3,
.hfc-model-card strong {
  margin: auto 0 4px;
  color: var(--hfc-charcoal);
  font-size: 17px;
  font-weight: 830;
  line-height: 1.25;
}

.hfc-model-card p,
.hfc-model-card small,
.hfc-model-card span {
  margin: 0;
  color: var(--hfc-muted);
  font-size: 12px;
}

.hfc-model-card::after {
  position: absolute;
  right: 16px;
  bottom: 14px;
  color: var(--hfc-green-dark);
  content: "\2192";
  font-size: 19px;
}

.hfc-model-banner {
  display: grid;
  min-width: 0;
  grid-template-columns: minmax(130px, 220px) minmax(0, 1fr);
  align-items: center;
  gap: 30px;
  margin-bottom: 24px;
  padding: 28px;
  border: 1px solid #dfe4e9;
  border-left: 5px solid var(--hfc-green);
  border-radius: 10px;
  background: linear-gradient(110deg, #fff 0%, #f5f8fc 100%);
}

.hfc-model-banner img {
  width: 100%;
  max-height: 170px;
  object-fit: contain;
}

.hfc-model-banner h1,
.hfc-model-banner h2 {
  margin: 0 0 8px;
  color: var(--hfc-charcoal);
  font-size: clamp(29px, 3.5vw, 44px);
  letter-spacing: -0.03em;
  hyphens: none;
  line-height: 1.1;
  overflow-wrap: normal;
  word-break: normal;
}

.hfc-model-banner p {
  max-width: 700px;
  margin: 0;
  color: var(--hfc-muted);
}

.hfc-model-tabs {
  display: flex;
  min-width: 0;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 24px;
  padding: 0;
  border-bottom: 1px solid var(--hfc-line);
  list-style: none;
}

.hfc-model-tabs a,
.hfc-model-tabs button {
  display: inline-flex;
  min-height: 43px;
  align-items: center;
  margin-bottom: -1px;
  padding: 9px 17px;
  border: 1px solid #d8dde3;
  border-bottom-color: var(--hfc-line);
  border-radius: 6px 6px 0 0;
  background: #f4f5f6;
  color: var(--hfc-charcoal);
  font: inherit;
  font-size: 13px;
  font-weight: 780;
  text-decoration: none;
  cursor: pointer;
}

.hfc-model-tabs a:hover,
.hfc-model-tabs a:focus,
.hfc-model-tabs button:hover,
.hfc-model-tabs button:focus,
.hfc-model-tabs .is-active,
.hfc-model-tabs [aria-selected="true"],
.hfc-model-tabs [aria-current="page"] {
  border-color: var(--hfc-blue);
  border-bottom-color: var(--hfc-blue);
  background: var(--hfc-blue);
  color: #fff;
}

.hfc-model-layout {
  display: grid;
  min-width: 0;
  grid-template-columns: minmax(210px, 0.25fr) minmax(0, 1fr);
  align-items: start;
  gap: 24px;
}

.hfc-model-sidebar {
  position: sticky;
  top: 170px;
  min-width: 0;
  padding: 20px;
  border: 1px solid var(--hfc-line);
  border-radius: 8px;
  background: #fff;
}

.admin-bar .hfc-model-sidebar {
  top: 202px;
}

.hfc-model-sidebar h2,
.hfc-model-sidebar h3 {
  margin: 0 0 12px;
  color: var(--hfc-charcoal);
  font-size: 17px;
}

.hfc-model-sidebar ul,
.hfc-model-sidebar nav {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hfc-model-sidebar a,
.hfc-model-sidebar button {
  display: flex;
  width: 100%;
  min-height: 40px;
  align-items: center;
  padding: 8px 10px;
  border: 0;
  border-left: 3px solid transparent;
  border-radius: 4px;
  background: transparent;
  color: #4d555f;
  font: inherit;
  font-size: 13px;
  font-weight: 720;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
}

.hfc-model-sidebar a:hover,
.hfc-model-sidebar a:focus,
.hfc-model-sidebar button:hover,
.hfc-model-sidebar button:focus,
.hfc-model-sidebar .is-active,
.hfc-model-sidebar [aria-current="true"] {
  border-left-color: var(--hfc-green);
  background: var(--hfc-green-soft);
  color: var(--hfc-green-dark);
}

.hfc-repair-grid {
  display: grid;
  min-width: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  gap: 15px;
}

details.hfc-repair-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #d9dee4;
  border-radius: 8px;
  background: #fff;
  box-shadow: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

details.hfc-repair-card:hover,
details.hfc-repair-card:focus-within {
  border-color: rgba(3, 128, 5, 0.7);
  box-shadow: 0 8px 22px rgba(24, 34, 48, 0.09);
  transform: translateY(-2px);
}

details.hfc-repair-card > summary:focus-visible {
  outline: 3px solid var(--hfc-blue);
  outline-offset: -3px;
}

details.hfc-repair-card > summary {
  display: grid;
  min-height: 104px;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 10px;
  padding: 18px;
  border-bottom: 1px solid var(--hfc-line);
  background: #fff;
  color: var(--hfc-charcoal);
  list-style: none;
  cursor: default;
}

details.hfc-repair-card > summary::-webkit-details-marker {
  display: none;
}

details.hfc-repair-card > summary::marker {
  display: none;
  content: "";
}

details.hfc-repair-card > summary::after {
  display: none;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 50%;
  background: var(--hfc-blue-soft);
  color: var(--hfc-blue);
  content: "+";
  font-size: 20px;
  line-height: 1;
}

details.hfc-repair-card > summary h3,
details.hfc-repair-card > summary h4 {
  margin: 0;
  color: var(--hfc-charcoal);
  font-size: 16px;
  line-height: 1.28;
}

details.hfc-repair-card > summary strong,
details.hfc-repair-card > summary .hfc-repair-price {
  color: var(--hfc-green-dark);
  font-size: 18px;
  font-weight: 880;
  white-space: nowrap;
}

.hfc-repair-card-body {
  padding: 18px;
  color: var(--hfc-muted);
  font-size: 13px;
}

details.hfc-repair-card:not([open]) > .hfc-repair-card-body {
  display: block;
}

.hfc-repair-card-body > :first-child {
  margin-top: 0;
}

.hfc-repair-card-body > :last-child {
  margin-bottom: 0;
}

.hfc-repair-card-body ul {
  margin: 12px 0;
  padding-left: 19px;
}

.hfc-repair-card-body li::marker {
  color: var(--hfc-green);
}

.hfc-repair-card-body .hfc-button {
  width: 100%;
  min-height: 42px;
  margin-top: 12px;
  padding: 9px 13px;
  font-size: 13px;
}

/* Price tables. */
.hfc-table-wrap {
  border-color: var(--hfc-line);
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(24, 34, 48, 0.05);
}

.hfc-price-table caption {
  border-bottom: 1px solid var(--hfc-line);
  background: #fff;
}

.hfc-price-table thead th {
  background: var(--hfc-blue);
  color: #fff;
}

.hfc-price-table td,
.hfc-price-table tbody th {
  border-bottom-color: var(--hfc-line);
}

.hfc-price-table tbody tr:nth-child(even) {
  background: #fafbfc;
}

.hfc-price-table tbody tr:hover {
  background: var(--hfc-green-soft);
}

.hfc-price-table a {
  color: var(--hfc-blue);
  font-weight: 760;
}

/* Legal and conversion sections. */
.hfc-legal a {
  color: var(--hfc-blue);
}

.hfc-legal .hfc-button {
  color: #fff;
}

.hfc-cta {
  background: linear-gradient(115deg, var(--hfc-blue-dark), var(--hfc-blue));
}

.hfc-cta .hfc-button {
  border-color: #fff;
  background: #fff;
  color: var(--hfc-blue-dark) !important;
}

.hfc-cta .hfc-button:hover,
.hfc-cta .hfc-button:focus {
  border-color: var(--hfc-green);
  background: var(--hfc-green);
  color: #fff !important;
}

.hfc-cta .hfc-button-outline-light {
  border-color: #fff;
  background: transparent;
  color: #fff !important;
}

/* Legacy Elementor/model pages inherit the same Haza system. */
.hfc-legacy-price-note {
  border-color: #cee2ce;
  border-left-color: var(--hfc-green);
  border-radius: 7px;
  background: var(--hfc-green-soft);
  color: #254326;
}

body.hfc-legacy .hfc-legacy-content .elementskit-info-image-box.simple-card {
  border-color: var(--hfc-line) !important;
  border-radius: 10px !important;
  box-shadow: var(--hfc-shadow) !important;
}

/* The legacy source remains as a no-JavaScript fallback. Once its accordion
 * entries have been rebuilt as Haza Fix repair cards, keep that duplicate
 * source out of both the visual and accessibility trees. */
body.hfc-legacy .hfc-legacy-content[data-hfc-source-hidden="true"],
body.hfc-legacy .hfc-legacy-content[hidden] {
  display: none !important;
}

.hfc-model-banner-icon {
  display: grid;
  width: clamp(96px, 13vw, 150px);
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid #d6e2f5;
  border-radius: 10px;
  background: var(--hfc-blue-soft);
  color: var(--hfc-blue);
}

.hfc-model-banner-icon svg {
  width: 48%;
  height: 48%;
}

body.hfc-legacy .hfc-legacy-content .elementskit-btn,
body.hfc-legacy .hfc-legacy-content .elementor-button {
  border-color: var(--hfc-green) !important;
  border-radius: 6px !important;
  background: var(--hfc-green) !important;
  color: #fff !important;
}

body.hfc-legacy .hfc-legacy-content .elementskit-btn:hover,
body.hfc-legacy .hfc-legacy-content .elementskit-btn:focus,
body.hfc-legacy .hfc-legacy-content .elementor-button:hover,
body.hfc-legacy .hfc-legacy-content .elementor-button:focus {
  border-color: var(--hfc-green-dark) !important;
  background: var(--hfc-green-dark) !important;
}

body.hfc-legacy .hfc-legacy-content .jet-accordion__item {
  border-color: var(--hfc-line);
  border-radius: 8px;
  box-shadow: 0 5px 16px rgba(24, 34, 48, 0.06);
}

body.hfc-legacy .hfc-legacy-content .jet-toggle__control {
  background: var(--hfc-soft);
  color: var(--hfc-charcoal);
}

body.hfc-legacy .hfc-legacy-content .jet-toggle__control[aria-expanded="true"] {
  background: var(--hfc-blue-soft);
}

body.hfc-legacy .hfc-legacy-content .jet-toggle__label-icon .jet-toggle__icon {
  background: var(--hfc-blue) !important;
  color: #fff !important;
}

body.hfc-legacy .hfc-legacy-content .jet-toggle__content-inner h2 span,
body.hfc-legacy .hfc-legacy-content .jet-toggle__content-inner h3 span {
  color: var(--hfc-green-dark) !important;
}

body.hfc-legacy .hfc-legacy-content a.maxbutton.maxbutton-immediate-repair {
  border-color: var(--hfc-green) !important;
  border-radius: 6px !important;
  background: var(--hfc-green) !important;
}

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-green-dark) !important;
  background: var(--hfc-green-dark) !important;
  box-shadow: 0 8px 20px rgba(3, 128, 5, 0.18) !important;
}

/* Footer and consent. */
.hfc-footer {
  background: var(--hfc-charcoal);
  color: #dce0e4;
}

.hfc-footer-grid {
  gap: 48px;
  padding: 62px 0 38px;
}

.hfc-footer .hfc-brand-logo {
  height: 70px;
  color: #fff;
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.12));
}

.hfc-footer .hfc-brand-copy strong {
  color: #fff;
}

.hfc-footer .hfc-brand-copy small {
  color: #c8ced5;
}

.hfc-logo-footer span {
  color: #8fe091;
}

.hfc-footer a:hover,
.hfc-footer a:focus {
  color: #9be69d;
}

.hfc-footer-bottom {
  border-top-color: #454b52;
}

body.hfc-site .cmplz-cookiebanner {
  border: 1px solid #d8dde3;
  border-radius: 9px;
  box-shadow: 0 18px 55px rgba(18, 27, 40, 0.22);
}

body.hfc-site .cmplz-cookiebanner .cmplz-btn.cmplz-accept {
  border-color: var(--hfc-green) !important;
  background: var(--hfc-green) !important;
  color: #fff !important;
}

body.hfc-site .cmplz-cookiebanner .cmplz-btn.cmplz-deny,
body.hfc-site .cmplz-cookiebanner .cmplz-btn.cmplz-view-preferences {
  border-color: var(--hfc-blue) !important;
  background: #fff !important;
  color: var(--hfc-blue) !important;
}

@media (max-width: 1180px) {
  .hfc-nav a {
    padding-inline: 10px;
  }

  .hfc-choice-grid,
  .hfc-model-grid-v2 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hfc-repair-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  .hfc-header-main {
    min-height: 76px;
  }

  .hfc-brand-logo {
    width: min(280px, 45vw);
    height: 62px;
  }

  .hfc-nav-row {
    border-top: 0;
    background: transparent;
  }

  .hfc-nav {
    border: 1px solid var(--hfc-line);
    border-top: 4px solid var(--hfc-green);
    border-radius: 0 0 9px 9px;
    background: #fff;
    box-shadow: var(--hfc-shadow-lg);
  }

  .hfc-nav a {
    color: var(--hfc-charcoal);
  }

  .hfc-nav a::after {
    display: none;
  }

  .hfc-nav a:hover,
  .hfc-nav a:focus,
  .hfc-nav a[aria-current="page"] {
    background: var(--hfc-blue-soft);
    color: var(--hfc-blue);
  }

  .hfc-nav .hfc-nav-cta {
    background: var(--hfc-green);
    color: #fff;
  }

  .hfc-model-layout {
    grid-template-columns: 1fr;
  }

  .hfc-model-sidebar {
    position: static;
  }

  .hfc-model-sidebar ul,
  .hfc-model-sidebar nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .hfc-container {
    width: min(100% - 30px, 1240px);
  }

  .hfc-hero {
    padding: 20px 0 40px;
  }

  .hfc-hero-shell {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .hfc-hero-copy {
    padding: 38px 30px 32px;
  }

  .hfc-hero-media {
    min-height: 310px;
  }

  .hfc-hero-media::after {
    display: none;
  }

  .hfc-section {
    padding: 62px 0;
  }

  .hfc-catalog {
    padding: 40px 0 62px;
  }

  .hfc-catalog-stage {
    padding: 25px;
  }

  .hfc-choice-grid,
  .hfc-model-grid-v2,
  .hfc-repair-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hfc-model-banner {
    grid-template-columns: 130px minmax(0, 1fr);
    gap: 20px;
    padding: 22px;
  }
}

@media (max-width: 600px) {
  body.hfc-site {
    padding-bottom: calc(64px + env(safe-area-inset-bottom));
    font-size: 16px;
  }

  .hfc-header-main {
    min-height: 68px;
  }

  .hfc-logo {
    min-width: 0;
  }

  .hfc-brand-logo {
    width: 48px;
    max-width: 48px;
    height: 56px;
  }

  .hfc-brand-logo picture {
    width: 48px;
    flex-basis: 48px;
  }

  .hfc-brand-copy {
    display: none;
  }

  .hfc-hero-copy {
    padding: 31px 21px 25px;
  }

  .hfc-hero h1,
  .hfc-hero:not(.hfc-hero-home) h1 {
    font-size: clamp(32px, 10vw, 43px);
  }

  .hfc-hero-copy > p {
    font-size: 16px;
  }

  .hfc-hero-media {
    min-height: 245px;
  }

  .hfc-hero-compact .hfc-hero-shell {
    min-height: 0;
  }

  .hfc-finder {
    padding: 21px;
  }

  .hfc-catalog-steps {
    margin-bottom: 20px;
  }

  .hfc-catalog-steps > * {
    display: grid;
    gap: 5px;
    padding: 0 3px;
    font-size: 11px;
    line-height: 1.2;
  }

  .hfc-catalog-steps > * + *::after {
    transform: translateX(-13px);
  }

  .hfc-catalog-stage {
    scroll-margin-top: 92px;
    padding: 19px;
    border-radius: 8px;
  }

  #reparaturen-preise {
    scroll-margin-top: 92px;
  }

  .hfc-choice-grid,
  .hfc-model-grid-v2,
  .hfc-repair-grid {
    grid-template-columns: 1fr;
  }

  .hfc-choice-card {
    min-height: 78px;
    padding: 13px 15px;
  }

  .hfc-choice-card img,
  .hfc-choice-card svg,
  .hfc-choice-card .hfc-choice-icon {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }

  .hfc-model-card {
    min-height: 106px;
    padding: 16px 47px 16px 16px;
  }

  .hfc-model-card img {
    width: 62px;
    height: 62px;
    margin: 0 13px 0 0;
    float: left;
  }

  .hfc-model-banner {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 20px;
  }

  .hfc-model-banner img {
    width: auto;
    max-width: 130px;
    max-height: 100px;
    margin-inline: auto;
  }

  .hfc-model-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 2px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }

  .hfc-model-tabs a,
  .hfc-model-tabs button {
    flex: 0 0 auto;
  }

  .hfc-model-sidebar {
    padding: 15px;
  }

  .hfc-model-sidebar ul,
  .hfc-model-sidebar nav {
    grid-template-columns: 1fr;
  }

  details.hfc-repair-card {
    transform: none;
  }

  details.hfc-repair-card:hover,
  details.hfc-repair-card:focus-within {
    transform: none;
  }

  details.hfc-repair-card > summary {
    min-height: 76px;
    padding: 14px;
    border-bottom: 0;
    cursor: pointer;
  }

  details.hfc-repair-card > summary::after {
    display: grid;
  }

  details.hfc-repair-card[open] > summary {
    border-bottom: 1px solid var(--hfc-line);
    background: var(--hfc-blue-soft);
  }

  details.hfc-repair-card[open] > summary::after {
    background: var(--hfc-blue);
    color: #fff;
    content: "\2212";
  }

  details.hfc-repair-card:not([open]) > .hfc-repair-card-body {
    display: none;
  }

  .hfc-repair-card-body {
    padding: 15px;
  }

  .hfc-price-table tbody th {
    background: var(--hfc-blue);
  }

  .hfc-price-table tbody tr:hover {
    background: #fff;
  }

  .hfc-mobile-actions {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 980;
    display: grid;
    min-height: calc(62px + env(safe-area-inset-bottom));
    grid-template-columns: repeat(3, 1fr);
    padding-bottom: env(safe-area-inset-bottom);
    border-top: 1px solid #d8dde3;
    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: 62px;
    place-items: center;
    border-right: 1px solid #e1e5e9;
    color: var(--hfc-charcoal);
    font-size: 12px;
    font-weight: 850;
    text-decoration: none;
  }

  .hfc-mobile-actions a:nth-child(2) {
    color: var(--hfc-blue);
  }

  .hfc-mobile-actions a:last-child {
    border-right: 0;
    background: var(--hfc-green);
    color: #fff;
  }

  body.hfc-consent-open .hfc-mobile-actions,
  body:has(.cmplz-cookiebanner.cmplz-show) .hfc-mobile-actions,
  body:has(.cmplz-cookiebanner.cmplz-showing) .hfc-mobile-actions {
    display: none !important;
  }

  body.hfc-consent-open {
    padding-bottom: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hfc-nav a::after,
  .hfc-choice-card,
  .hfc-model-card,
  details.hfc-repair-card {
    transition: none;
  }
}

@media print {
  .hfc-header,
  .hfc-mobile-actions,
  .cmplz-cookiebanner,
  #simple-chat-button--container {
    display: none !important;
  }

  body.hfc-site {
    padding: 0;
    color: #000;
  }

  .hfc-catalog-stage,
  .hfc-model-banner,
  details.hfc-repair-card {
    border: 1px solid #aaa;
    box-shadow: none;
  }
}

/*
 * Interaction hardening. Astra's generic button hover styles otherwise leak
 * into the catalogue and can combine a blue background with green text.
 */
body.hfc-site button.hfc-catalog-choice,
body.hfc-site button.hfc-choice-card {
  border-color: #d9dee4 !important;
  background: #fff !important;
  color: var(--hfc-charcoal) !important;
  text-decoration: none !important;
  -webkit-appearance: none;
  appearance: none;
}

body.hfc-site button.hfc-catalog-choice:hover,
body.hfc-site button.hfc-catalog-choice:focus,
body.hfc-site button.hfc-catalog-choice:focus-visible,
body.hfc-site button.hfc-catalog-choice.is-active,
body.hfc-site button.hfc-catalog-choice[aria-pressed="true"],
body.hfc-site button.hfc-catalog-choice[aria-current="true"],
body.hfc-site button.hfc-choice-card:hover,
body.hfc-site button.hfc-choice-card:focus,
body.hfc-site button.hfc-choice-card:focus-visible {
  border-color: var(--hfc-green-dark) !important;
  background: var(--hfc-green-soft) !important;
  color: var(--hfc-green-dark) !important;
  box-shadow: 0 7px 18px rgba(3, 103, 4, 0.14) !important;
}

body.hfc-site button.hfc-catalog-choice:hover .hfc-catalog-choice__copy strong,
body.hfc-site button.hfc-catalog-choice:focus .hfc-catalog-choice__copy strong,
body.hfc-site button.hfc-catalog-choice:focus-visible .hfc-catalog-choice__copy strong,
body.hfc-site button.hfc-catalog-choice.is-active .hfc-catalog-choice__copy strong,
body.hfc-site button.hfc-catalog-choice[aria-pressed="true"] .hfc-catalog-choice__copy strong,
body.hfc-site button.hfc-catalog-choice[aria-current="true"] .hfc-catalog-choice__copy strong {
  color: var(--hfc-green-dark) !important;
}

body.hfc-site .hfc-catalog-path button {
  border-color: #d7dce2 !important;
  background: #fff !important;
  color: var(--hfc-blue) !important;
}

body.hfc-site .hfc-catalog-path button:hover,
body.hfc-site .hfc-catalog-path button:focus,
body.hfc-site .hfc-catalog-path button:focus-visible {
  border-color: var(--hfc-blue) !important;
  background: var(--hfc-blue-soft) !important;
  color: var(--hfc-blue-dark) !important;
}

body.hfc-site button.hfc-menu-toggle {
  background: #fff !important;
  color: var(--hfc-charcoal) !important;
}

body.hfc-site button.hfc-menu-toggle:hover,
body.hfc-site button.hfc-menu-toggle:focus,
body.hfc-site button.hfc-menu-toggle:focus-visible,
body.hfc-site button.hfc-menu-toggle[aria-expanded="true"] {
  border-color: var(--hfc-blue) !important;
  background: var(--hfc-blue-soft) !important;
  color: var(--hfc-blue-dark) !important;
}

/* Long model, repair and price names must wrap instead of being clipped. */
.hfc-catalog-choice__copy,
.hfc-model-card__copy,
.hfc-repair-card__copy,
.hfc-repair-card__price {
  min-width: 0;
  max-width: 100%;
}

.hfc-catalog-choice__copy strong,
.hfc-catalog-choice__copy small,
.hfc-model-card__copy strong,
.hfc-model-card__copy small,
details.hfc-repair-card > summary .hfc-repair-card__title,
.hfc-repair-card__eyebrow {
  white-space: normal !important;
  overflow-wrap: anywhere;
  word-break: normal;
  hyphens: auto;
}

.hfc-repair-card__price {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
}

details.hfc-repair-card > summary .hfc-repair-card__price strong {
  min-width: 0;
  max-width: 100%;
  margin-left: 0;
  color: var(--hfc-green-dark);
  line-height: 1.2;
  text-align: right;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: normal;
}

/* Accessible, compact contact chooser shared by all repair cards. */
.hfc-repair-contact {
  width: 100%;
  min-width: 0;
  margin-top: auto;
  padding-top: 12px;
}

.hfc-repair-contact .hfc-repair-contact__trigger,
.hfc-repair-card__body .hfc-repair-contact__trigger {
  width: 100%;
  min-height: 44px;
  margin: 0;
  padding: 9px 12px;
  font-size: 12px;
}

.hfc-repair-contact__trigger[aria-expanded="true"] {
  border-color: var(--hfc-blue-dark) !important;
  background: var(--hfc-blue-dark) !important;
}

.hfc-repair-contact__options {
  display: grid;
  min-width: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
  margin-top: 8px;
  padding: 8px;
  border: 1px solid #d9e1ea;
  border-radius: 7px;
  background: #f7f9fb;
}

.hfc-repair-contact__options[hidden] {
  display: none !important;
}

.hfc-repair-contact__option,
body.hfc-site .hfc-repair-contact__option {
  display: flex;
  min-width: 0;
  min-height: 48px;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  padding: 7px 8px;
  border: 1px solid #d4dbe4;
  border-radius: 6px;
  background: #fff;
  color: var(--hfc-charcoal);
  line-height: 1.2;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.hfc-repair-contact__option strong {
  color: inherit;
  font-size: 11px;
  font-weight: 850;
}

.hfc-repair-contact__option small {
  color: var(--hfc-muted);
  font-size: 9px;
  line-height: 1.3;
}

.hfc-repair-contact__option:hover,
.hfc-repair-contact__option:focus,
.hfc-repair-contact__option:focus-visible {
  border-color: var(--hfc-blue);
  background: var(--hfc-blue-soft);
  color: var(--hfc-blue-dark);
}

.hfc-repair-contact__option--whatsapp,
body.hfc-site .hfc-repair-contact__option--whatsapp {
  border-color: #bcd9bd;
  background: var(--hfc-green-soft);
  color: var(--hfc-green-dark);
}

.hfc-repair-contact__option--whatsapp:hover,
.hfc-repair-contact__option--whatsapp:focus,
.hfc-repair-contact__option--whatsapp:focus-visible {
  border-color: var(--hfc-green-dark);
  background: #dcefdc;
  color: var(--hfc-green-dark);
}

@media (max-width: 600px) {
  /* The fixed action bar already contains WhatsApp on phones. */
  body.hfc-site #simple-chat-button--container,
  body.hfc-site .simple-chat-button--container {
    display: none !important;
  }

  .hfc-google-strip a {
    min-height: 44px;
    flex-wrap: wrap;
    gap: 3px 7px;
    padding: 7px 0;
    font-size: 12px;
    line-height: 1.2;
  }

  .hfc-repair-contact__options {
    gap: 8px;
  }

  details.hfc-repair-card > summary .hfc-repair-card__price strong {
    font-size: 17px;
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }

  body.hfc-site .hfc-choice-card,
  body.hfc-site .hfc-model-card,
  body.hfc-site details.hfc-repair-card,
  body.hfc-site .hfc-repair-contact__option,
  body.hfc-site .hfc-repair-contact__trigger,
  body.hfc-site .hfc-nav a::after {
    animation: none !important;
    transition: none !important;
  }

  body.hfc-site .hfc-choice-card:hover,
  body.hfc-site .hfc-choice-card:focus,
  body.hfc-site .hfc-model-card:hover,
  body.hfc-site .hfc-model-card:focus,
  body.hfc-site details.hfc-repair-card:hover,
  body.hfc-site details.hfc-repair-card:focus-within {
    transform: none !important;
  }
}

/* Final semantic markup reconciliation. */

/* The logo class lives on the link; keep the original vertical mark and its
 * supporting business name together without stretching either element. */
.hfc-brand-logo {
  display: inline-flex;
  width: auto;
  max-width: none;
  height: auto;
  min-width: 0;
  align-items: center;
  gap: 13px;
  color: var(--hfc-charcoal);
  line-height: 1.15;
  text-decoration: none;
  object-fit: initial;
}

.hfc-brand-logo picture {
  display: block;
  width: 56px;
  height: 78px;
  flex: 0 0 56px;
}

.hfc-brand-logo picture img {
  display: block;
  width: 56px;
  height: 78px;
  object-fit: contain;
}

.hfc-brand-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 5px;
}

.hfc-brand-copy strong {
  max-width: 210px;
  color: var(--hfc-charcoal);
  font-size: 14px;
  font-weight: 850;
  letter-spacing: -0.015em;
}

.hfc-brand-copy small {
  color: var(--hfc-muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hfc-brand-logo-footer .hfc-brand-copy strong {
  color: #fff;
}

.hfc-footer .hfc-brand-logo-footer {
  width: auto;
  max-width: 100%;
  height: auto;
}

.hfc-brand-logo-footer .hfc-brand-copy small {
  color: #abb3bc;
}

.hfc-catalog-ui {
  min-width: 0;
}

.hfc-catalog-path {
  margin: 0 0 14px;
}

.hfc-catalog-path ol {
  display: flex;
  min-width: 0;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hfc-catalog-path li {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 7px;
  color: var(--hfc-muted);
  font-size: 12px;
}

.hfc-catalog-path li + li::before {
  color: #a3aab2;
  content: "\203A";
  font-size: 18px;
  line-height: 1;
}

.hfc-catalog-path button,
.hfc-catalog-path .is-current {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 5px 10px;
  border: 1px solid #d7dce2;
  border-radius: 5px;
  font: inherit;
  font-size: 12px;
  font-weight: 760;
  line-height: 1.2;
}

.hfc-catalog-path button {
  background: #fff;
  color: var(--hfc-blue);
  cursor: pointer;
}

.hfc-catalog-path button:hover,
.hfc-catalog-path button:focus {
  border-color: var(--hfc-blue);
  background: var(--hfc-blue-soft);
}

.hfc-catalog-path .is-current {
  border-color: #c9e2c9;
  background: var(--hfc-green-soft);
  color: var(--hfc-green-dark);
}

.hfc-catalog-status {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.hfc-catalog-choice::after {
  content: none;
}

.hfc-catalog-choice__icon {
  display: grid;
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  place-items: center;
  overflow: hidden;
  border: 1px solid #d8e1f3;
  border-radius: 7px;
  background: var(--hfc-blue-soft);
  color: var(--hfc-blue);
  font-size: 19px;
  font-weight: 850;
}

.hfc-catalog-choice__icon img,
.hfc-catalog-choice__icon svg {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.hfc-catalog-choice__copy {
  display: flex;
  min-width: 0;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 4px;
}

.hfc-catalog-choice__copy strong {
  color: var(--hfc-charcoal);
  font-size: 15px;
  font-weight: 830;
  overflow-wrap: anywhere;
}

.hfc-catalog-choice__copy small {
  color: var(--hfc-muted);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.35;
}

.hfc-catalog-choice__arrow {
  margin-left: auto;
  color: var(--hfc-green-dark);
  font-size: 27px;
  font-weight: 500;
  line-height: 1;
}

.hfc-catalog-choice:hover .hfc-catalog-choice__copy strong,
.hfc-catalog-choice:focus .hfc-catalog-choice__copy strong {
  color: var(--hfc-green-dark);
}

.hfc-catalog-count {
  margin: -17px 0 15px;
  color: var(--hfc-muted);
  font-size: 12px;
  font-weight: 720;
}

.hfc-catalog-search > span {
  display: block;
  margin-bottom: 7px;
  color: var(--hfc-charcoal);
  font-size: 13px;
  font-weight: 800;
}

.hfc-catalog-empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 22px;
  border: 1px solid #d7dce2;
  border-radius: 7px;
  background: var(--hfc-soft);
  color: var(--hfc-muted);
}

.hfc-model-card {
  display: grid;
  grid-template-rows: 86px minmax(48px, auto) auto;
  align-content: start;
}

.hfc-model-card::after {
  content: none;
}

.hfc-model-card__media {
  display: grid;
  width: 100%;
  min-width: 0;
  height: 78px;
  place-items: center;
  overflow: hidden;
  border-radius: 5px;
  background: #f7f9fb;
}

.hfc-model-card__media img,
.hfc-model-card .hfc-model-card__media img {
  display: block;
  width: auto;
  max-width: 100%;
  height: 72px;
  margin: 0;
  object-fit: contain;
}

.hfc-model-card__media--placeholder {
  border: 1px solid #dbe3f2;
  background: linear-gradient(145deg, #f8fafc, var(--hfc-blue-soft));
}

.hfc-model-card__media--placeholder .hfc-catalog-choice__icon {
  width: 52px;
  height: 52px;
  flex-basis: 52px;
  border: 0;
  background: transparent;
  color: var(--hfc-blue);
}

.hfc-model-card__media--placeholder .hfc-catalog-choice__icon svg {
  width: 42px;
  height: 42px;
}

.hfc-model-card__copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 4px;
}

.hfc-model-card__copy strong,
.hfc-model-card .hfc-model-card__copy strong {
  margin: 0;
  color: var(--hfc-charcoal);
  font-size: 16px;
  font-weight: 840;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.hfc-model-card__copy small,
.hfc-model-card .hfc-model-card__copy small {
  color: var(--hfc-muted);
  font-size: 11px;
  line-height: 1.35;
}

.hfc-model-card__arrow {
  display: block;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid var(--hfc-line);
  color: var(--hfc-green-dark);
  font-size: 11px;
  font-weight: 800;
}

.hfc-model-card:hover .hfc-model-card__copy strong,
.hfc-model-card:focus .hfc-model-card__copy strong {
  color: var(--hfc-green-dark);
}

.hfc-model-card:not(:has(.hfc-model-card__media)) {
  grid-template-rows: minmax(92px, auto) auto;
}

/* Desktop: each generated repair is a complete, readable service card. */
details.hfc-repair-card {
  display: flex;
  height: 100%;
  flex-direction: column;
}

details.hfc-repair-card > .hfc-repair-card__summary {
  display: grid;
  min-height: 0;
  grid-template-columns: 74px minmax(0, 1fr);
  grid-template-areas:
    "media copy"
    "price price";
  align-items: start;
  gap: 14px;
  padding: 16px;
  border-bottom: 0;
  background: #fff;
  cursor: pointer;
}

details.hfc-repair-card > .hfc-repair-card__summary::after {
  display: none;
  content: none;
}

.hfc-repair-card__media {
  display: grid;
  width: 74px;
  height: 74px;
  grid-area: media;
  place-items: center;
  overflow: hidden;
  border: 1px solid #e0e4e9;
  border-radius: 7px;
  background: #f5f7fa;
}

.hfc-repair-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hfc-repair-card__media--placeholder {
  border-color: #d6e2f5;
  background: var(--hfc-blue-soft);
  color: var(--hfc-blue);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.hfc-repair-card__media--placeholder > span {
  font-size: 16px;
  letter-spacing: -0.04em;
}

.hfc-repair-card__media--placeholder > svg {
  width: 34px;
  height: 34px;
}

.hfc-repair-card__copy {
  display: flex;
  min-width: 0;
  grid-area: copy;
  flex-direction: column;
  align-self: stretch;
}

.hfc-repair-card__eyebrow {
  display: block;
  margin-bottom: 4px;
  color: var(--hfc-blue);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.05em;
  line-height: 1.25;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

details.hfc-repair-card > summary .hfc-repair-card__title {
  display: block;
  margin: 0;
  color: var(--hfc-charcoal);
  font-size: 15px;
  font-weight: 850;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.hfc-repair-card__facts {
  display: grid;
  gap: 3px;
  margin-top: 9px;
  color: var(--hfc-muted);
  font-size: 10px;
  font-weight: 650;
  line-height: 1.3;
}

.hfc-repair-card__facts > span {
  position: relative;
  padding-left: 12px;
}

.hfc-repair-card__facts > span::before {
  position: absolute;
  left: 0;
  color: var(--hfc-green-dark);
  content: "\2713";
  font-size: 9px;
  font-weight: 900;
}

.hfc-repair-card__price {
  display: flex;
  min-width: 0;
  grid-area: price;
  align-items: baseline;
  gap: 7px;
  margin-top: 1px;
  padding-top: 13px;
  border-top: 1px solid var(--hfc-line);
}

.hfc-repair-card__price small {
  color: var(--hfc-muted);
  font-size: 9px;
  font-weight: 780;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

details.hfc-repair-card > summary .hfc-repair-card__price strong {
  margin-left: auto;
  color: var(--hfc-green-dark);
  font-size: 19px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.hfc-repair-card__toggle {
  display: inline-flex;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  align-items: center;
  justify-content: center;
  margin-left: 2px;
  color: var(--hfc-blue);
  font-size: 0;
  font-weight: 790;
}

.hfc-repair-card__toggle::after {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: var(--hfc-blue-soft);
  content: "+";
  font-size: 17px;
  line-height: 1;
}

details.hfc-repair-card[open] .hfc-repair-card__toggle::after {
  background: var(--hfc-blue);
  color: #fff;
  content: "\2212";
}

.hfc-repair-card__body {
  display: flex;
  min-width: 0;
  flex: 1 1 auto;
  flex-direction: column;
  align-items: stretch;
  padding: 0 16px 16px;
  color: var(--hfc-muted);
  font-size: 11px;
}

details.hfc-repair-card:not([open]) > .hfc-repair-card__body {
  display: none;
}

.hfc-repair-card__description {
  min-width: 0;
  max-height: none;
  margin: 0 0 13px;
  padding: 12px 0 0;
  overflow: visible;
  border-top: 1px solid var(--hfc-line);
  color: var(--hfc-muted) !important;
  font-family: inherit !important;
  font-size: 12px !important;
  line-height: 1.48;
  scrollbar-width: thin;
}

.hfc-repair-card__description > :first-child {
  margin-top: 0 !important;
}

.hfc-repair-card__description > :last-child {
  margin-bottom: 0 !important;
}

.hfc-repair-card__description img,
.hfc-repair-card__description picture,
.hfc-repair-card__description .elementor-widget-image {
  display: none !important;
}

.hfc-repair-card__description h1,
.hfc-repair-card__description h2,
.hfc-repair-card__description h3,
.hfc-repair-card__description h4,
.hfc-repair-card__description p,
.hfc-repair-card__description li,
.hfc-repair-card__description span {
  color: inherit !important;
  font-family: inherit !important;
  font-size: inherit !important;
  line-height: inherit !important;
}

.hfc-repair-card__description h1,
.hfc-repair-card__description h2,
.hfc-repair-card__description h3,
.hfc-repair-card__description h4 {
  margin: 8px 0 4px !important;
  font-weight: 820 !important;
}

.hfc-repair-card__description p {
  margin: 0 0 7px !important;
}

.hfc-repair-card__description ul,
.hfc-repair-card__description ol {
  margin: 7px 0 !important;
  padding-left: 17px !important;
}

.hfc-repair-card__description .elementor,
.hfc-repair-card__description .elementor-section,
.hfc-repair-card__description .elementor-container,
.hfc-repair-card__description .elementor-column,
.hfc-repair-card__description .elementor-element,
.hfc-repair-card__description .elementor-widget-wrap,
.hfc-repair-card__description .elementor-widget-container {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.hfc-repair-card__cta,
.hfc-repair-card__body .hfc-repair-card__cta {
  width: 100%;
  min-height: 41px;
  margin-top: auto;
  padding: 8px 10px;
  font-size: 11px;
}

@media (max-width: 1024px) {
  .hfc-brand-logo picture,
  .hfc-brand-logo picture img {
    width: 46px;
    height: 64px;
  }

  .hfc-brand-logo picture {
    flex-basis: 46px;
  }

  .hfc-brand-copy strong {
    max-width: 185px;
    font-size: 13px;
  }
}

@media (max-width: 600px) {
  .hfc-header-main {
    min-height: 82px;
  }

  .hfc-brand-logo {
    width: auto;
    max-width: calc(100vw - 102px);
    height: auto;
    gap: 8px;
  }

  .hfc-brand-logo picture,
  .hfc-brand-logo picture img {
    width: 50px;
    height: 70px;
  }

  .hfc-brand-logo picture {
    flex-basis: 50px;
  }

  .hfc-brand-copy {
    display: flex;
  }

  .hfc-brand-copy strong {
    max-width: 150px;
    font-size: 12px;
    line-height: 1.15;
  }

  .hfc-brand-copy small {
    display: none;
  }

  .hfc-brand-logo-footer {
    max-width: none;
  }

  .hfc-brand-logo-footer picture,
  .hfc-brand-logo-footer picture img {
    width: 48px;
    height: 67px;
  }

  .hfc-brand-logo-footer picture {
    flex-basis: 48px;
  }

  .hfc-brand-logo-footer .hfc-brand-copy strong {
    max-width: 190px;
    font-size: 13px;
  }

  /* The horizontal model rail already contains the full series navigation on
   * phones. Hiding the duplicate desktop sidebar keeps repairs above the fold. */
  .hfc-model-sidebar {
    display: none;
  }

  .hfc-catalog-path {
    margin-bottom: 11px;
    overflow-x: auto;
    scrollbar-width: thin;
  }

  .hfc-catalog-path ol {
    width: max-content;
    max-width: none;
    flex-wrap: nowrap;
    padding-bottom: 3px;
  }

  .hfc-catalog-path button,
  .hfc-catalog-path .is-current {
    min-height: 30px;
    white-space: nowrap;
  }

  .hfc-catalog-choice__icon {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }

  .hfc-catalog-choice__icon img,
  .hfc-catalog-choice__icon svg {
    width: 28px;
    height: 28px;
  }

  .hfc-model-card {
    min-height: 108px;
    grid-template-columns: 68px minmax(0, 1fr);
    grid-template-rows: auto auto;
    grid-template-areas:
      "media copy"
      "media arrow";
    align-items: center;
    column-gap: 13px;
    padding: 14px;
  }

  .hfc-model-card__media {
    width: 68px;
    height: 76px;
    grid-area: media;
  }

  .hfc-model-card__media img,
  .hfc-model-card .hfc-model-card__media img {
    max-width: 62px;
    height: 68px;
    margin: 0;
    float: none;
  }

  .hfc-model-card__copy {
    grid-area: copy;
    align-self: end;
  }

  .hfc-model-card__arrow {
    grid-area: arrow;
    align-self: start;
    margin-top: 7px;
    padding-top: 7px;
  }

  .hfc-model-card:not(:has(.hfc-model-card__media)) {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    grid-template-areas:
      "copy"
      "arrow";
  }

  details.hfc-repair-card {
    display: block;
    height: auto;
  }

  details.hfc-repair-card > .hfc-repair-card__summary {
    min-height: 0;
    grid-template-columns: 58px minmax(0, 1fr);
    grid-template-areas:
      "media copy"
      "price price";
    gap: 11px;
    padding: 13px;
    cursor: pointer;
  }

  .hfc-repair-card__media {
    width: 58px;
    height: 58px;
  }

  .hfc-repair-card__facts {
    margin-top: 6px;
  }

  .hfc-repair-card__facts > span:nth-child(-n + 2) {
    display: none;
  }

  .hfc-repair-card__price {
    align-items: center;
    padding-top: 10px;
  }

  details.hfc-repair-card > summary .hfc-repair-card__price strong {
    margin-left: 0;
    font-size: 18px;
  }

  .hfc-repair-card__toggle {
    display: inline-flex;
    width: auto;
    height: auto;
    flex-basis: auto;
    min-height: 28px;
    align-items: center;
    gap: 6px;
    margin-left: auto;
    color: var(--hfc-blue);
    font-size: 11px;
    font-weight: 790;
  }

  .hfc-repair-card__toggle::after {
    display: grid;
    width: 24px;
    height: 24px;
    place-items: center;
    border-radius: 50%;
    background: var(--hfc-blue-soft);
    content: "+";
    font-size: 17px;
    line-height: 1;
  }

  details.hfc-repair-card[open] .hfc-repair-card__toggle::after {
    background: var(--hfc-blue);
    color: #fff;
    content: "\2212";
  }

  .hfc-repair-card__body,
  details.hfc-repair-card:not([open]) > .hfc-repair-card__body {
    display: none !important;
  }

  details.hfc-repair-card[open] > .hfc-repair-card__body {
    display: flex !important;
    padding: 0 13px 13px;
  }

  .hfc-repair-card__description {
    max-height: none;
    font-size: 12px !important;
  }
}

@media print {
  .hfc-brand-logo picture,
  .hfc-brand-logo picture img {
    width: 42px;
    height: 58px;
  }

  .hfc-repair-card__body,
  details.hfc-repair-card:not([open]) > .hfc-repair-card__body {
    display: block !important;
  }
}

/* Final overrides after the semantic card reconciliation above. */
.hfc-repair-card__price {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
}

details.hfc-repair-card > summary .hfc-repair-card__price strong {
  min-width: 0;
  max-width: 100%;
  margin-left: 0;
  line-height: 1.2;
  text-align: right;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: normal;
}

.hfc-repair-contact .hfc-repair-contact__trigger,
.hfc-repair-card__body .hfc-repair-contact__trigger {
  min-height: 44px;
  margin: 0;
  padding: 9px 12px;
  font-size: 12px;
}

/* Google review block: branded shell without coupling to Trustindex internals. */
.hfc-reviews-section {
  background: linear-gradient(180deg, #fff 0%, #f7f9fb 100%);
}

.hfc-review-summary {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: flex-start;
  gap: 22px;
  margin-bottom: 24px;
  padding: 22px 24px;
  border: 1px solid var(--hfc-line);
  border-left: 5px solid var(--hfc-green);
  border-radius: var(--hfc-radius);
  background: #fff;
  box-shadow: var(--hfc-shadow);
}

.hfc-review-summary > * {
  min-width: 0;
}

.hfc-review-summary > div {
  display: grid;
  gap: 4px;
}

.hfc-review-summary > div strong,
.hfc-review-summary > div span {
  display: block;
}

.hfc-review-summary > div span {
  color: var(--hfc-muted);
}

.hfc-review-stars {
  color: #a25b00;
  font-size: clamp(18px, 2.2vw, 25px);
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  white-space: nowrap;
}

.hfc-google-review-note {
  margin: 0;
}

.hfc-reviews-section .hfc-hero-actions {
  margin-top: 20px;
}

@media (max-width: 600px) {
  details.hfc-repair-card > summary .hfc-repair-card__price strong {
    font-size: 17px;
    text-align: left;
  }

  .hfc-review-summary {
    align-items: flex-start;
    flex-direction: column;
    gap: 13px;
    padding: 18px;
  }

}


/* Haza Fix premium visual layer v3.
 * High-end catalogue presentation, faster model recognition and clearer pricing.
 */
:root {
  --hfc-premium-navy: #071a35;
  --hfc-premium-navy-2: #0d2d5d;
  --hfc-premium-green: #07921d;
  --hfc-premium-mist: #f2f6fa;
  --hfc-premium-line: rgba(18, 41, 72, 0.12);
  --hfc-premium-shadow: 0 18px 50px rgba(8, 30, 58, 0.11);
  --hfc-premium-shadow-lg: 0 30px 80px rgba(5, 24, 48, 0.18);
}

body.hfc-site {
  background: #fff;
  text-rendering: optimizeLegibility;
}

.hfc-header {
  border-bottom: 1px solid rgba(15, 42, 76, 0.08);
  box-shadow: 0 10px 32px rgba(7, 26, 53, 0.08);
}

.hfc-nav-row {
  background: linear-gradient(100deg, #081a33 0%, #102d59 68%, #0a3a45 100%);
}

.hfc-nav a::after {
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #51d665, #0ca42a);
}

.hfc-nav .hfc-nav-cta {
  border-radius: 10px;
  background: linear-gradient(135deg, #07921d, #04a62b);
  box-shadow: 0 8px 22px rgba(7, 146, 29, 0.28);
}

.hfc-google-strip {
  background: linear-gradient(90deg, #fff 0%, #f7fafc 50%, #fff 100%);
}

.hfc-google-strip a {
  font-weight: 760;
}

.hfc-hero {
  position: relative;
  isolation: isolate;
  padding: 42px 0 76px;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 0%, rgba(28, 128, 151, 0.12), transparent 32%),
    radial-gradient(circle at 92% 20%, rgba(7, 146, 29, 0.10), transparent 30%),
    linear-gradient(180deg, #f7fafc 0%, #edf3f8 100%);
}

.hfc-hero::before {
  position: absolute;
  z-index: -1;
  top: -180px;
  left: 50%;
  width: min(1100px, 90vw);
  height: 420px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.58);
  content: "";
  filter: blur(70px);
  transform: translateX(-50%);
}

.hfc-hero-shell {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--hfc-premium-shadow-lg);
}

.hfc-hero-copy {
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(circle at 16% 12%, rgba(31, 181, 76, 0.21), transparent 34%),
    linear-gradient(145deg, var(--hfc-premium-navy) 0%, var(--hfc-premium-navy-2) 72%, #0b3d49 100%);
  color: #fff;
}

.hfc-hero-copy::after {
  position: absolute;
  z-index: -1;
  right: -130px;
  bottom: -190px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(42, 185, 111, 0.16), transparent 66%);
  content: "";
}

.hfc-hero .hfc-kicker,
.hfc-hero .hfc-eyebrow {
  color: #8ee99e;
}

.hfc-hero h1,
.hfc-hero:not(.hfc-hero-home) h1 {
  color: #fff !important;
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.16);
}

.hfc-hero .hfc-hero-copy > p {
  color: #dce7f2;
}

.hfc-hero .hfc-hero-points {
  color: #fff;
}

.hfc-hero .hfc-hero-points li::before {
  background: rgba(126, 234, 145, 0.17);
  color: #9df0aa;
}

.hfc-hero .hfc-button {
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.17);
}

.hfc-hero .hfc-button-outline {
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.08);
  color: #fff !important;
  backdrop-filter: blur(10px);
}

.hfc-hero .hfc-button-outline:hover,
.hfc-hero .hfc-button-outline:focus {
  border-color: #fff;
  background: #fff;
  color: var(--hfc-premium-navy) !important;
}

.hfc-hero .hfc-button-blue,
.hfc-hero .hfc-button-teal {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(17, 74, 158, 0.84);
}

.hfc-hero-media {
  background: #dce7f0;
}

.hfc-hero-media::after {
  background: linear-gradient(90deg, rgba(13, 45, 93, 0.88), rgba(13, 45, 93, 0) 28%);
}

.hfc-hero-media img {
  filter: saturate(0.94) contrast(1.04);
  transition: transform 0.5s ease, filter 0.5s ease;
}

.hfc-hero-shell:hover .hfc-hero-media img {
  filter: saturate(1) contrast(1.06);
  transform: scale(1.018);
}

.hfc-image-badge,
.hfc-image-note {
  border-radius: 14px;
  box-shadow: 0 14px 32px rgba(7, 26, 53, 0.2);
  backdrop-filter: blur(12px);
}

.hfc-button,
body.hfc-site button.hfc-button,
body.hfc-site input[type="submit"].hfc-button {
  border-radius: 11px;
  box-shadow: 0 8px 18px rgba(7, 146, 29, 0.14);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.hfc-button:hover,
.hfc-button:focus,
body.hfc-site button.hfc-button:hover,
body.hfc-site button.hfc-button:focus {
  box-shadow: 0 13px 28px rgba(7, 146, 29, 0.23);
  transform: translateY(-2px);
}

.hfc-section-head h2 {
  letter-spacing: -0.035em;
}

.hfc-card,
.hfc-mini-card,
.hfc-showcase-card,
.hfc-price-tile,
.hfc-steps li,
.hfc-local-links,
.hfc-benefit {
  border-color: var(--hfc-premium-line);
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(8, 30, 58, 0.055);
}

.hfc-card:hover,
.hfc-showcase-card:hover,
.hfc-price-tile:hover {
  box-shadow: var(--hfc-premium-shadow);
  transform: translateY(-4px);
}

.hfc-catalog {
  background:
    radial-gradient(circle at 92% 8%, rgba(31, 149, 87, 0.09), transparent 25%),
    radial-gradient(circle at 5% 35%, rgba(23, 61, 143, 0.08), transparent 27%),
    linear-gradient(180deg, #f7fafc 0%, #eef3f7 100%);
}

.hfc-catalog-stage {
  padding: clamp(24px, 3.3vw, 42px);
  border: 1px solid rgba(15, 42, 76, 0.10);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--hfc-premium-shadow);
  backdrop-filter: blur(14px);
}

.hfc-catalog-search {
  max-width: 760px;
}

.hfc-catalog-search input[type="search"],
.hfc-catalog-search input[type="text"] {
  min-height: 56px;
  border-color: rgba(17, 50, 90, 0.20);
  border-radius: 14px;
  box-shadow: inset 0 1px 2px rgba(8, 30, 58, 0.03);
}

.hfc-catalog-search button {
  right: 7px;
  bottom: 7px;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: linear-gradient(135deg, #173d8f, #0d2d5d);
}

.hfc-catalog-steps > *::before {
  box-shadow: 0 5px 14px rgba(8, 30, 58, 0.10);
}

.hfc-catalog-steps > .is-active::before,
.hfc-catalog-steps > [aria-current="step"]::before {
  background: linear-gradient(135deg, #07921d, #12ad36);
  box-shadow: 0 7px 18px rgba(7, 146, 29, 0.24);
}

.hfc-model-grid-v2 {
  gap: 20px;
}

.hfc-model-card {
  border-color: rgba(15, 42, 76, 0.11);
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(8, 30, 58, 0.065);
}

.hfc-model-card:hover,
.hfc-model-card:focus,
.hfc-model-card:focus-within,
.hfc-model-card.is-active {
  border-color: rgba(7, 146, 29, 0.62);
  box-shadow: 0 22px 46px rgba(8, 30, 58, 0.14);
  transform: translateY(-6px);
}

.hfc-model-card::after {
  display: none;
}

.hfc-model-card__media {
  position: relative;
  isolation: isolate;
  border: 0;
  background:
    radial-gradient(circle at 26% 16%, rgba(255, 255, 255, 0.92), transparent 34%),
    linear-gradient(145deg, #eef4fb 0%, #e2ecf6 100%);
}

.hfc-model-card__media::before,
.hfc-model-card__media::after {
  pointer-events: none;
}

.hfc-model-card__media img,
.hfc-model-card .hfc-model-card__media img {
  filter: drop-shadow(0 16px 16px rgba(6, 24, 46, 0.20));
  transition: transform 0.25s ease;
}

.hfc-model-card:hover .hfc-model-card__media img,
.hfc-model-card:focus .hfc-model-card__media img {
  transform: scale(1.06) translateY(-2px);
}

.hfc-model-card[data-hfc-model-device="smartphone"] .hfc-model-card__media--placeholder .hfc-catalog-choice__icon {
  display: none;
}

.hfc-model-card[data-hfc-model-device="smartphone"] .hfc-model-card__media--placeholder::before {
  position: absolute;
  z-index: 1;
  width: 76px;
  height: 132px;
  border: 3px solid rgba(7, 20, 38, 0.92);
  border-radius: 18px;
  background: linear-gradient(155deg, var(--hfc-device-a, #dce5f2), var(--hfc-device-b, #526a88));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.55),
    inset 10px 0 18px rgba(255, 255, 255, 0.18),
    0 20px 30px rgba(5, 22, 44, 0.25);
  content: "";
  transform: rotate(-4deg);
  transition: transform 0.25s ease;
}

.hfc-model-card[data-hfc-model-device="smartphone"] .hfc-model-card__media--placeholder::after {
  position: absolute;
  z-index: 2;
  top: 30px;
  left: calc(50% - 21px);
  width: 18px;
  height: 50px;
  border-radius: 10px;
  background:
    radial-gradient(circle at 50% 14%, #09111f 0 4px, #7e8b9d 4.5px 5.6px, transparent 6.2px),
    radial-gradient(circle at 50% 50%, #09111f 0 4px, #7e8b9d 4.5px 5.6px, transparent 6.2px),
    radial-gradient(circle at 50% 86%, #09111f 0 4px, #7e8b9d 4.5px 5.6px, transparent 6.2px);
  content: "";
  transform: rotate(-4deg);
  transition: transform 0.25s ease;
}

.hfc-model-card[data-hfc-model-device="smartphone"]:hover .hfc-model-card__media--placeholder::before,
.hfc-model-card[data-hfc-model-device="smartphone"]:hover .hfc-model-card__media--placeholder::after {
  transform: rotate(-1deg) translateY(-4px);
}

.hfc-model-card[data-hfc-model-brand="samsung"] {
  --hfc-device-a: #d8e3ee;
  --hfc-device-b: #71829a;
}

.hfc-model-card[data-hfc-model-brand="samsung"] .hfc-model-card__media {
  background:
    radial-gradient(circle at 75% 22%, rgba(92, 118, 196, 0.24), transparent 28%),
    linear-gradient(145deg, #f0f5ff, #dce8f8);
}

.hfc-model-card[data-hfc-model-brand="google"] {
  --hfc-device-a: #eee7d9;
  --hfc-device-b: #9cb7a9;
}

.hfc-model-card[data-hfc-model-brand="google"] .hfc-model-card__media {
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 214, 95, 0.30), transparent 30%),
    linear-gradient(145deg, #f8f3e8, #dcebe5);
}

.hfc-model-card[data-hfc-model-brand="google"] .hfc-model-card__media--placeholder::after {
  top: 36px;
  left: calc(50% - 34px);
  width: 60px;
  height: 18px;
  border: 2px solid rgba(11, 20, 31, 0.58);
  border-radius: 8px;
  background:
    radial-gradient(circle at 22% 50%, #07101c 0 5px, #81909c 5.5px 6.8px, transparent 7.4px),
    radial-gradient(circle at 74% 50%, #07101c 0 4px, #81909c 4.5px 5.8px, transparent 6.4px),
    linear-gradient(90deg, #313a44, #67727d);
  box-shadow: 0 4px 8px rgba(5, 20, 35, 0.20);
}

.hfc-model-card[data-hfc-model-brand="apple"] {
  --hfc-device-a: #ddd8e7;
  --hfc-device-b: #756b84;
}

.hfc-model-card[data-hfc-model-brand="apple"] .hfc-model-card__media {
  background:
    radial-gradient(circle at 78% 20%, rgba(119, 104, 205, 0.24), transparent 30%),
    linear-gradient(145deg, #f4f0fa, #e3e8f4);
}

.hfc-model-card[data-hfc-model-brand="apple"] .hfc-model-card__media--placeholder::after {
  top: 27px;
  left: calc(50% - 25px);
  width: 31px;
  height: 31px;
  border: 1px solid rgba(25, 25, 30, 0.30);
  border-radius: 10px;
  background:
    radial-gradient(circle at 29% 29%, #080b12 0 4px, #8a91a0 4.6px 5.6px, transparent 6.2px),
    radial-gradient(circle at 71% 29%, #080b12 0 4px, #8a91a0 4.6px 5.6px, transparent 6.2px),
    radial-gradient(circle at 50% 72%, #080b12 0 4px, #8a91a0 4.6px 5.6px, transparent 6.2px),
    rgba(255, 255, 255, 0.18);
}

.hfc-model-card[data-hfc-model-series*="tab"] .hfc-model-card__media--placeholder::before,
.hfc-model-card[data-hfc-model-series*="ipad"] .hfc-model-card__media--placeholder::before {
  width: 112px;
  height: 82px;
  border-radius: 15px;
}

.hfc-model-card[data-hfc-model-series*="tab"] .hfc-model-card__media--placeholder::after,
.hfc-model-card[data-hfc-model-series*="ipad"] .hfc-model-card__media--placeholder::after {
  top: 35px;
  left: calc(50% - 46px);
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 50%;
  background: #0a101a;
}

.hfc-model-card__copy strong,
.hfc-model-card .hfc-model-card__copy strong {
  letter-spacing: -0.018em;
}

.hfc-model-card__arrow {
  width: fit-content;
  border: 1px solid rgba(7, 146, 29, 0.18);
  border-radius: 999px;
  background: #eff8f0;
  color: #05751a;
}

.hfc-model-sidebar {
  border-color: rgba(15, 42, 76, 0.10);
  border-radius: 18px;
  box-shadow: 0 12px 34px rgba(8, 30, 58, 0.07);
}

.hfc-model-tabs {
  gap: 9px;
  overflow-x: auto;
  border-bottom: 0;
  scrollbar-width: thin;
}

.hfc-model-tabs a,
.hfc-model-tabs button {
  flex: 0 0 auto;
  margin-bottom: 0;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 5px 14px rgba(8, 30, 58, 0.045);
}

.hfc-repair-grid {
  gap: 20px;
}

details.hfc-repair-card {
  border-color: rgba(15, 42, 76, 0.11);
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(8, 30, 58, 0.07);
}

details.hfc-repair-card:hover,
details.hfc-repair-card:focus-within {
  border-color: rgba(7, 146, 29, 0.55);
  box-shadow: 0 22px 46px rgba(8, 30, 58, 0.13);
  transform: translateY(-5px);
}

details.hfc-repair-card > .hfc-repair-card__summary {
  padding: 20px;
}

.hfc-repair-card__media {
  border: 1px solid rgba(23, 61, 143, 0.12);
  border-radius: 14px;
  background:
    radial-gradient(circle at 25% 20%, rgba(255, 255, 255, 0.96), transparent 38%),
    linear-gradient(145deg, #f3f7fc, #e5edf8);
  box-shadow: inset 0 1px 0 #fff;
}

.hfc-repair-card__media--placeholder {
  color: #133f8e;
}

.hfc-repair-card__price {
  margin-top: 3px;
  padding-top: 13px;
  border-top: 1px solid rgba(15, 42, 76, 0.09);
}

details.hfc-repair-card > summary .hfc-repair-card__price strong {
  color: #05791b;
  font-size: 22px;
  letter-spacing: -0.025em;
}

.hfc-repair-card__body {
  padding: 0 20px 20px;
}

.hfc-repair-contact .hfc-repair-contact__trigger,
.hfc-repair-card__body .hfc-repair-contact__trigger {
  border-radius: 11px;
}

.hfc-footer {
  background:
    radial-gradient(circle at 12% 10%, rgba(15, 111, 84, 0.20), transparent 30%),
    linear-gradient(135deg, #07182f 0%, #102847 58%, #111b28 100%);
}

@media (min-width: 960px) {
  .hfc-hero-compact .hfc-hero-shell {
    min-height: 500px;
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  }

  .hfc-hero-compact .hfc-hero-copy {
    width: auto;
    max-width: none;
    min-height: 500px;
    justify-content: center;
    padding: clamp(40px, 4.2vw, 64px);
  }

  .hfc-hero-compact .hfc-hero-media {
    min-height: 500px;
  }
}

@media (min-width: 1025px) {
  .hfc-header-main {
    min-height: 86px;
  }

  .hfc-nav,
  .hfc-nav a {
    min-height: 50px;
  }

  .hfc-repair-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 601px) {
  .hfc-model-card {
    min-height: 286px;
    padding: 0 0 19px;
  }

  .hfc-model-card__media {
    width: 100%;
    height: 158px;
    border-radius: 0;
  }

  .hfc-model-card__media img,
  .hfc-model-card .hfc-model-card__media img {
    width: auto;
    max-width: 90%;
    height: 136px;
    margin: 0;
  }

  .hfc-model-card__copy {
    padding: 17px 18px 0;
  }

  .hfc-model-card__arrow {
    margin: 13px 18px 0;
    padding: 8px 12px;
  }
}

@media (min-width: 601px) and (max-width: 1024px) {
  .hfc-model-grid-v2,
  .hfc-repair-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 959px) {
  .hfc-hero-copy {
    padding: clamp(34px, 8vw, 52px) clamp(24px, 6vw, 42px);
  }

  .hfc-hero-media::after {
    background: linear-gradient(180deg, rgba(13, 45, 93, 0.72), rgba(13, 45, 93, 0) 28%);
  }
}

@media (max-width: 600px) {
  .hfc-hero {
    padding: 22px 0 46px;
  }

  .hfc-hero-shell {
    border-radius: 20px;
  }

  .hfc-hero h1,
  .hfc-hero:not(.hfc-hero-home) h1 {
    font-size: clamp(34px, 10vw, 44px);
  }

  .hfc-catalog-stage {
    padding: 20px;
    border-radius: 19px;
  }

  .hfc-model-grid-v2 {
    gap: 12px;
  }

  .hfc-model-card {
    min-height: 126px;
    grid-template-columns: 94px minmax(0, 1fr);
    grid-template-rows: auto auto;
    grid-template-areas:
      "media copy"
      "media arrow";
    column-gap: 14px;
    padding: 10px;
    border-radius: 16px;
  }

  .hfc-model-card__media {
    width: 94px;
    height: 104px;
    border-radius: 13px;
  }

  .hfc-model-card__media img,
  .hfc-model-card .hfc-model-card__media img {
    max-width: 86px;
    height: 92px;
  }

  .hfc-model-card[data-hfc-model-device="smartphone"] .hfc-model-card__media--placeholder::before {
    width: 45px;
    height: 80px;
    border-width: 2px;
    border-radius: 11px;
  }

  .hfc-model-card[data-hfc-model-device="smartphone"] .hfc-model-card__media--placeholder::after {
    top: 24px;
    left: 33px;
    width: 12px;
    height: 32px;
  }

  .hfc-model-card[data-hfc-model-brand="google"] .hfc-model-card__media--placeholder::after {
    top: 28px;
    left: 26px;
    width: 42px;
    height: 13px;
  }

  .hfc-model-card[data-hfc-model-brand="apple"] .hfc-model-card__media--placeholder::after {
    top: 23px;
    left: 31px;
    width: 22px;
    height: 22px;
  }

  .hfc-model-card__copy {
    align-self: end;
    padding: 0;
  }

  .hfc-model-card__arrow {
    align-self: start;
    margin: 7px 0 0;
    padding: 6px 9px;
    border-top: 1px solid rgba(7, 146, 29, 0.18);
    font-size: 10px;
  }

  details.hfc-repair-card {
    border-radius: 15px;
  }

  details.hfc-repair-card > .hfc-repair-card__summary {
    padding: 14px;
  }

  .hfc-repair-card__price {
    padding-top: 11px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hfc-hero-media img,
  .hfc-model-card__media img,
  .hfc-model-card__media::before,
  .hfc-model-card__media::after {
    transition: none !important;
  }
}


/* Premium V3 model-card grid alignment fix. */
@media (min-width: 601px) {
  .hfc-model-card {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: 158px auto auto;
    grid-template-areas:
      "media"
      "copy"
      "arrow";
    align-content: start;
  }

  .hfc-model-card__media {
    grid-area: media;
  }

  .hfc-model-card__copy {
    grid-area: copy;
  }

  .hfc-model-card__arrow {
    grid-area: arrow;
  }
}

/* Haza Fix Premium V4 — visual polish only. */

:root {
  --hfc-midnight: #061a33;
  --hfc-midnight-2: #0b2d54;
  --hfc-emerald: #07921d;
  --hfc-emerald-bright: #10b52c;
  --hfc-ice: #f4f8fc;
  --hfc-premium-line: rgba(8, 45, 83, 0.12);
  --hfc-premium-shadow: 0 24px 70px rgba(4, 28, 56, 0.13);
  --hfc-premium-shadow-soft: 0 14px 40px rgba(4, 28, 56, 0.09);
}

html {
  scroll-behavior: smooth;
}

body.hfc-site {
  background:
    radial-gradient(circle at 8% 4%, rgba(26, 144, 255, 0.07), transparent 28rem),
    radial-gradient(circle at 94% 16%, rgba(7, 146, 29, 0.07), transparent 26rem),
    #fff;
  color: #13243a;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.hfc-site .hfc-container {
  width: min(1228px, calc(100% - 40px));
}

/* Premium navigation */
.hfc-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(7, 35, 67, 0.08);
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 8px 32px rgba(4, 28, 56, 0.08);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
}

body.logged-in.admin-bar .hfc-header {
  top: 32px;
}

.hfc-header-main {
  min-height: 88px;
}

.hfc-brand-logo img {
  filter: drop-shadow(0 8px 12px rgba(4, 28, 56, 0.13));
}

.hfc-brand-copy strong {
  color: var(--hfc-midnight);
  letter-spacing: -0.02em;
}

.hfc-brand-copy small,
.hfc-header-facts small {
  color: #64758a;
}

.hfc-header-facts > a,
.hfc-header-facts > div {
  transition: transform 180ms ease, color 180ms ease;
}

.hfc-header-facts > a:hover {
  color: var(--hfc-emerald);
  transform: translateY(-2px);
}

.hfc-header-icon {
  border: 1px solid rgba(7, 146, 29, 0.14);
  background: linear-gradient(145deg, #f5fff6, #e6f6ea);
  box-shadow: inset 0 1px 0 #fff, 0 8px 18px rgba(7, 146, 29, 0.09);
}

.hfc-nav-row {
  border: 0;
  background: linear-gradient(100deg, #061a33 0%, #0b315b 62%, #063c45 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hfc-nav a {
  position: relative;
  padding-top: 18px;
  padding-bottom: 18px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: color 180ms ease, transform 180ms ease, background 180ms ease;
}

.hfc-nav a:not(.hfc-nav-cta)::after {
  position: absolute;
  right: 14px;
  bottom: 9px;
  left: 14px;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--hfc-emerald-bright), #62e874);
  content: "";
  opacity: 0;
  transform: scaleX(0.35);
  transition: opacity 180ms ease, transform 180ms ease;
}

.hfc-nav a:not(.hfc-nav-cta):hover::after,
.hfc-nav a:not(.hfc-nav-cta):focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.hfc-nav-cta {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(135deg, #0bb329, #037b16) !important;
  box-shadow: 0 10px 24px rgba(4, 167, 33, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.hfc-nav-cta:hover {
  transform: translateY(-2px);
}

/* Hero: premium workshop, strong local positioning */
.hfc-hero {
  position: relative;
  overflow: hidden;
  padding-top: clamp(42px, 5vw, 74px);
  padding-bottom: clamp(48px, 6vw, 84px);
  background:
    radial-gradient(circle at 85% 12%, rgba(11, 179, 41, 0.12), transparent 25rem),
    linear-gradient(180deg, #f4f9fd 0%, #fff 100%);
}

.hfc-hero::before {
  position: absolute;
  top: -210px;
  left: -170px;
  width: 460px;
  height: 460px;
  border: 1px solid rgba(19, 91, 158, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 58px rgba(19, 91, 158, 0.025), 0 0 0 116px rgba(19, 91, 158, 0.02);
  content: "";
  pointer-events: none;
}

.hfc-hero-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 32px;
  background: var(--hfc-midnight);
  box-shadow: 0 34px 86px rgba(4, 28, 56, 0.22), 0 4px 14px rgba(4, 28, 56, 0.09);
}

.hfc-hero-copy {
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(circle at 100% 100%, rgba(13, 179, 43, 0.20), transparent 48%),
    linear-gradient(145deg, #061a33 0%, #0a2c54 72%, #064049 100%);
}

.hfc-hero-copy::after {
  position: absolute;
  right: -110px;
  bottom: -190px;
  z-index: -1;
  width: 390px;
  height: 390px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 50%;
  content: "";
}

.hfc-kicker,
.hfc-eyebrow {
  letter-spacing: 0.13em;
}

.hfc-hero h1,
.hfc-section-head h2,
.hfc-catalog-head h2 {
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.hfc-hero h1 {
  max-width: 15ch;
  font-size: clamp(44px, 4.1vw, 68px);
  line-height: 1.02;
}

.hfc-hero-copy > p {
  max-width: 52ch;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
  line-height: 1.7;
}

.hfc-hero-points li {
  color: rgba(255, 255, 255, 0.92);
}

.hfc-hero-points li::before {
  box-shadow: 0 0 0 5px rgba(11, 179, 41, 0.10);
}

.hfc-hero-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4, 28, 56, 0.20), transparent 25%, transparent 70%, rgba(4, 28, 56, 0.06));
  content: "";
  pointer-events: none;
}

.hfc-hero-media img {
  transform: scale(1.01);
  transition: transform 700ms cubic-bezier(.2,.7,.2,1), filter 300ms ease;
}

.hfc-hero-shell:hover .hfc-hero-media img {
  transform: scale(1.035);
}

.hfc-image-badge,
.hfc-image-note {
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 40px rgba(4, 28, 56, 0.20);
  backdrop-filter: blur(14px);
}

/* Buttons */
.hfc-button {
  min-height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, #0cb92d, #047b17);
  box-shadow: 0 12px 28px rgba(4, 160, 31, 0.23), inset 0 1px 0 rgba(255, 255, 255, 0.24);
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.hfc-button:hover {
  box-shadow: 0 17px 34px rgba(4, 160, 31, 0.30), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  filter: saturate(1.08);
  transform: translateY(-3px);
}

.hfc-button-outline {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(9px);
}

.hfc-button-teal {
  border-color: rgba(91, 178, 255, 0.42);
  background: linear-gradient(135deg, #1969c8, #174896);
}

/* Catalog and model-selection experience */
.hfc-catalog {
  position: relative;
  background: #fff;
}

.hfc-catalog-ui {
  border: 1px solid var(--hfc-premium-line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--hfc-premium-shadow);
}

.hfc-catalog-stage {
  border: 1px solid rgba(8, 45, 83, 0.10);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(246, 250, 254, 0.98), rgba(255, 255, 255, 0.98));
  box-shadow: inset 0 1px 0 #fff;
}

.hfc-choice-card,
.hfc-model-card {
  border: 1px solid rgba(8, 45, 83, 0.10);
  background: linear-gradient(160deg, #fff 0%, #fbfdff 65%, #f4f8fc 100%);
  box-shadow: 0 10px 28px rgba(4, 28, 56, 0.07), inset 0 1px 0 #fff;
  transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.hfc-choice-card:hover,
.hfc-model-card:hover {
  border-color: rgba(7, 146, 29, 0.34);
  box-shadow: 0 20px 44px rgba(4, 28, 56, 0.13), 0 0 0 4px rgba(7, 146, 29, 0.05);
  transform: translateY(-5px);
}

.hfc-catalog-choice__icon {
  border: 1px solid rgba(7, 146, 29, 0.14);
  background: linear-gradient(145deg, #f3fff4, #e5f6e8);
  box-shadow: inset 0 1px 0 #fff, 0 9px 20px rgba(7, 146, 29, 0.08);
}

.hfc-catalog-choice__arrow,
.hfc-model-card__arrow {
  color: #067d1a;
  font-weight: 800;
}

.hfc-model-card__media {
  border: 1px solid rgba(8, 45, 83, 0.08);
  background:
    radial-gradient(circle at 50% 30%, #fff, #f2f6fa 76%);
  box-shadow: inset 0 1px 0 #fff, inset 0 -12px 28px rgba(4, 28, 56, 0.025);
}

.hfc-model-card__media img {
  filter: drop-shadow(0 13px 13px rgba(4, 28, 56, 0.14));
}

.hfc-model-card:hover .hfc-model-card__media img {
  transform: translateY(-4px) scale(1.035);
}

/* Premium consistency across the home page */
.hfc-benefits {
  margin-top: -22px;
  position: relative;
  z-index: 3;
}

.hfc-benefit-grid {
  overflow: hidden;
  border: 1px solid rgba(8, 45, 83, 0.10);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--hfc-premium-shadow-soft);
}

.hfc-benefit {
  position: relative;
}

.hfc-benefit + .hfc-benefit::before {
  position: absolute;
  top: 24%;
  bottom: 24%;
  left: 0;
  width: 1px;
  background: rgba(8, 45, 83, 0.09);
  content: "";
}

.hfc-section {
  padding-top: clamp(70px, 7vw, 104px);
  padding-bottom: clamp(70px, 7vw, 104px);
}

.hfc-section-soft {
  background:
    radial-gradient(circle at 90% 12%, rgba(7, 146, 29, 0.07), transparent 24rem),
    linear-gradient(180deg, #f5f9fd, #eef5fa);
}

.hfc-section-head {
  max-width: 760px;
}

.hfc-section-head h2 {
  color: var(--hfc-midnight);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
}

.hfc-card,
.hfc-price-tile,
.hfc-showcase-card,
.hfc-mini-card,
.hfc-wg-card {
  border: 1px solid rgba(8, 45, 83, 0.10);
  border-radius: 22px;
  box-shadow: var(--hfc-premium-shadow-soft);
}

.hfc-card {
  background: linear-gradient(155deg, #fff 0%, #fbfdff 62%, #f1f7fb 100%);
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.hfc-card:hover {
  border-color: rgba(7, 146, 29, 0.27);
  box-shadow: 0 24px 54px rgba(4, 28, 56, 0.13);
  transform: translateY(-6px);
}

.hfc-service-icon {
  border: 1px solid rgba(7, 146, 29, 0.14);
  background: linear-gradient(145deg, #f3fff4, #e4f6e7);
  box-shadow: inset 0 1px 0 #fff;
}

.hfc-card-tag,
.hfc-eyebrow {
  color: #067e1a;
  font-weight: 800;
}

.hfc-price-tile {
  background: linear-gradient(155deg, #fff 0%, #f6faff 100%);
}

.hfc-price-tile-accent {
  border-color: rgba(7, 146, 29, 0.26);
  background:
    radial-gradient(circle at 100% 0%, rgba(16, 181, 44, 0.12), transparent 12rem),
    linear-gradient(155deg, #fff, #effaf1);
}

.hfc-showcase-card {
  overflow: hidden;
  background: #fff;
}

.hfc-showcase-card img {
  transition: transform 600ms cubic-bezier(.2,.7,.2,1), filter 250ms ease;
}

.hfc-showcase-card:hover img {
  transform: scale(1.035);
  filter: contrast(1.03) saturate(1.04);
}

.hfc-section-dark {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 20%, rgba(16, 181, 44, 0.16), transparent 28rem),
    linear-gradient(135deg, #05182f 0%, #0b2c52 66%, #073f46 100%);
}

.hfc-section-dark::after {
  position: absolute;
  right: -150px;
  bottom: -280px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(255,255,255,.018), 0 0 0 140px rgba(255,255,255,.012);
  content: "";
  pointer-events: none;
}

.hfc-wg-card {
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 15%, rgba(74, 201, 255, 0.25), transparent 22rem),
    radial-gradient(circle at 12% 100%, rgba(16, 181, 44, 0.16), transparent 22rem),
    linear-gradient(135deg, #05182f 0%, #0a3159 62%, #075f85 100%);
}

.hfc-wg-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0 4px;
}

.hfc-wg-trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: #e7f5ff;
  font-size: 13px;
  font-weight: 750;
  backdrop-filter: blur(8px);
}

.hfc-wg-trust span::before {
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(99, 232, 117, 0.16);
  color: #79ef89;
  content: "✓";
  font-size: 12px;
}

.hfc-wg-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 22px 0;
}

.hfc-wg-flow div {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.07);
}

.hfc-wg-flow strong {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-size: 14px;
}

.hfc-wg-flow small {
  color: #bfd5e6;
  line-height: 1.45;
}

.hfc-wg-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 13px;
}

.hfc-wg-actions .hfc-link {
  color: #dff2ff;
  font-weight: 750;
}

.hfc-wg-stat {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 100%;
  margin-top: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(4, 28, 56, 0.24);
}

.hfc-wg-stat div {
  padding: 15px 12px;
}

.hfc-wg-stat div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.13);
}

.hfc-wg-stat strong {
  display: block;
  color: #fff;
  font-size: 20px;
}

.hfc-wg-stat small {
  color: #bcd4e6;
  font-size: 12px;
}

.hfc-wg-model-cta {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  margin-top: 28px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 22px;
  background:
    radial-gradient(circle at 88% 20%, rgba(69, 196, 255, 0.25), transparent 15rem),
    linear-gradient(135deg, #061a33, #0a3158 68%, #075878);
  box-shadow: 0 20px 48px rgba(4, 28, 56, 0.18);
  color: #fff;
}

.hfc-wg-model-cta::after {
  position: absolute;
  right: -70px;
  bottom: -130px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.hfc-wg-model-cta__copy {
  position: relative;
  z-index: 1;
}

.hfc-wg-model-cta__copy span {
  color: #85dcff;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hfc-wg-model-cta__copy h3 {
  margin: 7px 0 7px;
  color: #fff;
  font-size: clamp(22px, 3vw, 31px);
  letter-spacing: -0.035em;
}

.hfc-wg-model-cta__copy p {
  max-width: 68ch;
  margin: 0;
  color: #c5daea;
  line-height: 1.6;
}

.hfc-wg-model-cta .hfc-wg-cta {
  position: relative;
  z-index: 1;
  white-space: nowrap;
}

.hfc-cta {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  background:
    radial-gradient(circle at 90% 10%, rgba(16, 181, 44, 0.18), transparent 18rem),
    linear-gradient(135deg, #061a33 0%, #0b315a 70%, #06414a 100%);
  box-shadow: var(--hfc-premium-shadow);
}

/* Footer */
.hfc-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 10% 0%, rgba(16, 181, 44, 0.10), transparent 24rem),
    #041427;
}

.hfc-footer a {
  transition: color 180ms ease, transform 180ms ease;
}

.hfc-footer a:hover {
  color: #63e875;
}

/* Respect touch screens and motion preferences. */
@media (hover: none) {
  .hfc-hero-shell:hover .hfc-hero-media img,
  .hfc-card:hover,
  .hfc-choice-card:hover,
  .hfc-model-card:hover,
  .hfc-showcase-card:hover img {
    transform: none;
  }
}

@media (max-width: 921px) {
  body.logged-in.admin-bar .hfc-header {
    top: 46px;
  }

  .hfc-header {
    backdrop-filter: blur(14px);
  }

  .hfc-header-main {
    min-height: 76px;
  }

  .hfc-nav {
    border-radius: 0 0 18px 18px;
    background: linear-gradient(150deg, #061a33, #0b315b 72%, #063d45);
    box-shadow: 0 22px 44px rgba(4, 28, 56, 0.24);
  }

  .hfc-nav a {
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .hfc-nav a:not(.hfc-nav-cta)::after {
    display: none;
  }

  .hfc-hero-shell {
    border-radius: 24px;
  }

  .hfc-hero h1 {
    max-width: 16ch;
    font-size: clamp(40px, 8vw, 56px);
  }

  .hfc-benefit + .hfc-benefit::before {
    display: none;
  }

  .hfc-wg-model-cta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  body.hfc-site .hfc-container {
    width: min(100% - 24px, 1228px);
  }

  .hfc-header {
    position: relative;
    top: auto !important;
  }

  .hfc-hero {
    padding-top: 22px;
    padding-bottom: 48px;
  }

  .hfc-hero-shell {
    border-radius: 21px;
    box-shadow: 0 22px 52px rgba(4, 28, 56, 0.19);
  }

  .hfc-hero h1 {
    font-size: clamp(36px, 10.8vw, 46px);
    line-height: 1.04;
  }

  .hfc-hero-copy > p {
    font-size: 16px;
  }

  .hfc-hero-actions .hfc-button {
    min-height: 49px;
  }

  .hfc-catalog-ui,
  .hfc-cta {
    border-radius: 20px;
  }

  .hfc-catalog-stage {
    border-radius: 17px;
  }

  .hfc-wg-flow {
    grid-template-columns: 1fr;
  }

  .hfc-wg-actions .hfc-wg-cta,
  .hfc-wg-model-cta .hfc-wg-cta {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .hfc-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .hfc-section-head h2 {
    font-size: clamp(31px, 9vw, 40px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hfc-header-facts > a,
  .hfc-nav a,
  .hfc-button,
  .hfc-choice-card,
  .hfc-model-card,
  .hfc-card,
  .hfc-showcase-card img,
  .hfc-hero-media img {
    transition: none !important;
  }
}

