/* ===== helektriker.dk design system =====
   Generated from brand-tokens.css + prototype.css. Assign .hel-* classes to
   Divi Sections/Rows/Modules (see divi-build-guide.md). ===== */

/* =============================================================
   helektriker.dk — Brand design tokens
   Hørlykke EL ApS (Øens Elektriker)
   Style: "Trust & Authority" (trade/service) — black primary, red accent
   Black = fixed brand element (black company vans). Red = logo accent only.
   All foreground/background pairs verified WCAG AA. Light theme.
   Drop into the Divi child theme stylesheet (webworq-child/style.css).
   ============================================================= */

:root {
  /* --- Brand core --- */
  --brand-black:        #141414; /* primary brand black (vans, header, buttons) */
  --brand-black-pure:   #000000; /* logo black / max-emphasis */
  --brand-red:          #EA2B2B; /* logo red — accent fills, icons, swoosh */
  --brand-red-dark:     #BC0C06; /* red hover / red text on white (AA) */
  --brand-grey:         #808080; /* logo wordmark grey */

  /* --- Semantic: primary (black) --- */
  --color-primary:        var(--brand-black);
  --color-primary-hover:  #000000;
  --color-primary-active: #2A2A2A;
  --color-on-primary:     #FFFFFF;

  /* --- Semantic: accent (red) --- */
  --color-accent:         var(--brand-red);   /* fills on large/bold CTAs */
  --color-accent-strong:  #C81E1E;            /* red w/ white text at body size (AA 5.75:1) */
  --color-accent-hover:   var(--brand-red-dark);
  --color-accent-active:  #9E0A04;
  --color-on-accent:      #FFFFFF;
  --color-accent-text:    var(--brand-red-dark); /* red as text/link on white (AA 6.57:1) */

  /* --- Text --- */
  --color-ink:            #3F3F3F; /* body text (AAA on white) */
  --color-heading:        #1A1A1A; /* headings */
  --color-muted:          #6F6F6F; /* secondary text — AA at small sizes */
  --color-muted-soft:     #808080; /* decorative / large text only */

  /* --- Surfaces --- */
  --color-surface:        #FFFFFF;
  --color-surface-alt:    #F7F7F7;
  --color-surface-sunken: #EFEFEF;
  --color-border:         #E8E8E8;
  --color-border-strong:  #D4D4D4;

  /* --- State colors (with icon/text, never color alone) --- */
  --color-success:        #15803D; --color-on-success: #FFFFFF;
  --color-error:          #C81E1E; --color-on-error:   #FFFFFF; /* distinct-readable red */
  --color-warning:        #B45309; --color-on-warning: #FFFFFF;
  --color-info:           #1F2937; --color-on-info:    #FFFFFF;

  /* --- Interaction --- */
  --color-ring:           var(--brand-red); /* focus ring — high visibility */
  --focus-ring:           0 0 0 3px rgba(234, 43, 43, 0.45);
  --transition-ui:        150ms ease-out;
}

/* Example mappings (adjust selectors to Divi output as needed) ---------- */
/* Primary CTA button (black) */
.btn-primary {
  background: var(--color-primary);
  color: var(--color-on-primary);
  transition: background var(--transition-ui);
}
.btn-primary:hover  { background: var(--color-primary-hover); }
.btn-primary:active { background: var(--color-primary-active); }

/* Accent CTA button (red) — use accent-strong so body-size label stays AA */
.btn-accent {
  background: var(--color-accent-strong);
  color: var(--color-on-accent);
  transition: background var(--transition-ui);
}
.btn-accent:hover  { background: var(--color-accent-hover); }
.btn-accent:active { background: var(--color-accent-active); }

/* Links */
a { color: var(--color-accent-text); }
a:hover { color: var(--color-primary); }

/* Brand divider (echoes the logo red bar under the header) */
.brand-rule { border-bottom: 4px solid var(--color-accent); }

/* Keyboard focus */
:focus-visible { outline: none; box-shadow: var(--focus-ring); }

/* =============================================================
   SPACING, TYPE & SHAPE  (added via design-taste-frontend skill)
   Dials: VARIANCE 4 · MOTION 3 · DENSITY 4 (trust-first local trade)
   ============================================================= */
:root {
  /* --- Spacing scale: 8px rhythm --- */
  --space-1: 4px;   --space-2: 8px;   --space-3: 12px;  --space-4: 16px;
  --space-5: 24px;  --space-6: 32px;  --space-7: 48px;  --space-8: 64px;
  --space-9: 96px;

  /* Section vertical padding (DENSITY 4 → 64–96px) */
  --section-y:        96px;  /* desktop */
  --section-y-mobile: 56px;
  --container-max:    1320px;
  --gutter:           40px;  /* desktop; reduced on tablet/mobile */
  --measure:          65ch;  /* max body line length */

  /* --- Type families (sans only — serif & Inter-default avoided per skill) --- */
  --font-heading: "Geist", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-body:    "Geist", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-mono:    "Geist Mono", ui-monospace, "SFMono-Regular", Menlo, monospace; /* phone/numbers, tabular */

  /* --- Type scale (desktop → mobile via clamp) --- */
  --fs-display: clamp(2.25rem, 4vw, 3.25rem); /* H1 ~36→52px, weight not scream */
  --fs-h2:      clamp(1.75rem, 3vw, 2.25rem); /* ~28→36px */
  --fs-h3:      clamp(1.375rem, 2vw, 1.5rem); /* ~22→24px */
  --fs-h4:      1.25rem;                        /* 20px */
  --fs-body-lg: 1.125rem;                       /* 18px lead paragraphs */
  --fs-body:    1.0625rem;                       /* 17px default body (≥16 mobile) */
  --fs-small:   0.875rem;                        /* 14px captions/labels */

  --lh-tight:   1.15;  /* headings */
  --lh-body:    1.6;   /* body */
  --tracking-tight: -0.02em; /* display headings */

  --weight-regular: 400; --weight-medium: 500; --weight-semibold: 600; --weight-bold: 700;

  /* --- Shape: ONE radius system (shape-consistency lock) --- */
  --radius:    8px;   /* buttons, cards, inputs */
  --radius-sm: 6px;   /* chips, small controls */
  --radius-pill: 999px; /* the 5,0-rating badge only */

  /* --- Shadows: tinted to brand black, never pure black --- */
  --shadow-sm: 0 1px 2px rgba(20,20,20,0.06);
  --shadow-md: 0 6px 20px rgba(20,20,20,0.08);
  --shadow-lg: 0 16px 40px rgba(20,20,20,0.10);
}

@media (max-width: 1024px) { :root { --gutter: 28px; } }
@media (max-width: 768px) {
  :root { --section-y: var(--section-y-mobile); --gutter: 20px; }
}

/* Base type application */
body { font-family: var(--font-body); font-size: var(--fs-body); line-height: var(--lh-body); color: var(--color-ink); }
h1, h2, h3, h4 { font-family: var(--font-heading); line-height: var(--lh-tight); color: var(--color-heading); }
h1 { font-size: var(--fs-display); letter-spacing: var(--tracking-tight); font-weight: var(--weight-bold); }
h2 { font-size: var(--fs-h2); letter-spacing: var(--tracking-tight); font-weight: var(--weight-semibold); }
h3 { font-size: var(--fs-h3); font-weight: var(--weight-semibold); }
h4 { font-size: var(--fs-h4); font-weight: var(--weight-medium); }
p  { max-width: var(--measure); }
.tel, .price, .badge-num { font-family: var(--font-mono); font-variant-numeric: tabular-nums; }

/* =============================================================
   helektriker.dk — design prototype
   Static HTML/CSS to agree on the design BEFORE Divi.
   Structure mirrors Divi: .hel-section (Section) > .hel-row (Row) > modules.
   Tokens come from ../../brand-tokens.css (loaded first in <head>).
   ============================================================= */

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
html, body { overflow-x: clip; max-width: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--color-ink);
  background: var(--color-surface);
  -webkit-tap-highlight-color: rgba(234,43,43,.15);
}
img { max-width: 100%; height: auto; display: block; }
/* Default inline-icon size — prevents oversized SVGs (e.g. the "Læs mere" arrow).
   Components with explicit sizing (.ic, .hel-btn, .hel-check ...) override this. */
svg { width: 1em; height: 1em; flex: none; vertical-align: middle; }
.more svg { width: 1.05em; height: 1.05em; }
a { color: var(--color-accent-text); text-decoration: none; }
a:hover { color: var(--color-primary); }
h1, h2, h3, h4 { font-family: var(--font-heading); line-height: var(--lh-tight); color: var(--color-heading); margin: 0 0 .5em; }
h1 { font-size: var(--fs-display); letter-spacing: var(--tracking-tight); font-weight: 700; }
h2 { font-size: var(--fs-h2); letter-spacing: var(--tracking-tight); font-weight: 600; }
h3 { font-size: var(--fs-h3); font-weight: 600; }
h4 { font-size: var(--fs-h4); font-weight: 600; }
p  { margin: 0 0 1rem; max-width: var(--measure); }

/* ---------- Layout primitives (Divi: Row / container) ---------- */
.hel-container { max-width: var(--container-max); margin: 0 auto; padding: 0 var(--gutter); }
.hel-section { padding: var(--section-y) 0; }
.hel-section.is-tight { padding: var(--space-7) 0; }
.hel-section.is-alt  { background: var(--color-surface-alt); }
.hel-section.is-dark { background: var(--color-primary); color: #fff; }
.hel-section.is-dark h1, .hel-section.is-dark h2, .hel-section.is-dark h3 { color: #fff; }
.hel-section.is-dark p { color: #cfcfcf; }

.hel-eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: var(--fs-small); font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--color-accent-text); margin-bottom: .9rem;
}
.is-dark .hel-eyebrow { color: #ff6a6a; }
.hel-eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--color-accent); }

.hel-section-head { max-width: 720px; margin-bottom: var(--space-7); }
.hel-section-head.center { margin-inline: auto; text-align: center; }
.hel-lead { font-size: var(--fs-body-lg); color: var(--color-muted); }
.is-dark .hel-lead { color: #d4d4d4; }

/* ---------- Buttons (Divi: Button module) ---------- */
.hel-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-heading); font-weight: 600; font-size: 1rem; line-height: 1;
  padding: .95rem 1.5rem; border-radius: var(--radius); border: 2px solid transparent;
  cursor: pointer; transition: transform var(--transition-ui), background var(--transition-ui), color var(--transition-ui), border-color var(--transition-ui);
  white-space: nowrap;
}
.hel-btn:active { transform: translateY(1px) scale(.99); }
.hel-btn--primary { background: var(--color-primary); color: #fff; }
.hel-btn--primary:hover { background: #000; color: #fff; transform: translateY(-1px); }
.hel-btn--accent { background: var(--color-accent-strong); color: #fff; }
.hel-btn--accent:hover { background: var(--color-accent-hover); color: #fff; transform: translateY(-1px); }
.hel-btn--ghost { background: transparent; color: var(--color-heading); border-color: var(--color-border-strong); }
.hel-btn--ghost:hover { border-color: var(--color-primary); color: var(--color-primary); }
.is-dark .hel-btn--ghost, .hel-hero .hel-btn--ghost, .hel-pagehero .hel-btn--ghost { color: #fff; border-color: rgba(255,255,255,.35); }
.is-dark .hel-btn--ghost:hover, .hel-hero .hel-btn--ghost:hover, .hel-pagehero .hel-btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.hel-btn svg { width: 18px; height: 18px; }

/* ---------- Top utility bar (black) ---------- */
.hel-topbar { background: var(--color-primary); color: #cfcfcf; font-size: var(--fs-small); }
.hel-topbar .hel-container { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 40px; }
.hel-topbar a { color: #fff; }
.hel-topbar .meta { display: flex; align-items: center; gap: 1.4rem; }
.hel-topbar .meta span { display: inline-flex; align-items: center; gap: .45rem; }
.hel-topbar svg { width: 15px; height: 15px; color: var(--color-accent); }
.hel-rating { display: inline-flex; align-items: center; gap: .4rem; font-weight: 600; }
.hel-rating .stars { color: #f5b301; letter-spacing: 1px; }

/* ---------- Header / nav (white, sticky) ---------- */
.hel-header { position: sticky; top: 0; z-index: 100; background: #fff; border-bottom: 1px solid var(--color-border); box-shadow: var(--shadow-sm); }
.hel-header .hel-container { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; min-height: 72px; }
.hel-logo img { height: 40px; width: auto; }
.hel-nav { display: flex; align-items: center; gap: .25rem; margin-left: auto; }
.hel-nav > a, .hel-nav > .has-sub > a {
  display: inline-flex; align-items: center; gap: .3rem; padding: .6rem .85rem; border-radius: var(--radius-sm);
  font-family: var(--font-heading); font-weight: 500; color: var(--color-heading); font-size: .98rem;
}
.hel-nav > a:hover, .hel-nav .has-sub:hover > a { color: var(--color-accent-text); background: var(--color-surface-alt); }
.hel-nav .has-sub { position: relative; }
.hel-nav .has-sub > a::after { content: ""; width: 7px; height: 7px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg) translateY(-2px); opacity: .6; }
.hel-submenu {
  position: absolute; top: calc(100% + 6px); left: 0; min-width: 250px;
  background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: .4rem; opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: all .16s ease-out;
}
.hel-nav .has-sub:hover .hel-submenu { opacity: 1; visibility: visible; transform: translateY(0); }
.hel-submenu a { display: block; padding: .6rem .8rem; border-radius: var(--radius-sm); color: var(--color-ink); font-weight: 500; }
.hel-submenu a:hover { background: var(--color-surface-alt); color: var(--color-accent-text); }
.hel-header-cta { display: flex; align-items: center; gap: .8rem; }
.hel-burger { display: none; background: none; border: 0; cursor: pointer; padding: .4rem; }
.hel-burger span { display: block; width: 24px; height: 2px; background: var(--color-heading); margin: 5px 0; transition: .2s; }

/* ---------- Hero ---------- */
.hel-hero { background: var(--color-primary); color: #fff; position: relative; overflow: hidden; }
.hel-hero .hel-container { display: grid; grid-template-columns: 1.05fr .95fr; gap: var(--space-8); align-items: center; padding-top: var(--space-8); padding-bottom: var(--space-8); }
.hel-hero h1 { color: #fff; max-width: 14ch; }
.hel-hero h1 em { font-style: normal; color: var(--color-accent); }
.hel-hero p { color: #d4d4d4; font-size: var(--fs-body-lg); max-width: 46ch; }
.hel-hero .hel-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin: 1.6rem 0 1.4rem; }
.hel-hero .hel-trustrow { display: flex; flex-wrap: wrap; gap: 1.4rem; padding-top: 1.2rem; border-top: 1px solid rgba(255,255,255,.12); }
.hel-hero .hel-trustrow span { display: inline-flex; align-items: center; gap: .5rem; font-size: var(--fs-small); color: #e8e8e8; }
.hel-hero .hel-trustrow svg { width: 18px; height: 18px; color: var(--color-accent); }
.hel-hero-media { position: relative; }
.hel-hero-media img { border-radius: var(--radius); box-shadow: var(--shadow-lg); aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.hel-hero-badge {
  position: absolute; bottom: -18px; left: -18px; background: #fff; color: var(--color-heading);
  border-radius: var(--radius); padding: .9rem 1.1rem; box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: .7rem;
}
.hel-hero-badge .num { font-family: var(--font-heading); font-weight: 700; font-size: 1.6rem; line-height: 1; }
.hel-hero-badge small { color: var(--color-muted); display: block; font-size: .8rem; }
.hel-hero-badge .stars { color: #f5b301; font-size: .85rem; }

/* ---------- Trust strip ---------- */
.hel-trust-strip { display: grid; grid-template-columns: repeat(4,1fr); gap: var(--space-5); }
.hel-trust-item { display: flex; align-items: center; gap: .85rem; }
.hel-trust-item .ic { flex: 0 0 auto; width: 44px; height: 44px; border-radius: var(--radius); background: var(--color-surface-alt); display: grid; place-items: center; color: var(--color-accent); }
.hel-trust-item .ic svg { width: 22px; height: 22px; }
.hel-trust-item strong { display: block; font-family: var(--font-heading); color: var(--color-heading); font-size: 1rem; }
.hel-trust-item span { font-size: var(--fs-small); color: var(--color-muted); }

/* ---------- Service grid (Divi: Blurb modules in a 4-col row) ---------- */
.hel-grid { display: grid; gap: var(--space-5); }
.hel-grid--4 { grid-template-columns: repeat(4,1fr); }
.hel-grid--3 { grid-template-columns: repeat(3,1fr); }
.hel-grid--2 { grid-template-columns: repeat(2,1fr); }
.hel-card {
  background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius);
  padding: var(--space-5); transition: transform var(--transition-ui), box-shadow var(--transition-ui), border-color var(--transition-ui);
  display: flex; flex-direction: column; gap: .5rem; height: 100%;
}
.hel-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--color-border-strong); }
.hel-card .ic { width: 48px; height: 48px; border-radius: var(--radius); background: var(--color-primary); color: #fff; display: grid; place-items: center; margin-bottom: .6rem; transition: background var(--transition-ui); }
.hel-card:hover .ic { background: var(--color-accent); }
.hel-card .ic svg { width: 24px; height: 24px; }
.hel-card h3 { font-size: 1.15rem; margin: 0; }
.hel-card p { font-size: var(--fs-small); color: var(--color-muted); margin: 0; }
.hel-card .more { margin-top: auto; padding-top: .8rem; font-weight: 600; font-size: .9rem; color: var(--color-accent-text); display: inline-flex; align-items: center; gap: .35rem; }
.hel-card:hover .more { gap: .6rem; }

/* ---------- Split (image + text) ---------- */
.hel-split { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-8); align-items: center; }
.hel-split.reverse .hel-split-media { order: 2; }
.hel-split-media img { border-radius: var(--radius); box-shadow: var(--shadow-md); width: 100%; object-fit: cover; aspect-ratio: 3/2; }
.hel-check { list-style: none; padding: 0; margin: 1.2rem 0 0; display: grid; gap: .7rem; }
.hel-check li { display: flex; gap: .65rem; align-items: flex-start; }
.hel-check svg { flex: 0 0 auto; width: 20px; height: 20px; color: var(--color-accent); margin-top: 2px; }

/* ---------- Process steps ---------- */
.hel-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: var(--space-5); counter-reset: step; }
.hel-step { position: relative; padding-top: 3.6rem; }
.hel-step::before { counter-increment: step; content: "0" counter(step); position: absolute; top: 0; left: 0; font-family: var(--font-heading); font-weight: 700; font-size: 2.1rem; color: var(--color-accent); opacity: .9; }
.hel-step h3 { font-size: 1.1rem; }
.hel-step p { font-size: var(--fs-small); color: var(--color-muted); }
.is-dark .hel-step p { color: #bdbdbd; }

/* ---------- Areas ---------- */
.hel-pills { display: flex; flex-wrap: wrap; gap: .7rem; }
.hel-pill { display: inline-flex; align-items: center; gap: .5rem; padding: .7rem 1.1rem; border: 1px solid var(--color-border-strong); border-radius: var(--radius-pill); font-weight: 600; font-size: .95rem; color: var(--color-heading); background: #fff; transition: all var(--transition-ui); }
.hel-pill:hover { border-color: var(--color-accent); color: var(--color-accent-text); transform: translateY(-1px); }
.hel-pill svg { width: 16px; height: 16px; color: var(--color-accent); }

/* ---------- Testimonials ---------- */
.hel-quote { background: #fff; border: 1px solid var(--color-border); border-left: 3px solid var(--color-accent); border-radius: var(--radius); padding: var(--space-5); height: 100%; display: flex; flex-direction: column; }
.hel-quote .stars { color: #f5b301; margin-bottom: .6rem; }
.hel-quote blockquote { margin: 0 0 1rem; font-size: 1.05rem; color: var(--color-ink); }
.hel-quote figcaption { margin-top: auto; font-size: var(--fs-small); color: var(--color-muted); }
.hel-quote figcaption strong { display: block; color: var(--color-heading); font-family: var(--font-heading); }

/* ---------- CTA band ---------- */
.hel-cta-band { background: var(--color-accent-strong); color: #fff; }
.hel-cta-band .hel-container { display: flex; align-items: center; justify-content: space-between; gap: var(--space-5); flex-wrap: wrap; }
.hel-cta-band h2 { color: #fff; margin: 0; }
.hel-cta-band p { color: #ffe3e1; margin: .3rem 0 0; }
.hel-cta-band .hel-btn--primary { background: #fff; color: var(--color-accent-strong); }
.hel-cta-band .hel-btn--primary:hover { background: var(--color-primary); color: #fff; }
.hel-cta-band .hel-btn--ghost { border-color: rgba(255,255,255,.6); color: #fff; }
.hel-cta-band .hel-btn--ghost:hover { background: rgba(255,255,255,.12); border-color: #fff; }

/* ---------- Footer ---------- */
.hel-footer { background: #0e0e0e; color: #b8b8b8; padding-top: var(--space-8); }
.hel-footer a { color: #d4d4d4; }
.hel-footer a:hover { color: #fff; }
.hel-footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: var(--space-6); padding-bottom: var(--space-7); }
.hel-footer .brand { font-family: var(--font-heading); font-weight: 700; font-size: 1.4rem; color: #fff; }
.hel-footer .brand b { color: var(--color-accent); }
.hel-footer h4 { color: #fff; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1rem; }
.hel-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .55rem; font-size: .95rem; }
.hel-footer .contact-line { display: flex; gap: .6rem; align-items: flex-start; margin-bottom: .7rem; font-size: .95rem; }
.hel-footer .contact-line svg { width: 17px; height: 17px; color: var(--color-accent); flex: 0 0 auto; margin-top: 3px; }
.hel-footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 1.2rem 0; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .85rem; color: #8a8a8a; }

/* ---------- Breadcrumb ---------- */
.hel-breadcrumb { font-size: var(--fs-small); color: var(--color-muted); padding: 1rem 0; }
.hel-breadcrumb a { color: var(--color-muted); }
.hel-breadcrumb a:hover { color: var(--color-accent-text); }

/* ---------- Page hero (interior pages) ---------- */
.hel-pagehero { background: var(--color-primary); color: #fff; }
.hel-pagehero .hel-container { padding-top: var(--space-7); padding-bottom: var(--space-7); }
.hel-pagehero h1 { color: #fff; max-width: 20ch; }
.hel-pagehero p { color: #d4d4d4; font-size: var(--fs-body-lg); max-width: 60ch; }
.hel-pagehero .hel-actions { display: flex; gap: .8rem; flex-wrap: wrap; margin-top: 1.4rem; }

/* ---------- Content layout w/ sidebar (service page) ---------- */
.hel-content { display: grid; grid-template-columns: 1fr 340px; gap: var(--space-8); align-items: start; }
.hel-prose h2 { margin-top: 2rem; }
.hel-prose h2:first-child { margin-top: 0; }
.hel-prose ul { padding-left: 1.1rem; }
.hel-prose li { margin-bottom: .4rem; }
.hel-aside { position: sticky; top: 92px; display: grid; gap: var(--space-5); }
.hel-aside-card { background: var(--color-surface-alt); border: 1px solid var(--color-border); border-radius: var(--radius); padding: var(--space-5); }
.hel-aside-card.is-dark { background: var(--color-primary); color: #fff; border: 0; }
.hel-aside-card h3 { margin-top: 0; }
.hel-aside-card.is-dark h3 { color: #fff; }
.hel-aside-phone { font-family: var(--font-mono); font-variant-numeric: tabular-nums; font-size: 1.5rem; font-weight: 700; color: #fff; display: inline-flex; align-items: center; gap: .5rem; }

/* ---------- FAQ accordion ---------- */
.hel-faq details { border-bottom: 1px solid var(--color-border); padding: 1.1rem 0; }
.hel-faq summary { cursor: pointer; font-family: var(--font-heading); font-weight: 600; color: var(--color-heading); list-style: none; display: flex; justify-content: space-between; gap: 1rem; }
.hel-faq summary::-webkit-details-marker { display: none; }
.hel-faq summary::after { content: "+"; color: var(--color-accent); font-size: 1.4rem; line-height: 1; }
.hel-faq details[open] summary::after { content: "\2013"; }
.hel-faq details p { margin: .8rem 0 0; color: var(--color-muted); }

/* ---------- Blog ---------- */
.hel-article-card { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: transform var(--transition-ui), box-shadow var(--transition-ui); height: 100%; }
.hel-article-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.hel-article-card img { aspect-ratio: 16/10; object-fit: cover; }
.hel-article-card .body { padding: var(--space-5); display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.hel-tag { align-self: flex-start; font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--color-accent-text); }
.hel-article-card h3 { font-size: 1.2rem; margin: 0; }
.hel-article-card .meta { margin-top: auto; padding-top: .6rem; font-size: var(--fs-small); color: var(--color-muted); }
.hel-feature { display: grid; grid-template-columns: 1.1fr .9fr; gap: 0; border: 1px solid var(--color-border); border-radius: var(--radius); overflow: hidden; margin-bottom: var(--space-7); }
.hel-feature img { height: 100%; object-fit: cover; aspect-ratio: 16/10; }
.hel-feature .body { padding: var(--space-6); display: flex; flex-direction: column; justify-content: center; }
.hel-feature h2 { font-size: 1.8rem; }

/* ---------- Single article ---------- */
.hel-article { max-width: 760px; margin: 0 auto; }
.hel-article .meta { color: var(--color-muted); font-size: var(--fs-small); display: flex; gap: 1.2rem; flex-wrap: wrap; margin-bottom: 1.4rem; }
.hel-article-hero img { border-radius: var(--radius); margin-bottom: var(--space-6); aspect-ratio: 16/9; object-fit: cover; width: 100%; }
.hel-article-body p { font-size: var(--fs-body-lg); }
.hel-article-body h2 { margin-top: 2.2rem; }
.hel-authorbox { display: flex; gap: 1rem; align-items: center; background: var(--color-surface-alt); border-radius: var(--radius); padding: var(--space-5); margin-top: var(--space-7); }
.hel-authorbox img { width: 60px; height: 60px; border-radius: var(--radius-pill); }

/* ---------- Contact ---------- */
.hel-contact { display: grid; grid-template-columns: 1fr 420px; gap: var(--space-8); align-items: start; }
.hel-form { display: grid; gap: var(--space-4); }
.hel-field { display: grid; gap: .4rem; }
.hel-field label { font-family: var(--font-heading); font-weight: 600; font-size: .92rem; color: var(--color-heading); }
.hel-field input, .hel-field textarea {
  font-family: inherit; font-size: 1rem; padding: .8rem .9rem; border: 1px solid var(--color-border-strong);
  border-radius: var(--radius); background: #fff; color: var(--color-ink); width: 100%;
}
.hel-field input:focus, .hel-field textarea:focus { outline: none; border-color: var(--color-accent); box-shadow: var(--focus-ring); }
.hel-field .hint { font-size: .8rem; color: var(--color-muted); }
.hel-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); }
.hel-infocard { background: var(--color-primary); color: #fff; border-radius: var(--radius); padding: var(--space-6); display: grid; gap: 1.1rem; }
.hel-infocard h3 { color: #fff; margin: 0 0 .3rem; }
.hel-infocard .row { display: flex; gap: .8rem; align-items: flex-start; }
.hel-infocard .row svg { width: 20px; height: 20px; color: var(--color-accent); flex: 0 0 auto; margin-top: 2px; }
.hel-infocard a { color: #fff; }
.hel-map { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--color-border); aspect-ratio: 16/7; background: var(--color-surface-sunken) url('https://staticmap.openstreetmap.de/staticmap.php?center=55.78,11.66&zoom=10&size=900x380') center/cover no-repeat; display:grid; place-items:center; color: var(--color-muted); margin-top: var(--space-6); }

/* ---------- prototype switcher (review only — remove for prod) ---------- */
.proto-bar { position: fixed; bottom: 14px; left: 50%; transform: translateX(-50%); z-index: 999; background: rgba(20,20,20,.95); color:#fff; border-radius: var(--radius-pill); padding: .4rem .5rem; display: flex; gap: .2rem; box-shadow: var(--shadow-lg); font-size: .8rem; backdrop-filter: blur(8px); }
.proto-bar a { color: #cfcfcf; padding: .4rem .8rem; border-radius: var(--radius-pill); font-weight: 600; }
.proto-bar a:hover { color: #fff; background: rgba(255,255,255,.12); }
.proto-bar a.active { background: var(--color-accent); color: #fff; }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.hel-grid-foot { margin-top: var(--space-6); }

/* ============================================================
   RESPONSIVE  (mobile collapse declared explicitly)
   ============================================================ */
/* Tablet / small-desktop (≤1024): collapse nav to burger, 2-col grids */
@media (max-width: 1024px) {
  .hel-hero .hel-container { grid-template-columns: 1fr; }
  .hel-hero-media { order: -1; max-width: 560px; }
  .hel-trust-strip { grid-template-columns: repeat(2,1fr); }
  .hel-grid--4, .hel-grid--3 { grid-template-columns: repeat(2,1fr); }
  .hel-steps { grid-template-columns: repeat(2,1fr); }
  .hel-footer-grid { grid-template-columns: repeat(2,1fr); }
  .hel-content { grid-template-columns: 1fr; }
  .hel-aside { position: static; }
  .hel-contact { grid-template-columns: 1fr; }
  .hel-feature { grid-template-columns: 1fr; }
  /* nav → hamburger on tablet to avoid cramped/overflowing menu */
  .hel-nav { display: none; }
  .hel-burger { display: block; }
  .hel-nav.open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--color-border); padding: 1rem; gap: .2rem; box-shadow: var(--shadow-lg); }
  .hel-nav.open > a, .hel-nav.open .has-sub > a { padding: .85rem 1rem; }
  .hel-nav.open .has-sub .hel-submenu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; padding-left: 1rem; min-width: 0; }
  .hel-nav.open > a::after, .hel-nav.open .has-sub > a::after { display: none; }
}

/* Phone (≤768) */
@media (max-width: 768px) {
  .hel-topbar { display: none; }
  .hel-header-cta .hel-btn span.lbl { display: none; }
  .hel-grid--4, .hel-grid--3, .hel-grid--2, .hel-trust-strip, .hel-steps, .hel-footer-grid { grid-template-columns: 1fr; }
  .hel-split, .hel-feature { grid-template-columns: 1fr; }
  .hel-split.reverse .hel-split-media { order: -1; }
  .hel-form-row { grid-template-columns: 1fr; }
  .hel-cta-band .hel-container { flex-direction: column; align-items: flex-start; }
  .hel-cta-band .hel-actions { width: 100%; }
  .hel-hero .hel-container { padding-top: var(--space-7); padding-bottom: var(--space-7); }
  .hel-hero h1 { font-size: clamp(2rem, 8.5vw, 2.7rem); }
  .hel-pagehero h1 { font-size: clamp(1.9rem, 8vw, 2.5rem); }
  .hel-hero-badge { left: 50%; transform: translateX(-50%); bottom: -22px; }
  .hel-actions .hel-btn { flex: 1 1 auto; justify-content: center; }
  .proto-bar { flex-wrap: wrap; justify-content: center; max-width: 94vw; }
}

/* Small phone (≤400) */
@media (max-width: 400px) {
  .hel-header .hel-container { gap: .4rem; }
  .hel-logo img { height: 32px; }
  .hel-header-cta { gap: .4rem; }
  .hel-header-cta .hel-btn { padding: .65rem .95rem; }
  .hel-burger { padding: .5rem .25rem; }
  .hel-card, .hel-quote, .hel-aside-card, .hel-infocard { padding: var(--space-4); }
  h1 { font-size: clamp(1.9rem, 8.5vw, 2.4rem); }
}

@media (prefers-reduced-motion: reduce) { * { transition: none !important; scroll-behavior: auto; } }

/* =============================================================
   2026 MODERN LAYER  (dials up: VARIANCE ~6 · MOTION ~5 · DENSITY ~3)
   Bigger confident type, pill CTAs, soft depth, brand-red glow,
   scroll-reveal. Black+red brand kept; anti-slop rules respected.
   Shape system (documented): buttons = pill, cards = 18px, inputs = 12px.
   ============================================================= */
:root {
  --radius: 18px;            /* cards */
  --radius-sm: 12px;         /* inputs / small */
  --fs-display: clamp(2.6rem, 5.2vw, 4.5rem);
  --fs-h2: clamp(2rem, 3.4vw, 2.9rem);
  --section-y: 120px;
  --ease: cubic-bezier(.16,1,.3,1);
  --glow-red: 0 10px 40px -8px rgba(234,43,43,.45);
}
@media (max-width: 768px){ :root{ --section-y: 64px; } }

body { font-weight: 400; letter-spacing: -0.005em; }
h1,h2 { letter-spacing: -0.035em; font-weight: 800; }
h3 { letter-spacing: -0.02em; }

/* ---- Buttons: modern pill ---- */
.hel-btn { border-radius: 999px; padding: .95rem 1.7rem; font-weight: 600; }
.hel-btn--accent { box-shadow: var(--glow-red); }
.hel-btn--accent:hover { box-shadow: 0 14px 46px -8px rgba(234,43,43,.6); transform: translateY(-2px); }
.hel-btn--primary:hover { transform: translateY(-2px); }
.hel-btn--ghost { backdrop-filter: blur(6px); }

/* ---- Header: glassy, shrinks on scroll ---- */
.hel-header { background: rgba(255,255,255,.8); backdrop-filter: saturate(160%) blur(14px); transition: box-shadow .25s var(--ease), background .25s var(--ease); border-bottom-color: transparent; }
.hel-header.scrolled { background: rgba(255,255,255,.92); box-shadow: 0 8px 30px -12px rgba(20,20,20,.18); border-bottom-color: var(--color-border); }
.hel-nav > a, .hel-nav > .has-sub > a { position: relative; }
.hel-nav > a::after, .hel-nav > .has-sub > a::after { content: ""; position: absolute; left: .85rem; right: .85rem; bottom: .35rem; height: 2px; background: var(--color-accent); transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease); border: 0; opacity: 1; width: auto; }
.hel-nav > a:hover::after { transform: scaleX(1); }
.hel-nav .has-sub > a::after { display: none; }

/* ---- Hero: layered dark, red glow, dot grid, big type ---- */
.hel-hero { background:
    radial-gradient(900px 500px at 78% 18%, rgba(234,43,43,.28), transparent 60%),
    linear-gradient(110deg, rgba(13,13,13,.92) 38%, rgba(13,13,13,.70) 70%, rgba(13,13,13,.55)),
    var(--hero-img, url('../img/banner.jpg')) center/cover no-repeat #0d0d0d;
    position: relative; }
.hel-hero::before { content:""; position:absolute; inset:0; background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px); background-size: 26px 26px; mask-image: linear-gradient(180deg, #000, transparent 75%); pointer-events:none; }
.hel-hero .hel-container { position: relative; padding-top: var(--space-9); padding-bottom: var(--space-9); }
.hel-hero h1 { font-weight: 800; line-height: 1.04; }
.hel-hero-media img { border-radius: 22px; box-shadow: 0 40px 80px -30px rgba(0,0,0,.8), 0 0 0 1px rgba(255,255,255,.06); }
.hel-hero-media::after { content:""; position:absolute; inset:-12% -8% auto auto; width:60%; height:60%; background: radial-gradient(circle, rgba(234,43,43,.35), transparent 70%); filter: blur(30px); z-index:-1; }
.hel-hero-badge { border-radius: 16px; box-shadow: 0 24px 50px -18px rgba(0,0,0,.55); }

/* ---- Eyebrow: modern chip ---- */
.hel-eyebrow { background: rgba(234,43,43,.10); color: var(--color-accent-text); padding: .4rem .85rem; border-radius: 999px; letter-spacing: .04em; }
.hel-eyebrow::before { display: none; }
.is-dark .hel-eyebrow, .hel-hero .hel-eyebrow, .hel-pagehero .hel-eyebrow { background: rgba(255,255,255,.08); color: #ff7a7a; }

/* ---- Cards: depth + hover ---- */
.hel-card { border-radius: var(--radius); transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease); }
.hel-card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -28px rgba(20,20,20,.35); border-color: transparent; }
.hel-card .ic { border-radius: 14px; }
.hel-article-card, .hel-quote, .hel-aside-card, .hel-infocard { border-radius: var(--radius); }
.hel-article-card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -28px rgba(20,20,20,.35); }

/* ---- Trust strip: soft tiles ---- */
.hel-trust-item { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius); padding: 1.1rem 1.2rem; transition: transform .25s var(--ease), box-shadow .25s var(--ease); }
.hel-trust-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.is-alt .hel-trust-item { background: #fff; }

/* ---- Process steps: modern ---- */
.hel-step::before { font-size: 2.6rem; -webkit-text-stroke: 1px var(--color-accent); -webkit-text-fill-color: transparent; opacity: 1; }

/* ---- Pills modern ---- */
.hel-pill { border-radius: 999px; }
.hel-pill:hover { box-shadow: var(--shadow-sm); }

/* ---- CTA band: gradient + glow ---- */
.hel-cta-band { background: linear-gradient(120deg, #d11414, #ea2b2b 55%, #9e0a04); position: relative; overflow: hidden; }
.hel-cta-band::after { content:""; position:absolute; inset:0; background: radial-gradient(600px 300px at 85% -20%, rgba(255,255,255,.18), transparent 60%); pointer-events:none; }
.hel-cta-band .hel-container { position: relative; }

/* ---- Dark sections: faint glow ---- */
.hel-section.is-dark, .hel-pagehero { background-color: #111; position: relative; }
.hel-pagehero { background:
    radial-gradient(700px 360px at 85% 10%, rgba(234,43,43,.22), transparent 60%),
    linear-gradient(105deg, rgba(15,15,15,.92) 42%, rgba(13,13,13,.74) 72%, rgba(13,13,13,.6)),
    var(--hero-img, url('../img/banner.jpg')) center/cover no-repeat #111; }
.hel-pagehero .hel-container { padding-top: var(--space-8); padding-bottom: var(--space-8); }
/* per-page hero image overrides (set via --hero-img on the section) */

/* ---- Forms modern ---- */
.hel-field input, .hel-field textarea { border-radius: var(--radius-sm); transition: border-color .2s, box-shadow .2s; }

/* ---- Footer ---- */
.hel-footer { background: radial-gradient(800px 300px at 80% 0%, rgba(234,43,43,.10), transparent 60%), #0c0c0c; }

/* ---- SCROLL REVEAL (MOTION ~5; JS adds .is-in) ---- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal-stagger > * { opacity: 0; transform: translateY(22px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal-stagger.is-in > * { opacity: 1; transform: none; }
.reveal-stagger.is-in > *:nth-child(2){ transition-delay:.06s } .reveal-stagger.is-in > *:nth-child(3){ transition-delay:.12s }
.reveal-stagger.is-in > *:nth-child(4){ transition-delay:.18s } .reveal-stagger.is-in > *:nth-child(5){ transition-delay:.24s }
.reveal-stagger.is-in > *:nth-child(6){ transition-delay:.30s } .reveal-stagger.is-in > *:nth-child(7){ transition-delay:.36s }
.reveal-stagger.is-in > *:nth-child(8){ transition-delay:.42s }

@media (prefers-reduced-motion: reduce){
  .reveal, .reveal-stagger > * { opacity: 1 !important; transform: none !important; }
  .hel-hero::before, .hel-hero-media::after { display: none; }
}

/* =============================================================
   REVIEWS — modern social proof (aggregate panel + review cards)
   ============================================================= */
.hel-reviews { display: grid; grid-template-columns: .82fr 1.18fr; gap: var(--space-7); align-items: start; }

.hel-reviews-summary { position: sticky; top: 100px; background: linear-gradient(165deg,#1c1c1c,#0d0d0d); color:#fff; border-radius: var(--radius); padding: var(--space-6); overflow: hidden; border: 1px solid rgba(255,255,255,.06); }
.hel-reviews-summary::after { content:""; position:absolute; inset:auto -20% -30% auto; width:70%; height:70%; background: radial-gradient(circle, rgba(234,43,43,.40), transparent 70%); filter: blur(30px); pointer-events:none; }
.hel-reviews-summary > * { position: relative; }
.hel-reviews-summary .hel-eyebrow { background: rgba(255,255,255,.08); color:#ff7a7a; }
.hel-rating-big { display:flex; align-items:center; gap: 1rem; margin: 1.1rem 0 .7rem; }
.hel-rating-big .num { font-family: var(--font-heading); font-weight: 800; font-size: 4.2rem; line-height: 1; letter-spacing:-.03em; }
.hel-rating-big .stars { color:#f5b301; font-size: 1.25rem; letter-spacing: 2px; }
.hel-rating-big .src { display:flex; align-items:center; gap:.45rem; margin-top:.35rem; font-size: var(--fs-small); color:#cfcfcf; }
.hel-rating-big .gmark { width:18px; height:18px; }
.hel-reviews-summary p { color:#cfcfcf; max-width: 36ch; margin-bottom: 1.3rem; }

.hel-reviews-list { display: grid; gap: var(--space-4); }
.hel-review { background:#fff; border:1px solid var(--color-border); border-radius: var(--radius); padding: var(--space-5); display:grid; gap:.7rem; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.hel-review:hover { transform: translateY(-4px); box-shadow: 0 24px 50px -26px rgba(20,20,20,.32); }
.hel-review-head { display:flex; align-items:center; gap:.8rem; }
.hel-avatar { width:46px; height:46px; border-radius:999px; display:grid; place-items:center; color:#fff; font-family:var(--font-heading); font-weight:700; font-size:1rem; flex:none; }
.hel-review-head .who strong { display:block; font-family:var(--font-heading); color:var(--color-heading); font-size:1rem; line-height:1.2; }
.hel-review-head .who span { font-size: var(--fs-small); color: var(--color-muted); }
.hel-review .gbadge { margin-left:auto; width:22px; height:22px; }
.hel-review .stars { color:#f5b301; letter-spacing:1px; }
.hel-review blockquote { margin:0; color: var(--color-ink); font-size:1.05rem; }

@media (max-width: 1024px){
  .hel-reviews { grid-template-columns: 1fr; }
  .hel-reviews-summary { position: static; }
  .hel-reviews-list { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px){
  .hel-reviews-list { grid-template-columns: 1fr; }
  .hel-rating-big .num { font-size: 3.4rem; }
}

/* ---- Full-bleed homepage hero + glass rating chip ---- */
.hel-hero--full { min-height: clamp(560px, 82vh, 820px); display: flex; align-items: center; }
.hel-hero--full .hel-container { display: block; padding-top: var(--space-8); padding-bottom: var(--space-8); }
.hel-hero--full .hel-hero-copy { max-width: 680px; position: relative; }
.hel-hero--full h1 { max-width: 16ch; }
.hel-hero-rating { display: inline-flex; align-items: center; gap: .6rem; margin: 0 0 1.4rem; padding: .55rem .95rem; border-radius: 999px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); backdrop-filter: blur(8px); }
.hel-hero-rating .stars { color: #f5b301; letter-spacing: 1px; }
.hel-hero-rating strong { font-family: var(--font-heading); font-weight: 800; color:#fff; }
.hel-hero-rating .lbl { display:inline-flex; align-items:center; gap:.4rem; color:#d4d4d4; font-size: var(--fs-small); }
.hel-hero-rating .lbl svg { width: 15px; height: 15px; }
@media (max-width: 768px){ .hel-hero--full { min-height: auto; } .hel-hero-rating { flex-wrap: wrap; } }

/* =============================================================
   HERO BACKGROUNDS — per-section & Divi-editable (FINAL, wins).
   DIVI MAPPING:
     • PHOTO  → set as the SECTION Background Image (per section, in the
       builder). Prototype models this with inline `background-image` on
       the <section>. Each hero can have its own.
     • SCRIM + RED GLOW + DOT TEXTURE → provided by the .hel-hero /
       .hel-pagehero CSS class (child theme) via ::before/::after overlays,
       so swapping the image never touches the overlay/legibility.
   ============================================================= */
.hel-hero, .hel-pagehero {
  position: relative; overflow: hidden; color: #fff; isolation: isolate;
  background-color: #0d0d0d;                 /* fallback if no image set */
  background-position: center; background-size: cover; background-repeat: no-repeat;
  background-image: url('../img/banner.jpg'); /* default; per-section inline overrides */
}
/* scrim + brand glow (kept off the image so legibility is guaranteed) */
.hel-hero::after, .hel-pagehero::after {
  content:""; position:absolute; inset:0; z-index:0; pointer-events:none;
  background:
    radial-gradient(900px 520px at 82% 12%, rgba(234,43,43,.30), transparent 60%),
    linear-gradient(110deg, rgba(12,12,12,.93) 36%, rgba(12,12,12,.72) 70%, rgba(12,12,12,.50));
}
/* subtle dot texture */
.hel-hero::before, .hel-pagehero::before {
  content:""; position:absolute; inset:0; z-index:0; pointer-events:none;
  background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 26px 26px; mask-image: linear-gradient(180deg,#000,transparent 78%);
  -webkit-mask-image: linear-gradient(180deg,#000,transparent 78%);
}
.hel-hero > .hel-container, .hel-pagehero > .hel-container { position: relative; z-index: 1; }

/* =============================================================
   EYEBROWS — clean refined label (FINAL, overrides earlier pill).
   Short red rule + uppercase wide-tracked text, no chip background.
   ============================================================= */
.hel-eyebrow {
  display: inline-flex; align-items: center; gap: .65rem;
  background: none; padding: 0; border-radius: 0;
  font-family: var(--font-heading);
  font-size: .76rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  color: var(--color-accent-text); margin-bottom: 1.1rem;
}
.hel-eyebrow::before {
  content: ""; display: block; width: 26px; height: 1.5px; border-radius: 2px;
  background: var(--color-accent);
}
/* on dark backgrounds (hero, dark sections, review panel) */
.is-dark .hel-eyebrow,
.hel-hero .hel-eyebrow,
.hel-pagehero .hel-eyebrow,
.hel-reviews-summary .hel-eyebrow { color: #ff8a8a; background: none; }
.is-dark .hel-eyebrow::before,
.hel-hero .hel-eyebrow::before,
.hel-pagehero .hel-eyebrow::before,
.hel-reviews-summary .hel-eyebrow::before { background: var(--color-accent); }

/* =============================================================
   WIDER, LESS CRAMPED  (container widened to 1320, gutters opened)
   ============================================================= */
.hel-section-head { max-width: 820px; }
.hel-hero p, .hel-pagehero p { max-width: 56ch; }
.hel-hero--full .hel-hero-copy { max-width: 800px; }
.hel-grid { gap: var(--space-6); }            /* roomier cards */
.hel-split { gap: var(--space-9); }           /* more air between image and text */
@media (max-width: 768px){ .hel-split { gap: var(--space-6); } }

/* =============================================================
   ARTICLE LAYOUT — content + sticky sidebar (fixes lonely-narrow feel)
   ============================================================= */
.hel-article-layout { display: grid; grid-template-columns: minmax(0,1fr) 340px; gap: var(--space-8); align-items: start; max-width: 1180px; margin: 0 auto; }
.hel-article-main { min-width: 0; }
.hel-article-main .hel-tag { display: inline-block; margin-bottom: .6rem; }
.hel-article-main h1 { font-size: clamp(2.1rem, 3.6vw, 3rem); margin: .2rem 0 .6rem; max-width: 20ch; }
.hel-article-body p { font-size: 1.18rem; line-height: 1.75; max-width: 70ch; color: #2a2a2a; }
.hel-article-body h2 { margin-top: 2.4rem; }
.hel-article-aside { position: sticky; top: 100px; display: grid; gap: var(--space-5); }
.hel-article-aside .related { list-style: none; padding: 0; margin: .4rem 0 0; display: grid; gap: .9rem; }
.hel-article-aside .related a { display: grid; gap: .15rem; color: var(--color-heading); font-family: var(--font-heading); font-weight: 600; font-size: .98rem; line-height: 1.25; }
.hel-article-aside .related a:hover { color: var(--color-accent-text); }
.hel-article-aside .related span { font-size: .8rem; color: var(--color-muted); font-family: var(--font-body); font-weight: 400; }
@media (max-width: 1024px){
  .hel-article-layout { grid-template-columns: 1fr; }
  .hel-article-aside { position: static; }
}

/* =============================================================
   2027 PASS — hero lead form + richer depth
   DIVI: hero = 2-col row; col2 = Divi Contact Form module styled with
   .hel-hero-form. Fields: Navn, Telefon, Email, Besked.
   ============================================================= */
.hel-hero .hel-container { align-items: center; }
.hel-hero-copy { max-width: 600px; }
#lead-form { scroll-margin-top: 96px; }

/* lead form card — clean white card on the dark hero (high contrast = conversion) */
.hel-hero-form {
  background: #fff; color: var(--color-ink);
  border-radius: 22px; padding: clamp(1.4rem, 2.4vw, 2.1rem);
  box-shadow: 0 50px 100px -34px rgba(0,0,0,.7), 0 0 0 1px rgba(255,255,255,.05);
}
.hel-hero-form h2 { font-size: 1.5rem; margin: 0 0 .25rem; }
.hel-hero-form .sub { color: var(--color-muted); font-size: var(--fs-small); margin: 0 0 1.2rem; max-width: none; }
.hel-hero-form .hel-form { gap: var(--space-3); }
.hel-hero-form .hel-field input, .hel-hero-form .hel-field textarea { background: var(--color-surface-alt); }
.hel-hero-form .hel-field input:focus, .hel-hero-form .hel-field textarea:focus { background: #fff; }
.hel-form-note { display: flex; align-items: center; gap: .45rem; font-size: .78rem; color: var(--color-muted); margin: .9rem 0 0; }
.hel-form-note svg { width: 14px; height: 14px; color: var(--color-accent); }

/* richer accent button (subtle gradient depth, stays WCAG AA) */
.hel-btn--accent { background: linear-gradient(135deg, #c81e1e, #9e0a04); }
.hel-btn--accent:hover { background: linear-gradient(135deg, #d62525, #8a0a04); }

@media (max-width: 1024px){
  .hel-hero-form { max-width: 560px; }
}
@media (max-width: 768px){
  .hel-hero-copy { max-width: none; }
  .hel-hero-form { padding: 1.3rem; }
}

/* ---- hero actions row: Ring button + rating inline (fixes orphaned button) ---- */
.hel-hero-actions { align-items: center; }
.hel-hero-actions .hel-hero-rating { margin: 0; }

/* =============================================================
   2027 PASS — lift the rest of the sections to match the hero
   ============================================================= */
/* Bigger, more confident section headlines (sitewide) */
.hel-section-head h2 { font-size: clamp(2.1rem, 3.8vw, 3.1rem); line-height: 1.08; }

/* Service / value card icon tiles: gradient depth + red on hover */
.hel-card .ic { background: linear-gradient(150deg, #232323, #050505); }
.hel-card:hover .ic { background: linear-gradient(150deg, #ea2b2b, #9e0a04); }

/* Trust tiles: red accent edge on hover for a crisper, modern feel */
.hel-trust-item { border-left: 3px solid transparent; }
.hel-trust-item:hover { border-left-color: var(--color-accent); }

/* Cards: a touch more lift + cleaner border on hover */
.hel-card:hover, .hel-article-card:hover { box-shadow: 0 34px 70px -30px rgba(20,20,20,.40); }

/* ---- hero: rating moved to top as trust badge; light "Kontakt os" button ---- */
.hel-hero-top { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.1rem; }
.hel-hero-top .hel-eyebrow { margin-bottom: 0; }
.hel-hero-top .hel-hero-rating { margin: 0; }
.hel-btn--light { background: #fff; color: var(--color-heading); }
.hel-btn--light:hover { background: var(--color-surface-alt); color: var(--color-primary); transform: translateY(-1px); }

/* ---- footer logo (replaces text wordmark) ---- */
.hel-footer-logo { display: inline-block; }
.hel-footer-logo img { height: 48px; width: auto; }
