/* ═══════════════════════════════════════════════════════════
   Hansa Neuron — shared stylesheet (multi-page, v2 2026)
   Website Compliance, Sicherheit, Hosting & Wartung
   für Ärzte und Zahnärzte in Deutschland
   ═══════════════════════════════════════════════════════════ */

/* ── Brand tokens ──────────────────────────────────── */
:root {
  --teal:        #6B9A8F;
  --teal-dark:   #4A7A6E;
  --teal-light:  #8BB8AE;
  --teal-50:     #EBF2F0;
  --teal-100:    #D2E6E2;
  --slate:       #3A4354;
  --slate-dark:  #252D3A;
  --slate-light: #5A6577;
  --slate-50:    #F0F1F4;
  --terra:       #E07A5F;
  --terra-dark:  #C45E43;
  --terra-light: #EDA090;
  --terra-50:    #FDF1EE;
  --warn:        #D9A441;
  --warn-50:     #FBF4E4;
  --bg:          #FAFAFA;
  --white:       #FFFFFF;
  --border:      #E5E9E8;
  --text-main:   #2C2C2C;
  --text-muted:  #6B7280;
  --ff-display:  'Playfair Display', Georgia, serif;
  --ff-body:     'Inter', system-ui, sans-serif;
}

/* ── Reset ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
section[id] { scroll-margin-top: 145px; }
body {
  background: var(--bg);
  color: var(--text-main);
  font-family: var(--ff-body);
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
}
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--teal-light); border-radius: 2px; }

/* ── Utilities ─────────────────────────────────────── */
.teal { color: var(--teal); }
.label {
  display: inline-block;
  font-size: .68rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--teal); background: var(--teal-50);
  padding: .3em .8em; border-radius: 3px;
}
.label.terra { color: var(--terra-dark); background: var(--terra-50); }

/* ── Nav ───────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.75rem 5vw;
  background: rgba(250,250,250,.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.nav-logo { display: flex; align-items: center; gap: .75rem; text-decoration: none; }
.nav-logo-img { height: 67.5px; width: auto; display: block; }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  text-decoration: none; color: var(--text-muted);
  font-size: .82rem; font-weight: 500; letter-spacing: .02em; transition: color .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--teal-dark); }
.nav-right { display: flex; align-items: center; gap: 1rem; }
.lang-switcher {
  display: flex; align-items: center; gap: 2px;
  background: var(--slate-50); border: 1px solid var(--border);
  border-radius: 5px; padding: 2px;
}
.lang-btn {
  background: none; border: none; cursor: pointer;
  font-family: var(--ff-body); font-size: .68rem; font-weight: 700; letter-spacing: .08em;
  padding: .3rem .6rem; border-radius: 3px; color: var(--text-muted);
  transition: background .15s, color .15s;
}
.lang-btn.active { background: var(--white); color: var(--teal-dark); box-shadow: 0 1px 3px rgba(0,0,0,.08); }
.nav-cta {
  font-size: .78rem; font-weight: 600; letter-spacing: .04em; text-decoration: none;
  color: var(--white); background: var(--terra);
  padding: .55rem 1.3rem; border-radius: 4px;
  transition: background .2s, transform .15s; white-space: nowrap;
}
.nav-cta:hover { background: var(--terra-dark); transform: translateY(-1px); }
.nav-hamburger {
  display: none; flex-direction: column; gap: 4px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--slate); border-radius: 1px;
  transition: transform .25s, opacity .25s;
}

/* ── Mobile nav drawer ─────────────────────────────── */
.mobile-menu {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--white); z-index: 99;
  padding: 185px 8vw 3rem;
  flex-direction: column; gap: 2rem; overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  text-decoration: none; color: var(--slate);
  font-size: 1.5rem; font-weight: 600;
  border-bottom: 1px solid var(--border); padding-bottom: 1.1rem;
}
.mobile-menu a.btn-primary { border-bottom: none; padding-bottom: .9rem; display: block; text-align: center; }
.mobile-close {
  position: absolute; top: 1.25rem; right: 5vw;
  background: none; border: none; font-size: 1.75rem; line-height: 1;
  color: var(--slate); cursor: pointer; padding: .5rem;
}

/* ── Buttons ───────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: .55rem;
  background: var(--terra); color: var(--white); text-decoration: none;
  font-size: .85rem; font-weight: 600; letter-spacing: .02em;
  padding: .85rem 1.75rem; border-radius: 4px; border: none; cursor: pointer;
  font-family: var(--ff-body);
  transition: background .2s, transform .15s, box-shadow .2s;
}
.btn-primary:hover { background: var(--terra-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(224,122,95,.3); }
.btn-primary:disabled { opacity: .6; cursor: wait; transform: none; }
.btn-outline {
  display: inline-flex; align-items: center; gap: .5rem;
  color: var(--teal-dark); text-decoration: none; font-size: .82rem; font-weight: 500;
  border: 1.5px solid var(--teal-light); padding: .82rem 1.6rem; border-radius: 4px;
  transition: background .2s, border-color .2s; background: transparent; cursor: pointer;
  font-family: var(--ff-body);
}
.btn-outline:hover { background: var(--teal-50); border-color: var(--teal); }

/* ── Section base ──────────────────────────────────── */
section { padding: 6rem 5vw; }
.section-kicker { font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--teal); margin-bottom: .75rem; }
.section-title { font-family: var(--ff-display); font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 700; color: var(--slate); line-height: 1.18; margin-bottom: 1rem; }
.section-title em { font-style: italic; color: var(--teal); }
.section-body { color: var(--text-muted); font-size: .95rem; max-width: 560px; line-height: 1.8; }
.section-center { text-align: center; }
.section-center .section-body { margin: 0 auto; }

/* ── Page hero (inner pages) ───────────────────────── */
.page-hero {
  padding: 13rem 5vw 4rem;
  background: linear-gradient(160deg, var(--white) 0%, var(--teal-50) 100%);
  text-align: center;
}
.page-hero .section-title { font-size: clamp(2rem, 4vw, 3.2rem); margin-top: 1.2rem; }
.page-hero .section-body { margin: 0 auto; max-width: 620px; }

/* ── Home hero ─────────────────────────────────────── */
.hero {
  min-height: 92vh;
  display: grid; grid-template-columns: 1.1fr 1fr; align-items: center;
  padding: 13rem 5vw 5rem; gap: 5rem;
  background: linear-gradient(160deg, var(--white) 0%, var(--teal-50) 100%);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; right: -5%; top: -5%;
  width: 55%; height: 110%;
  background: radial-gradient(ellipse at 60% 40%, rgba(107,154,143,.1) 0%, transparent 65%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; }
.hero-eyebrow { margin-bottom: 1.5rem; opacity: 0; animation: fadeUp .7s .1s ease forwards; }
.hero-headline {
  font-family: var(--ff-display);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem); font-weight: 700;
  line-height: 1.1; letter-spacing: -.02em; color: var(--slate);
  margin-bottom: 1.25rem; opacity: 0; animation: fadeUp .7s .25s ease forwards;
}
.hero-headline em { font-style: italic; color: var(--teal); }
.hero-sub {
  font-size: 1.05rem; color: var(--text-muted); max-width: 500px; line-height: 1.75;
  margin-bottom: 2.25rem; opacity: 0; animation: fadeUp .7s .4s ease forwards;
}
.hero-actions {
  display: flex; gap: 1rem; align-items: center; flex-wrap: wrap;
  opacity: 0; animation: fadeUp .7s .55s ease forwards;
}
.hero-note { font-size: .75rem; color: var(--text-muted); margin-top: 1rem; opacity: 0; animation: fadeUp .7s .7s ease forwards; }

/* Hero visual cards */
.hero-visual { position: relative; z-index: 1; opacity: 0; animation: fadeIn 1s .4s ease forwards; }
.hero-card-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.hc {
  background: var(--white); border: 1px solid var(--border); border-radius: 10px;
  padding: 1.4rem 1.6rem; box-shadow: 0 2px 12px rgba(58,67,84,.06);
  transition: transform .3s, box-shadow .3s;
}
.hc:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(58,67,84,.1); }
.hc-icon {
  width: 46px; height: 46px; border-radius: 11px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 1rem;
}
.hc-icon.teal  { background: var(--teal-50); color: var(--teal-dark); }
.hc-icon.terra { background: var(--terra-50); color: var(--terra-dark); }
.hc-icon.slate { background: var(--slate-50); color: var(--slate); }
.hc-num { font-family: var(--ff-display); font-size: 1.5rem; font-weight: 700; color: var(--slate); line-height: 1.15; margin-bottom: .2rem; }
.hc-label { font-size: .7rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--text-muted); }
.hc.wide { grid-column: span 2; display: flex; align-items: center; gap: 1.2rem; padding: 1.2rem 1.6rem; }
.hc.wide .hc-icon { margin-bottom: 0; flex-shrink: 0; }
.hc-pulse { width: 10px; height: 10px; border-radius: 50%; background: var(--teal); animation: pulse 2.5s ease-in-out infinite; flex-shrink: 0; }
.hc-status { font-size: .82rem; color: var(--slate); font-weight: 500; }
.hc-status span { color: var(--teal-dark); font-weight: 600; }

/* ── Icon sprite system ─────────────────────────────── */
/* icons-web.png & icons-security.png — 7 cols × 4 rows              */
/* background-size: 700% 400%;                                        */
/* col x: 0=0%  1=16.67%  2=33.33%  3=50%  4=66.67%  5=83.33%  6=100% */
/* row y: 0=0%  1=33.33%  2=66.67%  3=100%                           */

/* ── Problem grid (risk section) ───────────────────── */
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 3rem; }
.problem-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 10px;
  padding: 1.5rem 1.6rem; display: flex; gap: 1rem; align-items: flex-start;
  transition: border-color .25s, box-shadow .25s;
}
.problem-card:hover { border-color: var(--terra-light); box-shadow: 0 4px 18px rgba(224,122,95,.1); }
.problem-icon {
  width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0;
  background: linear-gradient(145deg, var(--teal-50) 0%, var(--white) 100%);
  border: 1px solid var(--teal-100);
  display: flex; align-items: center; justify-content: center;
}
.problem-title { font-size: .88rem; font-weight: 700; color: var(--slate); margin-bottom: .25rem; }
.problem-desc { font-size: .8rem; color: var(--text-muted); line-height: 1.65; }

/* ── Funnel steps ──────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3.5rem; counter-reset: step; }
.step {
  background: var(--white); border: 1px solid var(--border); border-radius: 12px;
  padding: 2rem; position: relative;
}
.step-num {
  font-family: var(--ff-display); font-size: 2.6rem; font-weight: 700;
  color: var(--teal-100); line-height: 1; margin-bottom: 1rem;
}
.step-title { font-size: 1rem; font-weight: 700; color: var(--slate); margin-bottom: .5rem; }
.step-desc { font-size: .85rem; color: var(--text-muted); line-height: 1.75; }
.step-tag { margin-top: 1rem; }

/* ── Service cards ─────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3.5rem; }
.service-card {
  background: var(--bg); border: 1px solid var(--border); border-radius: 10px;
  padding: 2rem; position: relative; overflow: hidden;
  transition: border-color .25s, box-shadow .25s, transform .25s;
}
.service-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(to right, var(--teal), var(--teal-light));
  transform: scaleX(0); transform-origin: left; transition: transform .35s ease;
}
.service-card:hover { border-color: var(--teal-100); box-shadow: 0 4px 20px rgba(107,154,143,.12); transform: translateY(-2px); }
.service-card:hover::after { transform: scaleX(1); }
.service-icon {
  width: 60px; height: 60px; border-radius: 14px; margin-bottom: 1.2rem;
  background: linear-gradient(145deg, var(--teal-50) 0%, var(--white) 100%);
  border: 1px solid var(--teal-100);
  display: flex; align-items: center; justify-content: center;
}
.service-name { font-size: 1rem; font-weight: 700; color: var(--slate); margin-bottom: .6rem; }
.service-desc { font-size: .875rem; color: var(--text-muted); line-height: 1.75; }

/* ── Care plan cards ───────────────────────────────── */
.plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3.5rem; align-items: stretch; }
.plan-card {
  background: var(--white); border: 1.5px solid var(--border); border-radius: 14px;
  padding: 2.25rem 2rem; display: flex; flex-direction: column; position: relative;
  transition: transform .25s, box-shadow .25s;
}
.plan-card:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(58,67,84,.1); }
.plan-card.featured { border-color: var(--teal); box-shadow: 0 8px 30px rgba(107,154,143,.18); }
.plan-card.featured .plan-name,
.plan-card.featured .plan-price,
.plan-card.featured .plan-for,
.plan-card.featured .plan-allowance strong { color: var(--slate-dark); }
.plan-flag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--teal); color: var(--white);
  font-size: .62rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: .35em 1em; border-radius: 20px; white-space: nowrap;
}
.plan-name { font-size: .8rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--text-muted); margin-bottom: .6rem; }
.plan-price { font-family: var(--ff-display); font-size: 2.4rem; font-weight: 700; color: var(--slate); line-height: 1; }
.plan-price small { font-family: var(--ff-body); font-size: .8rem; font-weight: 500; color: var(--text-muted); }
.plan-for { font-size: .78rem; color: var(--teal-dark); font-weight: 600; margin: .8rem 0 1rem; }
.plan-allowance {
  display: flex; align-items: baseline; gap: .4rem;
  background: var(--teal-50); border-radius: 8px;
  padding: .55rem .75rem; margin-bottom: 1.4rem;
}
.plan-allowance strong { font-family: var(--ff-display); font-size: 1rem; font-weight: 700; color: var(--slate); }
.plan-allowance span { font-size: .75rem; color: var(--text-muted); }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: .55rem; margin-bottom: 1.75rem; flex: 1; }
.plan-features li { font-size: .83rem; color: var(--text-muted); display: flex; gap: .55rem; align-items: flex-start; line-height: 1.55; }
.plan-features li::before { content: '✓'; color: var(--teal); font-weight: 700; flex-shrink: 0; }
.plan-features li.plus { font-weight: 600; color: var(--slate); }
.plan-card .btn-primary, .plan-card .btn-outline { justify-content: center; }

/* ── Audit offer banner ────────────────────────────── */
.audit-banner {
  background: var(--slate-dark); border-radius: 16px;
  padding: 3.5rem 3rem; margin-top: 3.5rem;
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 3rem; align-items: center;
  color: rgba(255,255,255,.85);
}
.audit-banner h3 { font-family: var(--ff-display); font-size: 1.8rem; color: var(--white); margin-bottom: 1rem; line-height: 1.25; }
.audit-banner p { font-size: .9rem; line-height: 1.8; color: rgba(255,255,255,.7); }
.audit-price-box { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: 12px; padding: 2rem; text-align: center; }
.audit-price-old { font-size: 1.1rem; color: rgba(255,255,255,.45); text-decoration: line-through; }
.audit-price-new { font-family: var(--ff-display); font-size: 3rem; font-weight: 700; color: var(--teal-light); line-height: 1.1; }
.audit-price-note { font-size: .75rem; color: rgba(255,255,255,.6); margin-top: .6rem; line-height: 1.6; }
.audit-price-box .btn-primary { margin-top: 1.25rem; justify-content: center; width: 100%; }

/* ── Compare table ─────────────────────────────────── */
.compare-wrap { overflow-x: auto; margin-top: 3rem; }
.compare-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: 12px; overflow: hidden; box-shadow: 0 2px 12px rgba(58,67,84,.06); min-width: 640px; }
.compare-table th, .compare-table td { padding: .9rem 1.2rem; text-align: center; font-size: .84rem; border-bottom: 1px solid var(--border); }
.compare-table th { background: var(--slate); color: var(--white); font-weight: 600; font-size: .8rem; }
.compare-table th.featured-col { color: var(--slate-dark); }
.compare-table th:first-child, .compare-table td:first-child { text-align: left; }
.compare-table td:first-child { color: var(--slate); font-weight: 500; }
.compare-table td { color: var(--text-muted); }
.compare-table .yes { color: var(--teal-dark); font-weight: 700; }
.compare-table .no { color: var(--border); }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table .featured-col { background: var(--teal-50); }

/* ── Website check ─────────────────────────────────── */
.check-form-wrap { max-width: 640px; margin: 2.5rem auto 0; }
.check-form { display: flex; gap: .75rem; }
.check-form input[type="url"], .check-form input[type="text"] {
  flex: 1; background: var(--white); border: 1.5px solid var(--border); border-radius: 6px;
  padding: .95rem 1.2rem; font-family: var(--ff-body); font-size: .95rem;
  color: var(--text-main); outline: none; transition: border-color .2s;
}
.check-form input:focus { border-color: var(--teal); }
.check-note { font-size: .72rem; color: var(--text-muted); margin-top: .8rem; text-align: center; line-height: 1.6; }
.scorecard { max-width: 1000px; margin: 3rem auto 0; display: none; }
.scorecard.visible { display: block; animation: fadeUp .5s ease; }

/* ── Security report dashboard (hn-dash) ───────────────
   Used by website-check.html results; embeddable on any
   page (see components/dashboard.html for standalone demo). */
.hn-dash {
  background: var(--white); border: 1px solid var(--border); border-radius: 14px;
  padding: 2rem clamp(1.25rem, 3.5vw, 2.75rem) 2.5rem;
  text-align: left; box-shadow: 0 2px 12px rgba(58,67,84,.06);
}
.hn-dash__title {
  font-family: var(--ff-display); font-weight: 800; text-transform: uppercase;
  font-size: clamp(1.2rem, 2.6vw, 1.7rem); letter-spacing: .01em;
  color: var(--slate-dark); margin: 0 0 .5rem; line-height: 1.15;
}
.hn-dash__meta { font-size: .85rem; color: var(--text-muted); margin: 0; }
.hn-dash__meta strong { color: var(--slate); font-weight: 600; }
.hn-dash__divider { border: 0; border-top: 1px solid var(--border); margin: 1.25rem 0 2rem; }
.hn-dash__body {
  display: grid; grid-template-columns: 220px 1fr;
  gap: clamp(1.5rem, 3.5vw, 3rem); align-items: center;
}
.hn-dash__score { display: flex; flex-direction: column; align-items: center; gap: 1rem; text-align: center; }
.hn-dash__ring {
  --hnd-score: 0; --hnd-ring-color: var(--terra-dark);
  width: 190px; height: 190px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: conic-gradient(var(--hnd-ring-color) calc(var(--hnd-score) * 1%), var(--border) 0);
}
/* Score tiers: red <50, amber 50–79, green 80+ */
.hn-dash__ring--fail { --hnd-ring-color: var(--terra-dark); }
.hn-dash__ring--warn { --hnd-ring-color: var(--warn); }
.hn-dash__ring--pass { --hnd-ring-color: var(--teal-dark); }
.hn-dash__ring-inner {
  width: calc(100% - 16px); height: calc(100% - 16px); border-radius: 50%;
  background: var(--white); display: flex; align-items: center; justify-content: center;
}
.hn-dash__score-num {
  font-family: var(--ff-display); font-weight: 800; font-size: 4rem;
  line-height: 1; color: var(--hnd-ring-color);
}
.hn-dash__score-label { font-size: .85rem; color: var(--text-muted); margin: 0; max-width: 220px; }
.hn-dash__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .9rem; }
.hn-dash__item {
  background: var(--white); border: 1px solid var(--border); border-radius: 10px;
  padding: 1.1rem 1.1rem 1.2rem; box-shadow: 0 2px 3px rgba(37,45,58,.06);
}
.hn-dash__item-head { display: flex; align-items: center; gap: .6rem; margin-bottom: .35rem; }
.hn-dash__badge {
  flex: 0 0 auto; width: 30px; height: 30px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; font-weight: 700; line-height: 1;
}
.hn-dash__item-title { font-size: .92rem; font-weight: 700; color: var(--slate-dark); margin: 0; }
.hn-dash__status {
  display: block; font-size: .7rem; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; margin: 0 0 .5rem 2.4rem;
}
.hn-dash__item-desc { font-size: .8rem; line-height: 1.6; color: var(--text-muted); margin: 0; }
.hn-dash__item--pass .hn-dash__badge  { background: var(--teal-50);  color: var(--teal-dark); }
.hn-dash__item--pass .hn-dash__status { color: var(--teal-dark); }
.hn-dash__item--warn .hn-dash__badge  { background: var(--warn-50);  color: var(--warn); }
.hn-dash__item--warn .hn-dash__status { color: var(--warn); }
.hn-dash__item--fail .hn-dash__badge  { background: var(--terra-50); color: var(--terra-dark); }
.hn-dash__item--fail .hn-dash__status { color: var(--terra-dark); }
.hn-dash__item--info .hn-dash__badge  { background: var(--slate-50); color: var(--slate-light); }
.hn-dash__item--info .hn-dash__status { color: var(--slate-light); }
@media (max-width: 900px) {
  .hn-dash__body { grid-template-columns: 1fr; }
  .hn-dash__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .hn-dash__grid { grid-template-columns: 1fr; }
  .hn-dash__ring { width: 150px; height: 150px; }
  .hn-dash__score-num { font-size: 3.2rem; }
}
@media print {
  .hn-dash, .hn-dash__item { box-shadow: none; }
  .hn-dash__item { break-inside: avoid; }
}
.check-cta {
  background: var(--slate-dark); border-radius: 14px; padding: 2.5rem 2rem;
  text-align: center; margin-top: 2rem; color: rgba(255,255,255,.8);
}
.check-cta h3 { font-family: var(--ff-display); font-size: 1.5rem; color: var(--white); margin-bottom: .75rem; }
.check-cta p { font-size: .87rem; line-height: 1.75; max-width: 520px; margin: 0 auto 1.5rem; }
.check-error {
  background: var(--terra-50); border: 1px solid var(--terra-light); border-radius: 10px;
  color: var(--terra-dark); font-size: .85rem; padding: 1rem 1.25rem;
  margin-top: 1.5rem; display: none; line-height: 1.6;
}
.check-error.visible { display: block; }
.spinner {
  display: inline-block; width: 16px; height: 16px;
  border: 2px solid rgba(255,255,255,.4); border-top-color: var(--white);
  border-radius: 50%; animation: spin .8s linear infinite;
}

/* ── Trust section ─────────────────────────────────── */
.trust-badges-container {
  max-width: 1000px; margin: 3rem auto; text-align: center;
  display: flex; align-items: center; justify-content: center;
}
.trust-badges-img {
  max-width: 100%; height: auto; width: auto; max-height: 200px;
  display: block;
}
.trust-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 3.5rem; max-width: 600px; margin-left: auto; margin-right: auto; }
.trust-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 12px;
  padding: 2rem; text-align: center;
}
.trust-icon {
  width: 72px; height: 72px; margin: 0 auto 1.4rem;
  background: linear-gradient(145deg, var(--teal-50) 0%, var(--white) 100%);
  border: 1px solid var(--teal-100); border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
}
.trust-title { font-size: .95rem; font-weight: 700; color: var(--slate); margin-bottom: .5rem; }
.trust-desc { font-size: .83rem; color: var(--text-muted); line-height: 1.7; }

/* ── Disclaimer box ────────────────────────────────── */
.disclaimer-box {
  max-width: 760px; margin: 3rem auto 0;
  background: var(--slate-50); border-left: 3px solid var(--slate-light);
  border-radius: 0 8px 8px 0; padding: 1.25rem 1.5rem;
  font-size: .78rem; color: var(--text-muted); line-height: 1.7;
}

/* ── FAQ ───────────────────────────────────────────── */
.faq-list { max-width: 780px; margin: 3rem auto 0; display: flex; flex-direction: column; gap: .9rem; }
.faq-item {
  background: var(--white); border: 1px solid var(--border); border-radius: 10px;
  overflow: hidden; transition: border-color .2s;
}
.faq-item[open] { border-color: var(--teal-light); }
.faq-item summary {
  cursor: pointer; list-style: none; padding: 1.25rem 1.5rem;
  font-size: .95rem; font-weight: 600; color: var(--slate);
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.3rem; color: var(--teal); flex-shrink: 0; transition: transform .2s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-answer { padding: 0 1.5rem 1.4rem; font-size: .88rem; color: var(--text-muted); line-height: 1.8; }

/* ── Contact ───────────────────────────────────────── */
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start; }
.contact-headline { font-family: var(--ff-display); font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 700; color: var(--slate); line-height: 1.18; margin-bottom: .9rem; }
.contact-headline em { font-style: italic; color: var(--teal); }
.contact-sub { color: var(--text-muted); font-size: .93rem; line-height: 1.8; margin-bottom: 2rem; }
.contact-rows { display: flex; flex-direction: column; gap: .75rem; }
.contact-row {
  display: flex; align-items: center; gap: .9rem; padding: .85rem 1.1rem;
  background: var(--bg); border: 1px solid var(--border); border-radius: 8px;
  text-decoration: none; transition: border-color .2s, background .2s;
}
.contact-row:hover { border-color: var(--teal-light); background: var(--teal-50); }
.cr-icon {
  width: 42px; height: 42px; border-radius: 10px; flex-shrink: 0;
  background: linear-gradient(145deg, var(--teal-50) 0%, var(--white) 100%);
  border: 1px solid var(--teal-100);
  display: flex; align-items: center; justify-content: center;
}
.cr-label { font-size: .62rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: .15rem; }
.cr-value { font-size: .85rem; font-weight: 500; color: var(--slate); }

/* ── Forms ─────────────────────────────────────────── */
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .35rem; }
.form-label { font-size: .65rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted); }
.form-input, .form-textarea {
  background: var(--bg); border: 1.5px solid var(--border); border-radius: 6px;
  padding: .78rem 1rem; color: var(--text-main); font-family: var(--ff-body);
  font-size: .9rem; outline: none; transition: border-color .2s, background .2s; resize: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-muted); opacity: .55; }
.form-input:focus, .form-textarea:focus { border-color: var(--teal); background: var(--white); }
.form-textarea { min-height: 120px; }
.form-consent { display: flex; align-items: flex-start; gap: .65rem; margin-bottom: 1rem; }
.form-consent input[type="checkbox"] { flex-shrink: 0; margin-top: .2rem; accent-color: var(--teal); width: 1rem; height: 1rem; cursor: pointer; }
.form-consent label { font-size: .8rem; color: var(--text-muted); line-height: 1.5; cursor: pointer; }
.form-consent a { color: var(--teal); text-decoration: underline; }
.form-submit {
  display: inline-flex; align-items: center; gap: .6rem;
  background: var(--terra); color: var(--white); border: none;
  font-family: var(--ff-body); font-size: .82rem; font-weight: 600; letter-spacing: .04em;
  padding: .9rem 1.8rem; border-radius: 4px; cursor: pointer;
  transition: background .2s, transform .15s, box-shadow .2s; align-self: flex-start;
}
.form-submit:hover { background: var(--terra-dark); transform: translateY(-2px); box-shadow: 0 6px 18px rgba(224,122,95,.3); }

/* ── CTA band ──────────────────────────────────────── */
.cta-band { background: var(--teal-50); text-align: center; }
.cta-band .section-title { margin-bottom: 1.5rem; }
.cta-band .btn-primary { margin-top: 1rem; }

/* ── Footer ────────────────────────────────────────── */
footer {
  background: var(--slate-dark); padding: 2.5rem 5vw 2rem;
}
.footer-top {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.footer-logo { display: inline-flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.footer-logo-img { height: 54px; width: auto; display: block; }
.footer-links { display: flex; gap: 1.5rem; list-style: none; flex-wrap: wrap; }
.footer-links a { font-size: .75rem; font-weight: 500; color: rgba(255,255,255,.45); text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: var(--teal-light); }
.footer-copy { font-size: .65rem; letter-spacing: .06em; color: rgba(255,255,255,.25); }
.footer-disclaimer {
  margin-top: 1.5rem; padding-top: 1.25rem; border-top: 1px solid rgba(255,255,255,.08);
  font-size: .68rem; color: rgba(255,255,255,.3); line-height: 1.7; max-width: 860px;
}

/* ── Scroll reveal ─────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ── Cookie banner ─────────────────────────────────── */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
  background: var(--slate-dark); color: rgba(255,255,255,.85);
  padding: 1rem 5vw;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap;
  border-top: 2px solid var(--teal);
  box-shadow: 0 -4px 24px rgba(0,0,0,.18);
}
.cookie-text { font-size: .82rem; line-height: 1.6; flex: 1; min-width: 200px; }
.cookie-actions { display: flex; align-items: center; gap: 1.25rem; flex-shrink: 0; }
.cookie-link { font-size: .75rem; color: var(--teal-light); text-decoration: underline; white-space: nowrap; transition: color .2s; }
.cookie-link:hover { color: var(--white); }
.cookie-btn {
  background: var(--teal); color: var(--white); border: none;
  font-family: var(--ff-body); font-size: .8rem; font-weight: 600; letter-spacing: .04em;
  padding: .55rem 1.3rem; border-radius: 4px; cursor: pointer;
  transition: background .2s; white-space: nowrap;
}
.cookie-btn:hover { background: var(--teal-dark); }

/* ── Keyframes ─────────────────────────────────────── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes pulse  { 0%, 100% { box-shadow: 0 0 0 0 rgba(107,154,143,.4); } 50% { box-shadow: 0 0 0 6px rgba(107,154,143,0); } }
@keyframes spin   { to { transform: rotate(360deg); } }

/* ── Responsive ────────────────────────────────────── */
@media (max-width: 900px) {
  .hero, .contact-inner { grid-template-columns: 1fr; }
  .hero { padding-top: 7rem; min-height: auto; }
  .hero-visual { display: none; }
  .page-hero { padding-top: 8rem; }
  .problem-grid, .steps, .services-grid, .plan-grid, .trust-grid { grid-template-columns: 1fr; }
  .audit-banner { grid-template-columns: 1fr; padding: 2.5rem 1.75rem; }
  .form-row { grid-template-columns: 1fr; }
  .check-form { flex-direction: column; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .footer-top { flex-direction: column; text-align: center; }
  .footer-disclaimer { text-align: center; }
  .label { letter-spacing: .05em; font-size: .65rem; }
  .trust-badges-img { max-height: 160px; }
}
@media (max-width: 560px) {
  .trust-badges-img { max-height: 120px; }
}

/* ── Imported icon set (assets/icons/*.png, 128px source) ── */
.icon-img { display: block; object-fit: contain; flex-shrink: 0; }

/* ── Price typography (€ deliberately understated) ──── */
.plan-price { font-size: 2.6rem; letter-spacing: -.02em; }
.plan-price .cur { font-family: var(--ff-body); font-size: .45em; font-weight: 600; color: var(--slate-light); margin-left: .12em; }
.audit-price-new .cur { font-family: var(--ff-body); font-size: .42em; font-weight: 500; margin-left: .12em; }

/* ── Audit dual price options ────────────────────────── */
.price-options { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.4rem; text-align: center; }
.price-opt { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); border-radius: 12px; padding: 1.4rem 1rem 1.2rem; }
.price-opt.highlight { border-color: var(--teal-light); background: rgba(139,184,174,.12); }
.po-label { font-size: .62rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.55); margin-bottom: .6rem; }
.po-price { font-family: var(--ff-display); font-size: 2.3rem; font-weight: 700; color: var(--white); line-height: 1; }
.price-opt.highlight .po-price { color: var(--teal-light); }
.po-price .cur { font-family: var(--ff-body); font-size: .45em; font-weight: 500; margin-left: .12em; opacity: .75; }
.po-note { font-size: .68rem; color: rgba(255,255,255,.55); margin-top: .6rem; line-height: 1.55; }

/* ── Premium polish ──────────────────────────────────── */
html { -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
::selection { background: var(--teal-100); color: var(--slate-dark); }
a:focus-visible, button:focus-visible, input:focus-visible, summary:focus-visible {
  outline: 2px solid var(--teal); outline-offset: 2px; border-radius: 4px;
}
.hc, .problem-card, .step, .trust-card {
  box-shadow: 0 1px 2px rgba(37,45,58,.03), 0 8px 24px rgba(37,45,58,.05);
}
.section-kicker { letter-spacing: .18em; }

/* ── Fixed-nav overlap fixes (nav ≈ 144px tall) ─────── */
@media (max-width: 900px) {
  nav { padding: .5rem 5vw; }
  .nav-logo-img { height: 54px; }
  .mobile-menu { padding-top: 120px; }
  .hero { padding-top: 8.5rem; }
  .page-hero { padding-top: 8.5rem; }
  section[id] { scroll-margin-top: 96px; }
  .price-options { grid-template-columns: 1fr; }
}
