/* ============================================================
   HEMFRESH DESIGN SYSTEM — Shared stylesheet
   Inspired by the Qleen/Sparkle design language
   Version: 2.0 | Updated: 2026
   ============================================================ */

/* ──────────────────────────────────────────────
   GOOGLE FONTS IMPORT (embed in HTML <head>)
   <link rel="preconnect" href="https://fonts.googleapis.com">
   <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
   <link href="https://fonts.googleapis.com/css2?family=Dancing+Script:wght@700&family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap" rel="stylesheet">
────────────────────────────────────────────── */

/* ──────────────────────────────────────────────
   1. DESIGN TOKENS
────────────────────────────────────────────── */
:root {
  /* Brand – Spot Palette 2026 */
  --hf-blue:      #2885C5;  /* Primary Blue – CTAs, active states, links */
  --hf-blue-d:    #1d6fa7;  /* Darker primary – hover backgrounds */
  --hf-sky:       #6EBAFE;  /* Sky Blue – secondary CTAs, hover accents */
  --hf-blue-lt:   #D7F4FF;  /* Ice Blue – trust/card/FAQ backgrounds */
  --hf-green:     #16a34a;
  --hf-green-lt:  #DCFCE7;
  --hf-blue-b:    #14649C;
  /* Neutrals */
  --hf-navy:      #0F1E35;
  --hf-navy-m:    #162840;
  --hf-off-white: #F5F8FF;
  --hf-gray-bg:   #F2F5FA;
  --hf-white:     #FFFFFF;
  /* Text */
  --hf-text:      #1A2B3C;
  --hf-body:      #546070;
  --hf-muted:     #8A9BAC;
  /* UI */
  --hf-border:    #E2E8F0;
  --hf-shadow:    0 4px 20px rgba(0,0,0,.07);
  --hf-shadow-md: 0 10px 36px rgba(0,0,0,.12);
  --hf-r-card:    16px;
  --hf-r-btn:     50px;
  --hf-transition:.24s ease;
  /* Accent */
  --hf-rut:       #16a34a;   /* green for RUT badge */
  --hf-yellow:    #E29E21;   /* Golden Accent – badges, ratings, highlights */
  --hf-orange:	  #F79E00; /* Golden Accent – CTA */
}

/* ──────────────────────────────────────────────
   2. RESET & BASE
────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--hf-text);
  background: var(--hf-white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; padding: 0; }

/* ──────────────────────────────────────────────
   3. LAYOUT UTILITIES
────────────────────────────────────────────── */
.hf-container { max-width: 1080px; margin: 0 auto; padding: 0 28px; }
.hf-section  { padding: 96px 0; }
.hf-section--gray  { background: #F6F8FC; }
.hf-section--dark  { background: #0B1829; }
.hf-section--blue  { background: linear-gradient(145deg, #E8F3FD 0%, #D9ECFA 100%); }
.hf-text-center    { text-align: center; }
.hf-flex-center    { display: flex; align-items: center; justify-content: center; }

/* ──────────────────────────────────────────────
   4. TYPOGRAPHY
────────────────────────────────────────────── */
.hf-script {
  font-family: 'Dancing Script', cursive;
  color: var(--hf-blue);
  font-size: 1.3em;
  display: block;
  line-height: 1.2;
  margin-bottom: .2em;
}
.hf-label {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--hf-blue-lt); color: var(--hf-blue);
  font-size: .75rem; font-weight: 600;
  letter-spacing: .09em; text-transform: uppercase;
  padding: .38rem 1rem; border-radius: 50px;
  margin-bottom: 1.1rem;
}
.hf-label svg { width: 13px; height: 13px; }
.hf-label--green { background: var(--hf-green-lt); color: var(--hf-green); }
.hf-label--dark  { background: rgba(255,255,255,.1); color: rgba(255,255,255,.75); }

/* Section headings */
.hf-section-head { margin-bottom: 3rem; }
.hf-section-head h2 {
  font-size: clamp(1.75rem, 3.4vw, 2.6rem);
  font-weight: 800;
  color: var(--hf-text);
  line-height: 1.22;
}
.hf-section-head h2 .accent { color: var(--hf-blue); }
.hf-section-head p {
  font-size: 1rem; color: var(--hf-body);
  max-width: 560px; margin-top: .7rem; line-height: 1.75;
}
.hf-section-head--center { text-align: center; }
.hf-section-head--center p { margin-left: auto; margin-right: auto; }
.hf-section-head--light h2 { color: #fff; }
.hf-section-head--light p  { color: rgba(255,255,255,.65); }

/* ──────────────────────────────────────────────
   5. BUTTONS
────────────────────────────────────────────── */
.hf-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: .9rem; font-weight: 600; letter-spacing: .02em;
  padding: .82rem 1.85rem;
  border-radius: var(--hf-r-btn);
  border: 2px solid transparent;
  cursor: pointer; transition: var(--hf-transition);
  white-space: nowrap; text-decoration: none;
}
.hf-btn svg { flex-shrink: 0; transition: transform .2s; }
.hf-btn:hover svg { transform: translateX(3px); }

.hf-btn--primary {
  background: var(--hf-orange); color: #fff; border-color: var(--hf-orange);
}
.hf-btn--primary:hover {
  background: var(--hf-blue-d); border-color: var(--hf-blue-d);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(40,133,197,.32);
}
.hf-btn--outline {
  background: transparent; color: var(--hf-text); border-color: var(--hf-border);
}
.hf-btn--outline:hover {
  background: var(--hf-text); color: #fff; border-color: var(--hf-text);
  transform: translateY(-2px);
}
.hf-btn--white {
  background: #fff; color: var(--hf-blue); border-color: #fff;
}
.hf-btn--white:hover {
  background: transparent; color: #fff; transform: translateY(-2px);
}
.hf-btn--outline-white {
  background: transparent; color: #fff; border-color: rgba(255,255,255,.55);
}
.hf-btn--outline-white:hover {
  background: #fff; color: var(--hf-navy); transform: translateY(-2px);
}
.hf-btn--green {
  background: var(--hf-rut); color: #fff; border-color: var(--hf-rut);
}
.hf-btn--green:hover {
  background: #15803d; border-color: #15803d;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(22,163,74,.30);
}
.hf-btn--lg { font-size: 1rem; padding: 1rem 2.2rem; }
.hf-btn--sm { font-size: .78rem; padding: .55rem 1.25rem; }

/* ──────────────────────────────────────────────
   6. TOPBAR
────────────────────────────────────────────── */
.hf-topbar {
  background: var(--hf-blue-b);
  color: rgba(255,255,255,.7);
  font-size: .78rem; padding: .5rem 0;
}
.hf-topbar__inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 1rem; flex-wrap: wrap;
}
.hf-topbar__left  { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.hf-topbar__item  { display: flex; align-items: center; gap: .4rem; }
.hf-topbar__item svg { width: 12px; height: 12px; }
.hf-topbar__item a { color: rgba(255,255,255,.7); transition: color .2s; }
.hf-topbar__item a:hover { color: #fff; }
.hf-topbar__social { display: flex; gap: .6rem; }
.hf-topbar__social a {
  width: 25px; height: 25px; border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.hf-topbar__social a:hover { background: var(--hf-blue); }
.hf-topbar__social svg { width: 11px; height: 11px; fill: #fff; }

/* ──────────────────────────────────────────────
   7. HEADER / NAV
────────────────────────────────────────────── */
.hf-header {
  background: #fff;
  box-shadow: 0 2px 14px rgba(0,0,0,.06);
  position: sticky; top: 0; z-index: 1000;
  transition: box-shadow .25s;
}
.hf-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.11); }
.hf-nav {
  display: flex; align-items: center;
  height: 72px; gap: 2rem;
}
.hf-logo {
  display: flex; align-items: center;
  flex-shrink: 0; text-decoration: none;
  /* Vertically centred inside the 72px nav */
  padding: 10px 0;
}
.hf-logo img {
  height: 52px;       /* fills nav (72px) minus 10px padding top+bottom */
  width: auto;        /* preserves the 262:90 aspect ratio */
  display: block;
  object-fit: contain;
}
/* Keep footer / other legacy uses working */
.hf-logo__mark {
  width: 36px; height: 36px;
  background: var(--hf-blue);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
}
.hf-logo__mark svg { width: 20px; height: 20px; stroke: #fff; fill: none; stroke-width: 2; }
.hf-logo span { color: var(--hf-blue); }
.hf-nav__menu {
  display: flex; gap: 1.75rem; flex: 1; justify-content: center;
}
.hf-nav__menu a {
  font-size: .875rem; font-weight: 500;
  color: var(--hf-body); transition: color .2s; position: relative;
}
.hf-nav__menu a::after {
  content: ''; position: absolute;
  bottom: -3px; left: 0; width: 0; height: 2px;
  background: var(--hf-blue); transition: width .25s;
}
.hf-nav__menu a:hover { color: var(--hf-text); }
.hf-nav__menu a:hover::after { width: 100%; }
.hf-nav__actions { display: flex; align-items: center; gap: .9rem; flex-shrink: 0; }
.hf-nav__tel { font-size: .83rem; font-weight: 600; color: var(--hf-text); }
.hf-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; background: none; border: none;
}
.hf-hamburger span {
  width: 22px; height: 2px; background: var(--hf-text);
  border-radius: 2px; transition: var(--hf-transition); display: block;
}

/* ──────────────────────────────────────────────
   8. HERO
────────────────────────────────────────────── */
.hf-hero {
  background: linear-gradient(150deg, #F9FBFF 0%, #ECF4FE 55%, #E4EFFA 100%);
  padding: 88px 0 104px;
  position: relative; overflow: hidden;
}
.hf-hero::before {
  content: ''; position: absolute;
  top: -120px; right: -120px;
  width: 560px; height: 560px; border-radius: 50%;
  background: radial-gradient(circle, rgba(40,133,197,.07) 0%, transparent 65%);
  pointer-events: none;
}
.hf-hero::after {
  content: ''; position: absolute; bottom: -60px; left: -80px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(110,186,254,.06) 0%, transparent 70%);
  pointer-events: none;
}
.hf-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative; z-index: 2;
}
.hf-hero__content {}
.hf-hero__headline {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800; line-height: 1.12;
  color: var(--hf-text); margin-bottom: 1.2rem;
}
.hf-hero__headline .accent { color: var(--hf-blue); }
.hf-hero__sub {
  font-size: 1.05rem; color: var(--hf-body);
  max-width: 460px; margin-bottom: 2rem; line-height: 1.75;
}
.hf-hero__ctas { display: flex; gap: .9rem; flex-wrap: wrap; margin-bottom: 2.2rem; }
.hf-hero__trust { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.hf-trust-pill {
  display: flex; align-items: center; gap: .45rem;
  font-size: .8rem; font-weight: 600; color: var(--hf-text);
  background: rgba(255,255,255,.8);
  border: 1px solid rgba(40,133,197,.16);
  padding: .32rem .95rem;
  border-radius: 50px;
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
  backdrop-filter: blur(8px);
}
.hf-trust-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--hf-yellow); flex-shrink: 0;
}
.hf-trust-dot--green { background: var(--hf-rut); }

/* Hero right column — visual card */
.hf-hero__visual {
  position: relative; display: flex; justify-content: flex-end;
}
.hf-hero__card {
  background: #ffffffcf;
  border-radius: 20px;
  padding: 2.2rem;
  box-shadow: var(--hf-shadow-md);
  width: 100%;
  max-width: 420px;
}
.hf-hero__card-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(226,158,33,.13); color: var(--hf-navy);
  border: 1px solid rgba(226,158,33,.28);
  font-size: .72rem; font-weight: 700;
  padding: .3rem .9rem; border-radius: 50px;
  margin-bottom: 1rem; letter-spacing: .04em;
}
.hf-hero__stat {
  font-size: 3rem; font-weight: 800; color: var(--hf-text);
  line-height: 1;
}
.hf-hero__stat span { color: var(--hf-blue); }
.hf-info-row {
  display: flex; gap: 1rem; margin-top: 1.4rem; flex-wrap: wrap;
}
.hf-info-item {
  display: flex; align-items: flex-start; gap: .6rem; flex: 1; min-width: 120px;
}
.hf-info-item__icon {
  width: 34px; height: 34px; background: var(--hf-blue-lt);
  border-radius: 9px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hf-info-item__icon svg { width: 16px; height: 16px; color: var(--hf-blue); stroke: var(--hf-blue); fill: none; stroke-width: 2; }
.hf-info-item__text strong { display: block; font-size: .85rem; font-weight: 700; color: var(--hf-text); }
.hf-info-item__text span { font-size: .75rem; color: var(--hf-muted); }

/* ──────────────────────────────────────────────
   9. TRUST STRIP (below hero)
────────────────────────────────────────────── */
.hf-trust-strip {
  background: var(--hf-blue-b);
  padding: 1.2rem 0;
}
.hf-trust-strip__inner {
  display: flex; justify-content: center;
  gap: 3rem; flex-wrap: wrap;
}
.hf-trust-item {
  display: flex; align-items: center; gap: .55rem;
  font-size: .82rem; font-weight: 600;
  letter-spacing: .01em;
  color: rgba(255,255,255,.8);
}
.hf-trust-item svg { width: 14px; height: 14px; stroke: var(--hf-yellow); fill: none; stroke-width: 2.5; flex-shrink: 0; }

/* ──────────────────────────────────────────────
   10. VALUE CARDS  (4-col strip)
────────────────────────────────────────────── */
.hf-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.hf-value-card {
  background: #fff;
  border: 1.5px solid #E4EBF4;
  border-top: 3px solid var(--hf-blue);
  border-radius: 18px;
  padding: 2rem 1.6rem;
  box-shadow: 0 2px 16px rgba(0,0,0,.04);
  transition: var(--hf-transition);
}
.hf-value-card:hover {
  background: #fff;
  border-color: rgba(40,133,197,.35);
  border-top-color: var(--hf-blue);
  box-shadow: 0 16px 48px rgba(40,133,197,.1);
  transform: translateY(-5px);
}
.hf-value-card__icon {
  width: 46px; height: 46px; background: var(--hf-blue-lt);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  box-shadow: none;
}
.hf-value-card__icon svg { width: 22px; height: 22px; stroke: var(--hf-blue); fill: none; stroke-width: 1.8; }
.hf-value-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: .4rem; }
.hf-value-card p  { font-size: .83rem; color: var(--hf-body); line-height: 1.65; }

/* ──────────────────────────────────────────────
   11. HIGHLIGHT BOX
────────────────────────────────────────────── */
.hf-highlight {
  background: #EEF5FF;
  border-left: 4px solid var(--hf-blue);
  border-radius: 4px 12px 12px 4px;
  padding: 1.1rem 1.4rem;
  margin: 1.5rem 0;
}
.hf-highlight p { margin: 0; font-size: .88rem; line-height: 1.75; color: var(--hf-body); }
.hf-highlight--green {
  background: var(--hf-green-lt); border-left-color: var(--hf-rut);
}

/* ──────────────────────────────────────────────
   12. SERVICE / CONTENT CARDS  (3-col)
────────────────────────────────────────────── */
.hf-cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.hf-card {
  background: #fff;
  border: 1.5px solid var(--hf-border);
  border-radius: var(--hf-r-card);
  padding: 2rem 1.75rem;
  transition: var(--hf-transition);
}
.hf-card:hover { box-shadow: var(--hf-shadow-md); transform: translateY(-4px); }
.hf-card__icon {
  width: 48px; height: 48px; background: var(--hf-blue-lt);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.1rem;
}
.hf-card__icon svg { width: 24px; height: 24px; stroke: var(--hf-blue); fill: none; stroke-width: 1.8; }
.hf-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: .5rem; }
.hf-card p  { font-size: .86rem; color: var(--hf-body); line-height: 1.7; }

/* ──────────────────────────────────────────────
   13. CHECKLIST
────────────────────────────────────────────── */
.hf-checklist { display: flex; flex-direction: column; gap: 0; }
.hf-checklist li {
  display: flex; align-items: flex-start; gap: .65rem;
  padding: .6rem 0;
  border-bottom: 1px solid var(--hf-border);
  font-size: .88rem; color: var(--hf-body);
}
.hf-checklist li:last-child { border-bottom: none; }
.hf-check-icon {
  width: 20px; height: 20px; background: var(--hf-blue);
  border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.hf-check-icon svg { width: 11px; height: 11px; stroke: #fff; fill: none; stroke-width: 3; }

/* ──────────────────────────────────────────────
   14. PRICING CARDS
────────────────────────────────────────────── */
.hf-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  align-items: start;
}
.hf-price-card {
  background: #fff;
  border: 1.5px solid #E2E8F0;
  border-radius: 20px;
  padding: 2.4rem 2rem;
  position: relative;
  transition: var(--hf-transition);
}
.hf-price-card:hover { box-shadow: var(--hf-shadow-md); transform: translateY(-4px); }
.hf-price-card--featured {
  background: var(--hf-navy);
  border-color: var(--hf-navy);
  transform: scale(1.03);
  box-shadow: var(--hf-shadow-md);
}
.hf-price-card--featured:hover { transform: scale(1.03) translateY(-4px); }
.hf-popular-badge {
  display: inline-block;
  background: var(--hf-yellow);
  color: var(--hf-navy); font-size: .7rem; font-weight: 800;
  padding: .22rem .75rem; border-radius: 50px;
  margin-bottom: .9rem;
  letter-spacing: .04em; text-transform: uppercase;
}
.hf-price-card h3 { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--hf-body); margin-bottom: 1rem; }
.hf-price-card--featured h3 { color: #fff; }
.hf-price-tier { font-size: .78rem; color: var(--hf-muted); margin-bottom: 1.4rem; }
.hf-price-card--featured .hf-price-tier { color: rgba(255,255,255,.45); }
.hf-price-amount {
  font-size: 2.8rem; font-weight: 800;
  color: var(--hf-text); line-height: 1;
  margin: .4rem 0 .2rem;
}
.hf-price-amount span { font-size: 3.2rem; }
.hf-price-amount sup { font-size: 1.2rem; vertical-align: top; margin-top: .4rem; font-weight: 600; }
.hf-price-amount sub { font-size: .85rem; font-weight: 400; color: var(--hf-muted); }
.hf-price-card--featured .hf-price-amount { color: #fff; }
.hf-price-desc { font-size: .8rem; color: var(--hf-muted); margin-bottom: 1.5rem; }
.hf-price-card--featured .hf-price-desc { color: rgba(255,255,255,.45); }
.hf-price-features { margin-bottom: 1.8rem; }
.hf-price-features li {
  display: flex; align-items: center; gap: .6rem;
  font-size: .84rem; padding: .5rem 0;
  border-bottom: 1px solid var(--hf-border);
  color: var(--hf-body);
}
.hf-price-card--featured .hf-price-features li {
  color: rgba(255,255,255,.7);
  border-bottom-color: rgba(255,255,255,.08);
}
.hf-price-features li:last-child { border-bottom: none; }
.hf-feat-check {
  width: 16px; height: 16px; background: var(--hf-blue-lt);
  border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.hf-feat-check svg { width: 9px; height: 9px; stroke: var(--hf-blue); fill: none; stroke-width: 3; }
.hf-price-card--featured .hf-feat-check { background: rgba(40,133,197,.25); }

/* ──────────────────────────────────────────────
   15. HOW IT WORKS (Steps)
────────────────────────────────────────────── */
.hf-steps { display: flex; flex-direction: column; gap: 0; }
.hf-step {
  display: flex; gap: 1.2rem;
  padding: 1.3rem 0;
  border-bottom: 1px solid var(--hf-border);
}
.hf-step:last-child { border-bottom: none; }
.hf-step__num {
  flex-shrink: 0; width: 40px; height: 40px;
  background: var(--hf-blue); color: #fff;
  border-radius: 50%; font-weight: 800; font-size: .9rem;
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
  box-shadow: 0 4px 14px rgba(40,133,197,.22);
}
.hf-step__body h4 { font-weight: 700; margin-bottom: .15rem; color: var(--hf-text); font-size: .95rem; }
.hf-step__body p  { margin: 0; font-size: .84rem; color: var(--hf-body); }

/* ──────────────────────────────────────────────
   16. AREA CHIPS
────────────────────────────────────────────── */
.hf-areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: .9rem;
}
.hf-area-chip {
  background: rgba(255,255,255,.88);
  border: 1.5px solid rgba(40,133,197,.18);
  border-radius: 12px;
  padding: .9rem 1.1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
  font-size: .83rem; color: var(--hf-body);
  font-weight: 500; transition: all .22s;
}
.hf-area-chip:hover {
  background: #fff; border-color: var(--hf-blue);
  box-shadow: 0 8px 24px rgba(40,133,197,.12);
  transform: translateY(-3px);
}
.hf-area-chip strong { display: block; font-weight: 700; color: var(--hf-text); font-size: .88rem; }

/* ──────────────────────────────────────────────
   17. FAQ ACCORDION
────────────────────────────────────────────── */
/* FAQ sections get Ice Blue trust-section treatment */
.hf-faq-item {
  border: 1px solid #d9e1ea;
  border-radius: 18px;
  background: #fff;
  margin-bottom: 14px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.hf-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.45;
  color: #123055;
}

.hf-faq-toggle {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #f3f6fa;
  border: 1px solid #dde5ee;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.hf-faq-toggle-icon {
  position: relative;
  width: 14px;
  height: 14px;
  display: block;
}

.hf-faq-toggle-icon::before,
.hf-faq-toggle-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: #203a5f;
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hf-faq-toggle-icon::before {
  width: 14px;
  height: 2px;
}

.hf-faq-toggle-icon::after {
  width: 2px;
  height: 14px;
}

.hf-faq-q:hover .hf-faq-toggle {
  background: #eaf1f8;
  border-color: #cfd9e5;
}

/* När item är öppen blir plus till minus */
.hf-faq-item.is-open .hf-faq-toggle-icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) scaleY(0);
}

.hf-faq-item.is-open .hf-faq-toggle {
  background: #edf4fb;
  border-color: #c8d8ea;
}

.hf-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.hf-faq-a-inner {
  padding: 0 24px 22px;
  color: #4b5b70;
  line-height: 1.7;
  font-size: 0.98rem;
}

/* ──────────────────────────────────────────────
   18. CTA BANNER
────────────────────────────────────────────── */
.hf-cta-banner {
  background: linear-gradient(140deg, #091728 0%, #122A47 50%, #0E2240 100%);
  padding: 88px 0; position: relative; overflow: hidden;
}
.hf-cta-banner::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle, rgba(40,133,197,.14) 0%, transparent 65%);
}
.hf-cta-banner::after {
  content: ''; position: absolute; bottom: -80px; left: -80px;
  width: 360px; height: 360px; border-radius: 50%;
  background: radial-gradient(circle, rgba(110,186,254,.07) 0%, transparent 70%);
  pointer-events: none;
}
.hf-cta-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap; position: relative; z-index: 2;
}
.hf-cta-inner h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800; color: #fff; margin-bottom: .4rem; line-height: 1.2;
}
.hf-cta-inner p { color: rgba(255,255,255,.6); font-size: 1.05rem; max-width: 500px; }
.hf-cta-actions { display: flex; gap: .9rem; flex-wrap: wrap; flex-shrink: 0; }

/* ──────────────────────────────────────────────
   19. CTA BOX (inline section ender)
────────────────────────────────────────────── */
.hf-cta-box {
  background: linear-gradient(135deg, var(--hf-blue-lt), #c0e8f8);
  border: 1.5px solid #9FCFE8;
  border-top: 3px solid var(--hf-yellow);  /* golden top accent = CTA-supporting accent */
  border-radius: 20px;
  padding: 3rem 2.5rem;
  text-align: center;
  margin-top: 2rem;
}
.hf-cta-box h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 800; margin-bottom: .5rem;
}
.hf-cta-box p { color: var(--hf-body); margin-bottom: 1.5rem; }
.hf-cta-box .hf-btns { display: flex; gap: .9rem; justify-content: center; flex-wrap: wrap; }

/* ──────────────────────────────────────────────
   19b. ACCENT BADGE (golden – ratings, guarantees, highlights)
────────────────────────────────────────────── */
.hf-accent-badge {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(226,158,33,.13);
  border: 1px solid rgba(226,158,33,.3);
  color: var(--hf-navy);
  font-size: .72rem; font-weight: 700;
  padding: .22rem .8rem; border-radius: 50px;
  letter-spacing: .03em;
}

/* ──────────────────────────────────────────────
   20. TESTIMONIALS
────────────────────────────────────────────── */
.hf-testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.hf-testi-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  padding: 2rem 1.75rem;
  transition: var(--hf-transition);
}
.hf-section--dark .hf-testi-card:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.2);
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
}
.hf-testi-card--light {
  background: #fff;
  border-color: var(--hf-border);
  box-shadow: var(--hf-shadow);
}
.hf-testi-stars { display: flex; gap: 3px; margin-bottom: 1.1rem; }
.hf-testi-stars svg { width: 13px; height: 13px; fill: var(--hf-yellow); }
.hf-testi-quote {
  font-size: .9rem; color: rgba(255,255,255,.82);
  line-height: 1.75; font-style: italic; margin-bottom: 1.4rem;
}
.hf-testi-card--light .hf-testi-quote { color: var(--hf-body); }
.hf-testi-author { display: flex; align-items: center; gap: .7rem; }
.hf-testi-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--hf-sky), var(--hf-blue));
  display: flex; align-items: center; justify-content: center;
  font-size: .82rem; font-weight: 700; color: #fff; flex-shrink: 0;
}
.hf-testi-name { font-size: .88rem; font-weight: 700; color: #fff; }
.hf-testi-card--light .hf-testi-name { color: var(--hf-text); }
.hf-testi-role { font-size: .73rem; color: rgba(255,255,255,.4); }
.hf-testi-card--light .hf-testi-role { color: var(--hf-muted); }

/* ──────────────────────────────────────────────
   21. SERVICE GRID (office zones etc.)
────────────────────────────────────────────── */
.hf-service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 1.1rem;
}
.hf-service-zone {
  border: 1.5px solid var(--hf-border);
  border-radius: 12px; padding: 1.25rem;
  background: #fff; transition: var(--hf-transition);
}
.hf-service-zone:hover { border-color: var(--hf-blue); box-shadow: var(--hf-shadow); }
.hf-service-zone h3 {
  font-size: .9rem; font-weight: 700;
  color: var(--hf-blue); margin-bottom: .5rem;
}
.hf-service-zone ul { display: flex; flex-direction: column; gap: 0; }
.hf-service-zone li {
  font-size: .8rem; color: var(--hf-body); padding: .2rem 0;
}

/* ──────────────────────────────────────────────
   22. FREQUENCY / OPTION GRID
────────────────────────────────────────────── */
.hf-freq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: .85rem;
}
.hf-freq-card {
  background: var(--hf-gray-bg);
  border: 1.5px solid var(--hf-border);
  border-radius: 10px; padding: 1.1rem;
  transition: var(--hf-transition);
}
.hf-freq-card:hover { border-color: var(--hf-blue); background: var(--hf-blue-lt); }
.hf-freq-card h4 { font-size: .88rem; font-weight: 700; color: var(--hf-text); margin-bottom: .3rem; }
.hf-freq-card p  { font-size: .8rem; color: var(--hf-body); margin: 0; }

/* ──────────────────────────────────────────────
   23. RUT INFO BOX
────────────────────────────────────────────── */
.hf-rut-box {
  background: var(--hf-green-lt);
  border: 1.5px solid #bbf7d0;
  border-radius: 14px;
  padding: 1.4rem 1.6rem;
  display: flex; gap: 1rem; align-items: flex-start;
}
.hf-rut-box__icon {
  width: 40px; height: 40px; background: #fff;
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hf-rut-box__icon svg { width: 20px; height: 20px; stroke: var(--hf-rut); fill: none; stroke-width: 2; }
.hf-rut-box h4 { font-size: .95rem; font-weight: 700; color: #15803d; margin-bottom: .3rem; }
.hf-rut-box p  { font-size: .84rem; color: #166534; margin: 0; line-height: 1.65; }

/* ──────────────────────────────────────────────
   24. FOOTER
────────────────────────────────────────────── */
.hf-footer { background: #08121E; padding: 64px 0 0; }
.hf-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.hf-footer__brand p {
  font-size: .85rem; color: rgba(255,255,255,.5);
  line-height: 1.75; max-width: 270px; margin: 1rem 0 1.4rem;
}
.hf-footer__social { display: flex; gap: .65rem; }
.hf-footer__social a {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.hf-footer__social a:hover { background: var(--hf-blue); }
.hf-footer__social svg { width: 13px; height: 13px; fill: #fff; }
.hf-footer__col h4 {
  font-size: .75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: rgba(255,255,255,.3); margin-bottom: 1.3rem;
}
.hf-footer__col li { margin-bottom: .7rem; }
.hf-footer__col a {
  font-size: .85rem; color: rgba(255,255,255,.55); transition: color .2s;
}
.hf-footer__col a:hover { color: #fff; }
.hf-footer__contact-item {
  display: flex; align-items: flex-start; gap: .65rem;
  font-size: .84rem; color: rgba(255,255,255,.55); margin-bottom: .85rem;
}
.hf-footer__contact-item svg { width: 15px; height: 15px; color: #6EBAFE; stroke: #6EBAFE; flex-shrink: 0; margin-top: 3px; fill: none; stroke-width: 2; }
.hf-footer__bottom {
  padding: 1.1rem 0;
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; flex-wrap: wrap;
}
.hf-footer__bottom span { font-size: .76rem; color: rgba(255,255,255,.25); }
.hf-footer__legal { display: flex; gap: 1.4rem; }
.hf-footer__legal a { font-size: .74rem; color: rgba(255,255,255,.25); transition: color .2s; }
.hf-footer__legal a:hover { color: rgba(255,255,255,.55); }

/* ──────────────────────────────────────────────
   25. BACK TO TOP
────────────────────────────────────────────── */
.hf-back-top {
  position: fixed; bottom: 24px; right: 24px;
  width: 42px; height: 42px; background: var(--hf-blue);
  color: #fff; border-radius: 50%; border: none;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(40,133,197,.35);
  cursor: pointer; z-index: 999;
  opacity: 0; transform: translateY(10px);
  transition: opacity .3s, transform .3s;
}
.hf-back-top.show { opacity: 1; transform: translateY(0); }
.hf-back-top:hover { background: var(--hf-sky); transform: translateY(-2px); }
.hf-back-top svg { width: 16px; height: 16px; stroke: #fff; fill: none; stroke-width: 2.5; }

/* ──────────────────────────────────────────────
   25b. STICKY MOBILE CTA
────────────────────────────────────────────── */
.hf-sticky-cta {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 998;
  background: var(--hf-navy);
  padding: .75rem 1.25rem;
  gap: .75rem;
  align-items: center; justify-content: center;
  box-shadow: 0 -3px 16px rgba(0,0,0,.22);
  transform: translateY(100%);
  transition: transform .3s ease;
}
.hf-sticky-cta.show { transform: translateY(0); }
.hf-sticky-cta__book {
  flex: 1; max-width: 200px;
  background: var(--hf-blue); color: #fff;
  font-weight: 700; font-size: .88rem;
  padding: .65rem 1.25rem; border-radius: 8px;
  text-align: center; text-decoration: none;
  transition: background .2s;
}
.hf-sticky-cta__book:hover { background: var(--hf-blue-d); }
.hf-sticky-cta__tel {
  flex: 1; max-width: 180px;
  background: transparent; color: rgba(255,255,255,.85);
  border: 1.5px solid rgba(255,255,255,.35);
  font-weight: 600; font-size: .85rem;
  padding: .6rem 1rem; border-radius: 8px;
  text-align: center; text-decoration: none;
  transition: border-color .2s, color .2s;
}
.hf-sticky-cta__tel:hover { border-color: rgba(255,255,255,.7); color: #fff; }

@media (max-width: 768px) {
  .hf-sticky-cta { display: flex; }
  .hf-back-top    { bottom: 76px; } /* nudge above sticky bar */
}

/* ──────────────────────────────────────────────
   26. SCROLL REVEAL (JS hooks)
────────────────────────────────────────────── */
.hf-reveal {
  opacity: 0; transform: translateY(18px);
  transition: opacity .5s ease, transform .5s ease;
}
.hf-reveal.visible { opacity: 1; transform: translateY(0); }

/* ──────────────────────────────────────────────
   27. PREMIUM REDESIGN v2.0 COMPONENTS
   Migrerad från Premium Redesign v2.0
────────────────────────────────────────────── */

/* ============================================
   HERO
   ============================================ */
/* Hero image */
.hf-sol-img {
  width: 100%; height: 600px;
  object-fit: cover; object-position: center top;
  border-radius: 22px;
  box-shadow: 0 28px 64px rgba(0,0,0,.17);
  display: block;
}
.hf-sol-visual { position: relative; padding-bottom: 3rem; }

/* Hero card (glassmorphism overlay) */
.hf-sol-card {
  position: absolute;
  bottom: -2rem; right: 0.4rem; left: auto;
  max-width: 240px; padding: 1rem 1.2rem; z-index: 2;
  background: rgba(255,255,255,.94) !important;
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.9) !important;
}
.hf-sol-card .hf-hero__stat           { font-size: 1.9rem; }
.hf-sol-card .hf-info-row             { gap: .4rem .5rem; margin-top: .75rem; }
.hf-sol-card .hf-info-item            { min-width: 0; }
.hf-sol-card .hf-info-item__icon      { width: 26px; height: 26px; border-radius: 6px; }
.hf-sol-card .hf-info-item__icon svg  { width: 13px; height: 13px; }

/* ============================================
   LAYOUT
   ============================================ */
/* Checklist two-column grid */
.p-checklist-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3.5rem; align-items: start;
}

/* How-it-works asymmetric grid */
.p-how-grid {
  display: grid; grid-template-columns: 5fr 7fr;
  gap: 5rem; align-items: center;
}

/* Pricing two-column grid */
.p-pricing-2col {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2rem; max-width: 620px; margin: 0 auto;
}

/* ============================================
   CARDS
   ============================================ */
/* Featured price card variant */
.hf-price-card--sol-feat {
  border: 2px solid var(--hf-blue) !important;
  box-shadow: 0 12px 48px rgba(40,133,197,.13);
}
.hf-price-card--sol-feat::before {
  content: 'Mest populärt';
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--hf-blue); color: #fff;
  font-size: .66rem; font-weight: 800; letter-spacing: .08em;
  text-transform: uppercase; padding: .22rem 1.1rem;
  border-radius: 50px; white-space: nowrap;
  font-family: 'Poppins', sans-serif;
}

/* ============================================
   BUTTONS
   ============================================ */
/* Price card CTA button */
.p-price-btn {
  display: flex; align-items: center; justify-content: center;
  width: 100%; padding: .88rem 1.5rem;
  background: var(--hf-orange); color: #fff !important;
  border: 2px solid var(--hf-orange); border-radius: 50px;
  font-family: 'Poppins', sans-serif; font-size: .9rem;
  font-weight: 700; letter-spacing: .02em;
  cursor: pointer; transition: all .22s; text-decoration: none;
}
.p-price-btn:hover {
  background: var(--hf-blue-d); border-color: var(--hf-blue-d);
  transform: translateY(-2px); box-shadow: 0 8px 22px rgba(40,133,197,.28);
}

/* ──────────────────────────────────────────────
   28. RESPONSIVE
────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hf-values-grid { grid-template-columns: repeat(2, 1fr); }
  .hf-cards-3      { grid-template-columns: repeat(2, 1fr); }
  .hf-testi-grid   { grid-template-columns: repeat(2, 1fr); }
  .hf-footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .hf-section { padding: 64px 0; }
  .hf-hero__inner { grid-template-columns: 1fr; }
  .hf-hero__visual { justify-content: stretch; }
  .hf-hero__card { max-width: 100%; }
  .hf-nav__menu { display: none; }
  .hf-hamburger { display: flex; }
  .hf-nav__menu.open {
    display: flex; flex-direction: column; gap: 1rem;
    position: absolute; top: 72px; left: 0; right: 0;
    background: #fff; padding: 1rem 1.5rem;
    box-shadow: 0 8px 24px rgba(0,0,0,.1);
    z-index: 999;
  }
  .hf-cards-3      { grid-template-columns: 1fr; }
  .hf-pricing-grid { grid-template-columns: 1fr; }
  .hf-price-card--featured { transform: none; }
  .hf-price-card--featured:hover { transform: translateY(-4px); }
  .hf-cta-inner { flex-direction: column; text-align: center; }
  .hf-cta-actions { justify-content: center; }
  .hf-testi-grid  { grid-template-columns: 1fr; }
  .hf-footer__grid { grid-template-columns: 1fr; }
  /* Premium Redesign v2.0 — mobile */
  .hf-sol-img  { height: 260px; border-radius: 14px; }
  .hf-sol-card { position: static; max-width: 100%; margin-top: 1rem;
                 padding: 1.4rem; bottom: auto; right: auto; }
  .hf-sol-card .hf-hero__stat          { font-size: 2.4rem; }
  .hf-sol-card .hf-info-item           { min-width: 100px; }
  .hf-sol-card .hf-info-item__icon     { width: 34px; height: 34px; border-radius: 9px; }
  .hf-sol-card .hf-info-item__icon svg { width: 16px; height: 16px; }
  .p-checklist-grid { grid-template-columns: 1fr; gap: 2rem; }
  .p-how-grid { grid-template-columns: 1fr; gap: 2rem; }
  .p-pricing-2col { grid-template-columns: 1fr; max-width: 100%; gap: 2.5rem; }
  .hf-values-grid { grid-template-columns: 1fr 1fr; }
  .hf-price-card--sol-feat { margin-top: 1rem; }
}
@media (max-width: 580px) {
  .hf-container { padding: 0 18px; }
  .hf-topbar    { display: none; }
  .hf-values-grid { grid-template-columns: 1fr; }
  .hf-hero__ctas { flex-direction: column; }
  .hf-hero__ctas .hf-btn { width: 100%; justify-content: center; }
  .hf-trust-strip__inner { gap: 1rem; font-size: .75rem; }
  .hf-service-grid { grid-template-columns: 1fr; }
  .hf-freq-grid    { grid-template-columns: 1fr 1fr; }
}

/* ──────────────────────────────────────────────
   29. === Icons ===
   Centraliserad SVG-sprite-hantering. Ikoner levereras
   via <svg><use href="/images/hemfresh-icons.svg#i-*"/></svg>.
   Färg via currentColor. Extern sprite cachas mellan sidor.
────────────────────────────────────────────── */
.hf-icon {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  vertical-align: middle;
  display: inline-block;
  pointer-events: none;
}

/* Storleksmodifierare (explicit width/height → inga CLS) */
.hf-icon--sm { width: 16px; height: 16px; }
.hf-icon--md { width: 20px; height: 20px; }
.hf-icon--lg { width: 24px; height: 24px; }
.hf-icon--xl { width: 32px; height: 32px; }

/* Kontext-modifierare — ärver/sätter färg per komponent */
.hf-icon--trust   { width: 14px; height: 14px; color: var(--hf-yellow); stroke-width: 2.5; }
.hf-icon--value   { width: 22px; height: 22px; color: var(--hf-blue); stroke-width: 1.8; }
.hf-icon--benefit { width: 11px; height: 11px; color: #fff; stroke-width: 3; }
.hf-icon--rut     { width: 20px; height: 20px; color: var(--hf-rut); stroke-width: 2; }

/* Fyllda ikoner (t.ex. star) */
.hf-icon--filled { fill: currentColor; stroke: none; }

/* Interaktiva ikoner: garantera 44×44 klickyta på mobil */
.hf-icon-btn {
  min-width: 44px; min-height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
}

/* Reduced motion: inga ikon-animationer för användare som bett om det */
@media (prefers-reduced-motion: reduce) {
  .hf-icon, .hf-icon * { animation: none !important; transition: none !important; }
}
