/* =========================================================================
   Dynaforge — Marketing Site Styles
   Three style directions controlled via [data-direction] on <html>.
     soft     — clean white, sanfte Schatten (status quo, refined)
     bold     — editorial, kraftvoll, große Type, Flammen-Echo
     forge    — dark mode, "Feuer im Dunkeln"
   ========================================================================= */
@import url("./colors_and_type.css");

* { box-sizing: border-box; }
html, body { min-height: 100%; }
body { background: var(--bg-body); color: var(--text-main); }

img { display: block; max-width: 100%; height: auto; }

.container {
  width: 100%;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 24px;
}

/* Density modifier */
[data-density="compact"]     { --density-mult: 0.78; }
[data-density="comfortable"] { --density-mult: 1.0; }
[data-density="spacious"]    { --density-mult: 1.22; }
:root { --density-mult: 1.0; }
[data-density] .df-section { padding: calc(clamp(64px, 8vw, 112px) * var(--density-mult)) 0; }
[data-density] .df-card    { padding: calc(28px * var(--density-mult)); }

/* Generic flame-numeric accent */
.flame-num {
  background: var(--brand-gradient);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  font-variant-numeric: tabular-nums;
}

/* ---------- Header ---------------------------------------------------- */
.df-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-subtle);
}
[data-direction="forge"] .df-header { background: rgba(10, 15, 28, 0.78); }
.df-header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; gap: 24px;
}
.df-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.df-brand img { width: 36px; height: 36px; }
.df-brand-name {
  font-weight: 800; color: var(--text-strong); font-size: 18px;
  letter-spacing: -0.01em;
}
.df-nav { display: flex; gap: 24px; }
.df-nav a {
  color: var(--text-main); font-size: 14.5px; font-weight: 500;
  position: relative; padding: 4px 0; text-decoration: none;
}
.df-nav a:hover { color: var(--accent-strong); text-decoration: none; }
.df-nav a.active { color: var(--accent-strong); }

/* ---------- Buttons --------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px; border-radius: var(--radius-md);
  font: inherit; font-weight: 600; font-size: 15px;
  cursor: pointer; border: none; text-decoration: none;
  transition: all var(--dur-base) var(--ease-standard);
}
.btn-primary {
  background: var(--brand-gradient); color: #fff;
  box-shadow: 0 4px 16px rgba(249, 115, 22, 0.28);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-flame);
  color: #fff; text-decoration: none;
}
.btn-primary:active { transform: scale(0.98); }
.btn-secondary {
  background: var(--bg-body); color: var(--text-strong);
  border: 1px solid var(--border-default);
}
.btn-secondary:hover {
  border-color: var(--accent-strong);
  color: var(--accent-strong); text-decoration: none;
}
[data-direction="forge"] .btn-secondary {
  background: var(--bg-card); color: var(--text-strong);
}
.btn-sm { padding: 8px 14px; font-size: 13.5px; border-radius: 10px; }

/* ---------- Hero ------------------------------------------------------ */
.df-hero {
  position: relative; overflow: hidden;
  padding: clamp(48px, 8vw, 120px) 0 clamp(48px, 7vw, 96px);
  background: var(--brand-gradient-radial);
}
[data-direction="bold"] .df-hero {
  background:
    radial-gradient(ellipse at 80% 0%, rgba(250,204,21,0.18), transparent 50%),
    radial-gradient(ellipse at 0% 100%, rgba(249,115,22,0.18), transparent 50%),
    var(--bg-body);
}
.df-hero-grid {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 56px;
  align-items: center;
}
.df-hero-stack { display: block; }
.df-hero-stack .df-h1 { max-width: 22ch; }
.df-hero-split .df-hero-grid { grid-template-columns: 1fr 1fr; gap: 64px; }
@media (max-width: 880px) {
  .df-hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .df-hero-split .df-hero-grid { grid-template-columns: 1fr; gap: 32px; }
}
.df-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600;
  letter-spacing: var(--tracking-eyebrow); text-transform: uppercase;
  color: var(--accent-strong);
  padding: 6px 14px; border-radius: var(--radius-pill);
  background: var(--bg-flame-soft); border: 1px solid var(--border-flame);
}
.df-eyebrow .dot {
  width: 6px; height: 6px; border-radius: 999px; background: var(--accent-strong);
  box-shadow: 0 0 0 4px rgba(249,115,22,0.18);
}
.df-h1 {
  font-size: var(--fs-display); line-height: 1.05;
  letter-spacing: var(--tracking-tight); font-weight: 800;
  color: var(--text-strong); margin: 20px 0 18px;
}
.df-h1 .flame {
  background: var(--brand-gradient);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
[data-direction="bold"] .df-h1 { font-size: clamp(3rem, 6vw + 1rem, 5.25rem); }
.df-subline {
  font-size: var(--fs-body-lg); color: var(--text-main);
  line-height: var(--lh-relaxed); max-width: 36rem;
  margin: 0 0 var(--space-8);
}
.df-cta-row { display: flex; gap: 12px; flex-wrap: wrap; }

/* Hero trust bar */
.df-trust-bar {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin-top: var(--space-8); padding-top: var(--space-6);
  border-top: 1px solid var(--border-subtle);
}
.df-trust-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; border-radius: var(--radius-pill);
  background: var(--bg-body); border: 1px solid var(--border-subtle);
  font-size: 13px; color: var(--text-main); font-weight: 500;
  box-shadow: var(--shadow-xs);
}
.df-trust-pill svg { color: var(--accent-strong); }
[data-direction="forge"] .df-trust-pill { background: var(--bg-card); }

/* Hero side card */
.df-side-card {
  background: var(--bg-body);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-lg);
  padding: 28px;
  position: relative;
}
[data-direction="forge"] .df-side-card {
  background: var(--bg-card);
  box-shadow: var(--shadow-flame), var(--shadow-lg);
}
.df-side-card::before {
  content: ""; position: absolute; inset: -1px; border-radius: inherit;
  padding: 1px; background: var(--brand-gradient);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0.6; pointer-events: none;
}
.df-metric { display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: center; padding: 14px 0; }
.df-metric + .df-metric { border-top: 1px dashed var(--border-subtle); }
.df-metric .num {
  font-size: 36px; font-weight: 800; line-height: 1;
  letter-spacing: -0.02em;
  background: var(--brand-gradient);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  font-variant-numeric: tabular-nums;
}
.df-metric .label-strong { font-weight: 600; color: var(--text-strong); font-size: 14.5px; }
.df-metric .label-meta { font-size: 12.5px; color: var(--text-muted); }

.df-side-card-title {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text-muted);
  margin-bottom: 6px;
}

/* Hero visual: server rack mock */
.df-hero-visual {
  position: relative;
  display: grid; place-items: center;
}
.df-server-rack {
  width: 100%; max-width: 360px;
  background: linear-gradient(180deg, var(--slate-800), var(--slate-900));
  border: 1px solid var(--slate-700);
  border-radius: var(--radius-xl);
  padding: 24px 22px 20px;
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255,255,255,0.08);
  position: relative;
  color: #cbd5e1;
}
.df-server-led {
  position: absolute; top: 14px; right: 16px;
  width: 8px; height: 8px; border-radius: 999px;
  background: #f97316; box-shadow: 0 0 12px #f97316;
  animation: df-pulse-led 2s ease-in-out infinite;
}
.df-server-led.g { right: 30px; background: #16a34a; box-shadow: 0 0 10px #16a34a; animation-delay: 0.4s; }
@keyframes df-pulse-led { 50% { opacity: 0.4; } }
.df-server-label {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em;
  color: #94a3b8; margin-bottom: 18px;
}
.df-server-meter {
  height: 6px; background: rgba(148,163,184,0.15);
  border-radius: 999px; overflow: hidden; margin-bottom: 10px;
}
.df-server-meter span {
  display: block; height: 100%;
  background: var(--brand-gradient);
  border-radius: 999px;
}
.df-server-foot {
  font-family: var(--font-mono); font-size: 10.5px; color: #64748b;
  margin-top: 14px; letter-spacing: 0.06em;
}
.df-hero-badge {
  position: absolute; bottom: -12px; right: -12px;
  background: var(--bg-body); border: 1px solid var(--border-flame);
  border-radius: var(--radius-pill);
  padding: 10px 18px; box-shadow: var(--shadow-md);
  display: flex; align-items: baseline; gap: 6px;
}
.df-hero-badge strong {
  font-size: 22px; font-weight: 800;
  background: var(--brand-gradient);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.df-hero-badge span { font-size: 13px; color: var(--text-main); font-weight: 500; }

.df-flame-echo {
  position: absolute; right: -120px; top: -80px; width: 520px;
  opacity: 0.06; pointer-events: none; user-select: none;
}
[data-direction="bold"] .df-flame-echo { opacity: 0.10; }
[data-direction="forge"] .df-flame-echo { opacity: 0.18; }

/* ---------- Section primitives ---------------------------------------- */
.df-section { padding: clamp(64px, 8vw, 112px) 0; }
.df-section.alt { background: var(--bg-card); }
.df-section-head {
  display: flex; flex-direction: column; gap: 12px;
  margin-bottom: var(--space-12); max-width: 48rem;
}
.df-section-title {
  font-size: var(--fs-h1); font-weight: 800; letter-spacing: -0.02em;
  color: var(--text-strong); margin: 0;
}
.df-section-lead { color: var(--text-main); font-size: 17px; line-height: 1.6; margin: 0; }

.df-grid-3 {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
@media (max-width: 880px) { .df-grid-3 { grid-template-columns: 1fr; } }

/* ---------- Cards (Leistungen / Branchen) ----------------------------- */
.df-card {
  background: var(--bg-body); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg); padding: 28px;
  box-shadow: var(--shadow-soft);
  transition: all var(--dur-base) var(--ease-standard);
  display: flex; flex-direction: column; gap: 12px;
  position: relative; overflow: hidden;
}
.df-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-flame);
}
[data-direction="forge"] .df-card { background: var(--bg-card); }

.df-icon-bubble {
  width: 52px; height: 52px; border-radius: var(--radius-md);
  background: var(--bg-flame-soft); color: var(--accent-strong);
  display: grid; place-items: center;
}
.df-icon-bubble svg { width: 26px; height: 26px; stroke-width: 1.75; }
[data-direction="bold"] .df-icon-bubble {
  background: var(--brand-gradient); color: #fff;
  box-shadow: var(--shadow-flame);
}
[data-direction="forge"] .df-icon-bubble {
  background: rgba(249,115,22,0.15); color: var(--brand-flame-300);
}

.df-card-title {
  font-size: 20px; font-weight: 700; color: var(--text-strong);
  letter-spacing: -0.01em; margin: 4px 0 4px;
}
.df-card-text {
  font-size: 14.5px; line-height: 1.6; color: var(--text-main); margin: 0;
}
.df-card-link {
  font-size: 13.5px; font-weight: 600; color: var(--accent-strong);
  display: inline-flex; align-items: center; gap: 4px; margin-top: auto;
  padding-top: 12px; text-decoration: none;
}
.df-card-link svg { width: 14px; height: 14px; transition: transform var(--dur-base); }
.df-card:hover .df-card-link svg { transform: translateX(3px); }

/* Leistung bullets */
.df-leistung-bullets {
  list-style: none; padding: 0; margin: 4px 0 0;
  display: flex; flex-direction: column; gap: 6px;
}
.df-leistung-bullets li {
  display: flex; align-items: center; gap: 8px;
  font-size: 13.5px; color: var(--text-main);
}
.df-leistung-bullets svg { color: var(--accent-strong); flex-shrink: 0; }

/* Branche bullets (cards mode) */
.df-branche-list {
  list-style: none; padding: 0; margin: 8px 0 0;
  display: flex; flex-direction: column; gap: 6px;
}
.df-branche-list li {
  font-size: 13px; color: var(--text-muted);
  display: flex; align-items: center; gap: 8px;
}
.df-branche-list .bullet {
  width: 4px; height: 4px; border-radius: 999px; background: var(--accent-strong);
}

[data-direction="bold"] .df-card.df-branche::after {
  content: ""; position: absolute; top: 0; right: 0; width: 80px; height: 80px;
  background: radial-gradient(circle at top right, rgba(249,115,22,0.18), transparent 70%);
  pointer-events: none;
}

/* ---------- Vergleich (On-Premise vs. Cloud) -------------------------- */
.df-compare {
  background: var(--bg-body); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-2xl); overflow: hidden;
  box-shadow: var(--shadow-soft);
}
[data-direction="forge"] .df-compare { background: var(--bg-card); }
.df-compare-head, .df-compare-row {
  display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 0;
}
.df-compare-head {
  background: var(--bg-card-alt);
  border-bottom: 1px solid var(--border-subtle);
  padding: 18px 24px;
  align-items: center;
}
.df-compare-head > div + div { padding-left: 16px; border-left: 1px solid var(--border-subtle); }
.df-compare-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px; border-radius: var(--radius-pill);
  font-size: 13px; font-weight: 600;
}
.df-compare-pill.on  { background: rgba(22,163,74,0.10); color: #15803d; }
.df-compare-pill.off { background: rgba(148,163,184,0.18); color: var(--text-muted); }
[data-direction="forge"] .df-compare-pill.on { background: rgba(34,197,94,0.16); color: #4ade80; }

.df-compare-row {
  padding: 18px 24px;
  border-top: 1px solid var(--border-subtle);
  align-items: center;
  font-size: 14.5px; line-height: 1.5;
}
.df-compare-row > div + div { padding-left: 16px; border-left: 1px solid var(--border-subtle); }
.df-compare-label { font-weight: 600; color: var(--text-strong); }
.df-compare-on { color: var(--text-strong); position: relative; }
.df-compare-on::before {
  content: "✓"; color: var(--status-success); font-weight: 800; margin-right: 8px;
}
.df-compare-off { color: var(--text-muted); position: relative; }
.df-compare-off::before {
  content: "✕"; color: var(--text-faint); font-weight: 800; margin-right: 8px;
}
@media (max-width: 760px) {
  .df-compare-head, .df-compare-row { grid-template-columns: 1fr; gap: 8px; }
  .df-compare-head > div + div, .df-compare-row > div + div { padding-left: 0; border-left: 0; padding-top: 8px; border-top: 1px dashed var(--border-subtle); }
  .df-compare-label { font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); }
}

/* ---------- Saarland-Marketing prominent placements ----------------- */
.df-saarland-topbar {
  background: linear-gradient(90deg, #f8fafc 0%, #fff 50%, #f8fafc 100%);
  border-bottom: 1px solid var(--border-subtle);
  padding: 8px 0;
  font-size: 13px;
}
[data-direction="forge"] .df-saarland-topbar {
  background: linear-gradient(90deg, #0b1220 0%, #111827 50%, #0b1220 100%);
  border-color: rgba(148,163,184,0.18);
}
.df-saarland-topbar .container {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  flex-wrap: wrap;
}
.df-saarland-topbar img { height: 28px; width: auto; display: block; border-radius: 4px; }
.df-saarland-topbar span { color: var(--text-muted); font-weight: 500; }

.df-saarland-banner {
  padding: 36px 0;
  background:
    radial-gradient(1200px 200px at 80% 0%, rgba(249,115,22,0.06), transparent 70%),
    linear-gradient(180deg, #fffaf3 0%, var(--bg-body) 100%);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
[data-direction="forge"] .df-saarland-banner {
  background:
    radial-gradient(1200px 200px at 80% 0%, rgba(249,115,22,0.10), transparent 70%),
    linear-gradient(180deg, #0d1422 0%, var(--bg-body) 100%);
}
.df-saarland-banner .container {
  display: grid; grid-template-columns: auto 1fr; gap: 28px; align-items: center;
}
@media (max-width: 720px) {
  .df-saarland-banner .container { grid-template-columns: 1fr; gap: 16px; text-align: center; }
}
.df-saarland-banner-mark {
  display: inline-block;
  padding: 10px 14px;
  background: #fff; border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  transition: all var(--dur-base) var(--ease-standard);
}
.df-saarland-banner-mark:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.df-saarland-banner-mark img { width: 240px; height: auto; display: block; }
@media (max-width: 720px) { .df-saarland-banner-mark { justify-self: center; } }
.df-saarland-banner h3 {
  font-family: var(--font-display);
  font-size: 26px; line-height: 1.15; margin: 0 0 6px;
  letter-spacing: -0.01em; color: var(--text-strong);
}
.df-saarland-banner p {
  margin: 0; color: var(--text-main); font-size: 15px; line-height: 1.55;
  max-width: 56ch;
}

/* Saarland-Marketing logo block */
.df-saarland-mark {
  display: inline-block; margin-top: 18px;
  padding: 8px 12px;
  background: #fff; border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xs);
  transition: all var(--dur-base) var(--ease-standard);
}
.df-saarland-mark:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.df-saarland-mark img { width: 220px; height: auto; display: block; }
[data-direction="forge"] .df-saarland-mark { background: #fff; }

/* ---------- Förder-Rechner ------------------------------------------- */
.df-rechner {
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 32px;
  background: var(--bg-body); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-2xl); padding: 36px;
  box-shadow: var(--shadow-soft);
}
[data-direction="forge"] .df-rechner { background: var(--bg-card); }
@media (max-width: 880px) { .df-rechner { grid-template-columns: 1fr; gap: 24px; padding: 24px; } }

.df-rechner-label {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 14px; font-weight: 600; color: var(--text-strong);
  margin-bottom: 16px;
}
.df-rechner-value {
  font-size: 28px; font-weight: 800; letter-spacing: -0.02em;
  background: var(--brand-gradient);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  font-variant-numeric: tabular-nums;
}
.df-rechner-slider {
  appearance: none; -webkit-appearance: none;
  width: 100%; height: 6px; border-radius: 999px;
  background: linear-gradient(90deg, rgba(249,115,22,0.25), rgba(148,163,184,0.2));
  outline: none; margin: 8px 0;
}
.df-rechner-slider::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--brand-gradient);
  box-shadow: 0 4px 12px rgba(249,115,22,0.4), inset 0 1px 0 rgba(255,255,255,0.4);
  border: 2px solid #fff;
  cursor: grab;
}
.df-rechner-slider::-moz-range-thumb {
  width: 26px; height: 26px; border-radius: 50%;
  background: #f97316; border: 2px solid #fff;
  box-shadow: 0 4px 12px rgba(249,115,22,0.4);
  cursor: grab;
}
.df-rechner-ticks {
  display: flex; justify-content: space-between;
  font-size: 11.5px; color: var(--text-muted);
  font-family: var(--font-mono);
  margin-top: 4px;
}
.df-rechner-bars { margin-top: 24px; }
.df-rechner-bar {
  height: 14px; background: rgba(148,163,184,0.20);
  border-radius: 999px; overflow: hidden;
  position: relative;
}
.df-rechner-bar-fill.on {
  height: 100%; background: var(--brand-gradient);
  border-radius: 999px;
  transition: width var(--dur-slow) var(--ease-standard);
  box-shadow: 0 0 0 1px rgba(249,115,22,0.3);
}
.df-rechner-bar-legend {
  display: flex; justify-content: space-between;
  margin-top: 10px; font-size: 13px; color: var(--text-main);
}
.df-rechner-bar-legend .dot {
  display: inline-block; width: 8px; height: 8px;
  border-radius: 999px; margin-right: 6px;
}
.df-rechner-bar-legend .dot.on  { background: #f97316; }
.df-rechner-bar-legend .dot.off { background: rgba(148,163,184,0.5); }

.df-rechner-result {
  display: flex; flex-direction: column; gap: 12px;
}
.df-rechner-pill {
  background: var(--bg-card-alt);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 16px 18px;
  display: flex; flex-direction: column; gap: 4px;
}
.df-rechner-pill > span { font-size: 12.5px; color: var(--text-muted); font-weight: 500; }
.df-rechner-pill > strong {
  font-size: 28px; font-weight: 800; letter-spacing: -0.02em;
  color: var(--text-strong); font-variant-numeric: tabular-nums;
}
.df-rechner-pill > strong.flame-num {
  background: var(--brand-gradient);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.df-rechner-pill > small { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.df-rechner-note {
  font-size: 11.5px; color: var(--text-muted); line-height: 1.4;
  margin: 4px 0 0;
}

/* ---------- Branchen Tabs -------------------------------------------- */
.df-branchen-tabs {
  background: var(--bg-body); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-2xl); overflow: hidden;
  box-shadow: var(--shadow-soft);
}
[data-direction="forge"] .df-branchen-tabs { background: var(--bg-card); }
.df-tab-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--border-subtle);
  background: var(--bg-card-alt);
}
.df-tab {
  background: transparent; border: 0;
  padding: 18px 16px;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  font: inherit; font-weight: 600; font-size: 15px;
  color: var(--text-muted);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all var(--dur-base) var(--ease-standard);
  text-align: center;
}
.df-tab:hover { color: var(--text-strong); background: rgba(0,0,0,0.02); }
[data-direction="forge"] .df-tab:hover { background: rgba(255,255,255,0.04); }
.df-tab.active {
  color: var(--accent-strong);
  background: var(--bg-body);
  border-bottom-color: var(--accent-strong);
}
[data-direction="forge"] .df-tab.active { background: var(--bg-card); }
.df-tab-icon {
  width: 28px; height: 28px; border-radius: 8px;
  display: grid; place-items: center;
  background: var(--bg-flame-soft); color: var(--accent-strong);
}
.df-tab.active .df-tab-icon {
  background: var(--brand-gradient); color: #fff;
}
.df-tab-icon svg { width: 16px; height: 16px; }

.df-tab-panel {
  padding: 36px;
  animation: df-fade-up 0.4s var(--ease-emphatic);
}
@keyframes df-fade-up {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.df-tab-headline { max-width: 44rem; margin-bottom: 28px; }
.df-tab-headline h3 {
  font-size: 24px; font-weight: 800; color: var(--text-strong);
  margin: 0 0 8px; letter-spacing: -0.01em;
}
.df-tab-headline p {
  font-size: 15.5px; color: var(--text-main); line-height: 1.6; margin: 0;
}
.df-usecase-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
@media (max-width: 760px) { .df-usecase-grid { grid-template-columns: 1fr; } }
.df-usecase {
  padding: 20px; background: var(--bg-card-alt);
  border-radius: var(--radius-lg); border: 1px solid var(--border-subtle);
  display: flex; flex-direction: column; gap: 6px;
  animation: df-fade-up 0.5s var(--ease-emphatic) backwards;
  position: relative;
}
.df-usecase-num {
  font-family: var(--font-mono); font-size: 11px; font-weight: 600;
  color: var(--accent-strong); letter-spacing: 0.1em;
  margin-bottom: 4px;
}
.df-usecase-title {
  font-size: 15px; font-weight: 700; color: var(--text-strong);
}
.df-usecase-desc {
  font-size: 13.5px; color: var(--text-main); line-height: 1.5;
}
@media (max-width: 540px) {
  .df-tab-row { grid-template-columns: 1fr; }
  .df-tab { justify-content: flex-start; padding: 14px 18px; }
  .df-tab-panel { padding: 24px; }
}

/* ---------- Über uns -------------------------------------------------- */
.df-about {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 56px;
  align-items: center;
}
@media (max-width: 880px) { .df-about { grid-template-columns: 1fr; gap: 32px; } }
.df-about p { font-size: 16.5px; line-height: 1.7; color: var(--text-main); margin: 0 0 16px; }
.df-about-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  margin-top: 24px; padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
}
.df-stat-num { font-size: 28px; font-weight: 800; letter-spacing: -0.02em; }
.df-stat-label { font-size: 12.5px; color: var(--text-muted); margin-top: 2px; }

.df-trust-card {
  background: var(--bg-body); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl); padding: 24px;
  box-shadow: var(--shadow-soft);
  display: flex; flex-direction: column; gap: 16px;
}
[data-direction="forge"] .df-trust-card { background: var(--bg-card); }
.df-trust-row { display: flex; align-items: center; gap: 14px; }
.df-trust-glyph {
  width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0;
  display: grid; place-items: center; font-weight: 800; font-size: 14px;
  background: var(--bg-flame-soft); color: var(--accent-strong);
}
.df-trust-row .label-strong { font-weight: 600; color: var(--text-strong); font-size: 14px; }
.df-trust-row .label-meta { font-size: 12.5px; color: var(--text-muted); }

/* ---------- FAQ ------------------------------------------------------- */
.df-faq { display: flex; flex-direction: column; gap: 10px; max-width: 56rem; }
.df-faq-item {
  background: var(--bg-body); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md); overflow: hidden;
  transition: all var(--dur-base) var(--ease-standard);
}
[data-direction="forge"] .df-faq-item { background: var(--bg-card); }
.df-faq-item.open {
  border-color: var(--border-flame);
  box-shadow: 0 4px 20px rgba(249,115,22,0.10);
}
.df-faq-q {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 18px 22px; cursor: pointer;
  font-size: 16px; font-weight: 600; color: var(--text-strong);
  text-align: left; width: 100%; background: transparent; border: none;
  font-family: inherit;
}
.df-faq-item.open .df-faq-q { color: var(--accent-strong); }
.df-faq-ind {
  width: 28px; height: 28px; flex-shrink: 0; border-radius: 999px;
  background: var(--bg-card-alt); color: var(--text-main);
  display: grid; place-items: center; font-size: 16px; line-height: 1;
  transition: all var(--dur-base) var(--ease-flame);
}
.df-faq-item.open .df-faq-ind {
  background: var(--brand-gradient); color: #fff;
  transform: rotate(45deg);
}
.df-faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height var(--dur-slow) var(--ease-standard);
}
.df-faq-item.open .df-faq-a { max-height: 280px; }
.df-faq-a-inner {
  padding: 0 22px 20px; font-size: 14.5px; line-height: 1.65;
  color: var(--text-main);
}

/* ---------- Kontakt --------------------------------------------------- */
.df-contact {
  display: grid; grid-template-columns: 1fr 1.3fr; gap: 32px;
  background: var(--bg-body);
  border: 1px solid var(--border-subtle); border-radius: var(--radius-2xl);
  padding: 36px; box-shadow: var(--shadow-soft);
}
[data-direction="forge"] .df-contact { background: var(--bg-card); }
[data-direction="bold"] .df-contact {
  background: linear-gradient(135deg, rgba(249,115,22,0.04) 0%, rgba(250,204,21,0.04) 100%), var(--bg-body);
}
@media (max-width: 880px) { .df-contact { grid-template-columns: 1fr; gap: 24px; padding: 24px; } }

/* Person card */
.df-person {
  display: flex; gap: 14px; align-items: center;
  padding-bottom: 20px; margin-bottom: 4px;
  border-bottom: 1px solid var(--border-subtle);
}
.df-person-photo {
  width: 56px; height: 56px; border-radius: 999px; flex-shrink: 0;
  background: var(--brand-gradient);
  display: grid; place-items: center;
  color: #fff; font-weight: 800; font-size: 18px;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 14px rgba(249,115,22,0.32), inset 0 1px 0 rgba(255,255,255,0.3);
}
.df-person-role {
  font-size: 11.5px; font-weight: 600; color: var(--accent-strong);
  letter-spacing: 0.08em; text-transform: uppercase;
}
.df-person-name { font-size: 17px; font-weight: 700; color: var(--text-strong); }
.df-person-meta { font-size: 12.5px; color: var(--text-muted); }

.df-info-row { display: flex; gap: 12px; align-items: flex-start; padding: 12px 0; }
.df-info-row + .df-info-row { border-top: 1px dashed var(--border-subtle); }
.df-info-row svg { width: 20px; height: 20px; color: var(--accent-strong); flex-shrink: 0; margin-top: 2px; stroke-width: 1.75; }
.df-info-row .label-strong { font-weight: 600; color: var(--text-strong); font-size: 14px; display: block; }
.df-info-row .label-meta { font-size: 13px; color: var(--text-muted); }

.df-form { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.df-form .full { grid-column: 1 / -1; }
.df-field { display: flex; flex-direction: column; gap: 6px; }
.df-field label { font-size: 12.5px; font-weight: 600; color: var(--text-strong); }
.df-field input, .df-field textarea, .df-field select {
  font: inherit; padding: 11px 14px; border-radius: var(--radius-sm);
  border: 1px solid var(--border-default); background: var(--bg-body);
  color: var(--text-strong);
  box-shadow: var(--shadow-xs);
  transition: all var(--dur-fast) var(--ease-standard);
}
[data-direction="forge"] .df-field input,
[data-direction="forge"] .df-field textarea,
[data-direction="forge"] .df-field select {
  background: var(--bg-card-alt); border-color: var(--border-default);
}
.df-field input:focus, .df-field textarea:focus, .df-field select:focus {
  outline: none;
  border-color: var(--accent-strong);
  box-shadow: 0 0 0 3px rgba(249,115,22,0.18);
}
.df-field textarea { resize: vertical; min-height: 84px; }

/* Budget chips */
.df-budget-row { display: flex; gap: 8px; flex-wrap: wrap; }
.df-budget-chip {
  font: inherit; font-size: 13px; font-weight: 500;
  padding: 9px 14px; border-radius: var(--radius-pill);
  background: var(--bg-body); color: var(--text-main);
  border: 1px solid var(--border-default);
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease-standard);
}
[data-direction="forge"] .df-budget-chip { background: var(--bg-card-alt); }
.df-budget-chip:hover { border-color: var(--accent-strong); color: var(--accent-strong); }
.df-budget-chip.active {
  background: var(--brand-gradient); color: #fff; border-color: transparent;
  box-shadow: 0 2px 8px rgba(249,115,22,0.28);
}

/* ---------- Footer ---------------------------------------------------- */
.df-footer {
  background: var(--bg-card-alt); padding: 48px 0 32px; margin-top: 0;
  border-top: 1px solid var(--border-subtle);
}
[data-direction="forge"] .df-footer { background: var(--bg-subtle); }
.df-footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 32px;
  margin-bottom: 32px;
}
@media (max-width: 880px) { .df-footer-grid { grid-template-columns: 1fr 1fr; } }
.df-footer h4 { font-size: 13px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); font-weight: 600; margin-bottom: 16px; }
.df-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.df-footer ul a { color: var(--text-main); font-size: 14px; text-decoration: none; }
.df-footer ul a:hover { color: var(--accent-strong); }
.df-footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px; border-top: 1px solid var(--border-subtle);
  font-size: 13px; color: var(--text-muted);
  flex-wrap: wrap; gap: 12px;
}
.df-saarland-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--bg-body); border: 1px solid var(--border-subtle);
  padding: 6px 12px; border-radius: var(--radius-pill);
  font-size: 12.5px; color: var(--text-main);
}
.df-saarland-badge .glyph { width: 8px; height: 8px; border-radius: 999px; background: var(--brand-gradient); }

.df-trust-glyph.saarland-logo-cell {
  background: #fff; padding: 4px;
}
.df-trust-glyph.saarland-logo-cell img {
  width: 100%; height: 100%; object-fit: contain;
}

/* Footer Saarland-Marketing badge link */
.df-footer img[alt*="Saarland"] {
  display: block;
}

/* ---------- Chat Widget ---------------------------------------------- */
.df-chat {
  position: fixed; bottom: 24px; right: 24px; z-index: 60;
  width: 64px; height: 64px; border-radius: 999px;
  background: var(--brand-gradient); color: #fff;
  display: grid; place-items: center; cursor: pointer;
  box-shadow: 0 12px 32px rgba(249,115,22,0.4), 0 4px 12px rgba(0,0,0,0.15);
  border: none;
  transition: all var(--dur-base) var(--ease-flame);
}
.df-chat:hover { transform: scale(1.08); }
.df-chat svg { width: 26px; height: 26px; stroke-width: 2; }
.df-chat-pulse {
  position: absolute; inset: 0; border-radius: 999px;
  background: var(--brand-gradient); opacity: 0.6;
  animation: df-pulse 2.4s var(--ease-standard) infinite;
  z-index: -1;
}
@keyframes df-pulse {
  0% { transform: scale(1); opacity: 0.5; }
  70% { transform: scale(1.7); opacity: 0; }
  100% { transform: scale(1.7); opacity: 0; }
}

.df-chat-panel {
  position: fixed; bottom: 100px; right: 24px; z-index: 60;
  width: 360px; max-width: calc(100vw - 48px);
  background: var(--bg-body);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transform-origin: bottom right;
  animation: df-pop var(--dur-slow) var(--ease-flame);
  display: flex; flex-direction: column;
}
[data-direction="forge"] .df-chat-panel { background: var(--bg-card); }
@keyframes df-pop {
  from { opacity: 0; transform: scale(0.9) translateY(8px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.df-chat-head {
  padding: 14px 16px;
  background: linear-gradient(135deg, rgba(249,115,22,0.10), rgba(250,204,21,0.06));
  border-bottom: 1px solid var(--border-subtle);
  display: flex; align-items: center; gap: 12px;
}
.df-chat-avatar {
  width: 36px; height: 36px; border-radius: 999px;
  background: var(--brand-gradient); display: grid; place-items: center;
  font-weight: 800; color: #fff; font-size: 16px;
}
.df-chat-name { font-weight: 700; font-size: 14px; color: var(--text-strong); }
.df-chat-sub { font-size: 12px; color: var(--text-muted); display: flex; align-items: center; gap: 4px; }
.df-chat-sub .live { width: 7px; height: 7px; border-radius: 999px; background: var(--status-success); box-shadow: 0 0 0 3px rgba(22,163,74,0.25); }
.df-chat-body { padding: 16px; display: flex; flex-direction: column; gap: 10px; max-height: 320px; min-height: 200px; overflow-y: auto; }
.df-chat-msg { font-size: 13.5px; padding: 10px 14px; border-radius: 14px; max-width: 84%; line-height: 1.45; }
.df-chat-msg.bot { background: var(--bg-card); color: var(--text-main); align-self: flex-start; border-bottom-left-radius: 4px; }
.df-chat-msg.me  { background: var(--brand-gradient); color: #fff; align-self: flex-end; border-bottom-right-radius: 4px; }
.df-chat-typing { display: flex; gap: 4px; padding: 14px; }
.df-chat-typing span {
  width: 6px; height: 6px; border-radius: 999px;
  background: var(--text-muted);
  animation: df-typing 1.2s ease-in-out infinite;
}
.df-chat-typing span:nth-child(2) { animation-delay: 0.15s; }
.df-chat-typing span:nth-child(3) { animation-delay: 0.30s; }
@keyframes df-typing {
  0%, 60%, 100% { opacity: 0.3; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-3px); }
}
.df-chat-suggestions {
  display: flex; flex-direction: column; gap: 6px; align-items: flex-start;
  margin-top: 4px;
}
.df-chat-suggestions button {
  font: inherit; font-size: 12.5px;
  padding: 8px 12px; border-radius: var(--radius-pill);
  background: var(--bg-body); color: var(--text-main);
  border: 1px solid var(--border-flame);
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease-standard);
  text-align: left;
}
[data-direction="forge"] .df-chat-suggestions button { background: var(--bg-card-alt); }
.df-chat-suggestions button:hover {
  background: var(--bg-flame-soft); color: var(--accent-strong);
}
.df-chat-input { display: flex; gap: 8px; padding: 10px; border-top: 1px solid var(--border-subtle); }
.df-chat-input input { flex: 1; padding: 10px 14px; border-radius: 999px; border: 1px solid var(--border-default); background: var(--bg-body); color: var(--text-strong); font: inherit; font-size: 13.5px; }
.df-chat-input input:focus { outline: none; border-color: var(--accent-strong); }
.df-chat-input .send { width: 38px; height: 38px; border-radius: 999px; background: var(--brand-gradient); color: #fff; border: none; cursor: pointer; font-size: 16px; }
[data-direction="forge"] .df-chat-input input { background: var(--bg-card-alt); }
.df-chat-foot {
  padding: 8px 14px; font-size: 11px; color: var(--text-muted);
  background: var(--bg-card-alt);
  display: flex; align-items: center; gap: 6px;
  border-top: 1px solid var(--border-subtle);
}
.df-chat-foot svg { color: var(--accent-strong); }

/* ---------- Reveal-on-scroll ----------------------------------------- */
.df-reveal { opacity: 0; transform: translateY(18px); transition: opacity 700ms var(--ease-emphatic), transform 700ms var(--ease-emphatic); }
.df-reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- Bold direction extras ------------------------------------ */
[data-direction="bold"] .df-h1 { font-weight: 900; letter-spacing: -0.04em; }
[data-direction="bold"] .df-section-title { font-weight: 900; letter-spacing: -0.03em; }
[data-direction="bold"] .df-card { border-radius: var(--radius-xl); }

/* ---------- Forge direction tweaks ----------------------------------- */
[data-direction="forge"] body { background: var(--bg-body); }
[data-direction="forge"] .df-section.alt { background: var(--bg-subtle); }

/* =========================================================================
   DIGITALINVEST PAGE — separate subpage styles
   ========================================================================= */
.df-page-hero {
  background: var(--brand-gradient-radial);
  padding: clamp(56px, 7vw, 88px) 0 clamp(40px, 5vw, 64px);
  position: relative; overflow: hidden;
  border-bottom: 1px solid var(--border-subtle);
}
.df-page-hero h1 {
  font-size: clamp(2rem, 4vw + 1rem, 3.5rem);
  line-height: 1.05; letter-spacing: -0.02em;
  font-weight: 800; color: var(--text-strong);
  margin: 16px 0 14px; max-width: 22ch;
}
.df-page-hero h1 .flame {
  background: var(--brand-gradient);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.df-page-hero p {
  font-size: 18px; line-height: 1.6; max-width: 44rem;
  color: var(--text-main); margin: 0 0 28px;
}

/* Voraussetzungen grid */
.df-voraus {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
}
@media (max-width: 760px) { .df-voraus { grid-template-columns: 1fr; } }
.df-voraus-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 22px;
  background: var(--bg-body); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
}
.df-voraus-glyph {
  width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
  background: var(--bg-flame-soft); color: var(--accent-strong);
  display: grid; place-items: center;
}
.df-voraus-title { font-weight: 700; color: var(--text-strong); margin: 0 0 4px; font-size: 15px; }
.df-voraus-desc { font-size: 13.5px; color: var(--text-main); line-height: 1.5; margin: 0; }

/* Ablauf timeline */
.df-ablauf {
  display: flex; flex-direction: column; gap: 0;
  position: relative;
}
.df-ablauf-step {
  display: grid; grid-template-columns: 80px 1fr; gap: 24px;
  padding: 20px 0;
  position: relative;
}
.df-ablauf-step + .df-ablauf-step { border-top: 1px solid var(--border-subtle); }
.df-ablauf-num {
  width: 60px; height: 60px; border-radius: 999px;
  background: var(--brand-gradient); color: #fff;
  display: grid; place-items: center;
  font-size: 22px; font-weight: 800;
  box-shadow: 0 4px 14px rgba(249,115,22,0.32);
}
.df-ablauf-content h3 {
  font-size: 18px; font-weight: 700; color: var(--text-strong);
  margin: 6px 0 6px;
}
.df-ablauf-content p {
  font-size: 14.5px; color: var(--text-main); line-height: 1.6;
  margin: 0; max-width: 50rem;
}
.df-ablauf-meta {
  font-size: 12px; font-weight: 600;
  color: var(--accent-strong); letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 8px;
}

/* Rechenbeispiel */
.df-rechenbeispiel {
  background: var(--bg-body); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-2xl); padding: 32px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
  box-shadow: var(--shadow-soft);
}
@media (max-width: 760px) { .df-rechenbeispiel { grid-template-columns: 1fr; padding: 24px; } }
.df-rb-line {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 12px 0; font-size: 14.5px;
  border-bottom: 1px dashed var(--border-subtle);
}
.df-rb-line.total {
  border-bottom: 0; padding-top: 16px; margin-top: 4px;
  border-top: 2px solid var(--text-strong);
  font-size: 17px; font-weight: 700;
}
.df-rb-amount { font-variant-numeric: tabular-nums; font-weight: 600; color: var(--text-strong); }
.df-rb-amount.neg { color: var(--status-success); }
.df-rb-final {
  background: var(--brand-gradient);
  border-radius: var(--radius-xl);
  padding: 28px; color: #fff;
  display: flex; flex-direction: column; gap: 6px;
  box-shadow: var(--shadow-flame);
  position: relative; overflow: hidden;
}
.df-rb-final::after {
  content: ""; position: absolute; right: -40px; bottom: -40px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(255,255,255,0.18), transparent 60%);
  pointer-events: none;
}
.df-rb-final-label { font-size: 12.5px; font-weight: 600; opacity: 0.85; letter-spacing: 0.08em; text-transform: uppercase; }
.df-rb-final-num { font-size: 48px; font-weight: 800; letter-spacing: -0.02em; line-height: 1; font-variant-numeric: tabular-nums; }
.df-rb-final-meta { font-size: 13px; opacity: 0.9; margin-top: 6px; }

/* ---------- Global overflow stop (no horizontal scroll on mobile) ----- */
html, body { max-width: 100%; overflow-x: hidden; }

/* ---------- Mobile nav: burger + slide-down menu ---------------------- */
.df-burger {
  display: none;
  width: 40px; height: 40px;
  padding: 0; border: 0;
  background: transparent; cursor: pointer;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px;
  position: relative; z-index: 1001;
}
.df-burger span {
  display: block; width: 22px; height: 2px;
  background: var(--text-strong); border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}
.df-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.df-burger.open span:nth-child(2) { opacity: 0; }
.df-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
[data-direction="forge"] .df-burger span { background: #f1f5f9; }

.df-mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: none;
  align-items: flex-start; justify-content: stretch;
  padding-top: 64px;
}
.df-mobile-menu.open { display: flex; }
.df-mobile-nav {
  width: 100%;
  background: var(--bg-body);
  padding: 24px 24px 32px;
  display: flex; flex-direction: column; gap: 4px;
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 14px 24px rgba(15,23,42,0.10);
}
.df-mobile-nav a {
  font-size: 17px;
  font-weight: 500;
  padding: 14px 4px;
  color: var(--text-main);
  border-bottom: 1px solid var(--border-subtle);
  text-decoration: none;
}
.df-mobile-nav a:last-of-type { border-bottom: 0; }
.df-mobile-nav a:hover, .df-mobile-nav a:focus { color: var(--accent-strong); }
.df-mobile-cta { margin-top: 14px; align-self: stretch; justify-content: center; }

@media (max-width: 760px) {
  /* Hide desktop nav + CTA — robust against cached old Header.jsx versions
     (which only had .df-nav and a generic .btn.btn-primary in the header) */
  .df-nav, .df-nav-desktop, .df-cta-desktop { display: none !important; }
  .df-header .btn.btn-primary { display: none !important; }
  .df-burger { display: inline-flex; }
  .df-header-inner { gap: 12px; }
  .df-brand-name { font-size: 16px; }
}

@media (min-width: 761px) {
  .df-mobile-menu { display: none !important; }
  .df-burger { display: none !important; }
}
