/*
 * css/home.css  —  Galaxyweb AG Homepage
 * Ergänzt main.css, überschreibt NICHTS daraus.
 *
 * Regeln:
 *  - Kein :root, kein body, kein html, kein Reset
 *  - Tokens: --border (nicht --line), --dark (nicht --ink),
 *            --blue-brand (nicht --brand), --bg, --text-2 — alle aus main.css
 *  - body hat bereits padding-top:80px aus main.css → .hero braucht das nicht
 *
 * HERO-FOTO: .hero-photo = CSS-Placeholder.
 *   Produktion: background: url('/img/hero-bg.jpg') center/cover no-repeat;
 */

/* Fehlende Tokens ergänzen (main.css hat diese nicht) */
:root {
  --ease:       cubic-bezier(.22,.68,0,1.2);
  --shadow-sm:  0 1px 3px rgba(0,40,100,.08), 0 4px 12px rgba(0,40,100,.05);
  --shadow-md:  0 4px 16px rgba(0,40,100,.10), 0 1px 4px rgba(0,40,100,.06);
  --shadow-lg:  0 12px 40px rgba(0,40,100,.13), 0 3px 10px rgba(0,40,100,.07);
  --red:        #c7331a;
  --grad:       var(--grad-btn);
  --line:       var(--border);
  --ink:        var(--dark);
  --brand:      var(--blue-brand);
}

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
/* body hat padding-top:80px aus main.css — Hero braucht nur eigenen Innenabstand */
.hero { padding: 40px 0 96px; overflow: hidden; position: relative; isolation: isolate; background: #fff; }


/* ══════════════════════════════════════
   TRUST BAR — Marquee (überschreibt main.css Trust-Grid)
══════════════════════════════════════ */
.trust-bar {
  background: var(--grad-trust); background-size: 200% 100%;
  animation: gwGradShift 10s ease infinite;
  padding: 15px 0; overflow: hidden; white-space: nowrap;
}
@keyframes gwGradShift { 0%,100%{background-position:0%} 50%{background-position:100%} }
.trust-track { display: inline-flex; animation: gwMarquee 40s linear infinite; }
.trust-track:hover { animation-play-state: paused; }
.ti {
  display: inline-flex; align-items: center; gap: 8px; padding: 0 32px;
  border-right: 1px solid rgba(255,255,255,.2); font-size: 12.5px; font-weight: 700;
  color: rgba(255,255,255,.88); letter-spacing: .015em; white-space: nowrap;
}
.ti svg { width: 13px; height: 13px; fill: none; stroke: #fff; stroke-width: 2; stroke-linecap: round; flex-shrink: 0; opacity: .75; }
@keyframes gwMarquee { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ══════════════════════════════════════
   PROBLEME — horizontale Karten
   (überschreibt main.css .prob-grid/.prob-card)
══════════════════════════════════════ */
.prob-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.prob-card {
  background: #fff; border-radius: 18px; border: 1.5px solid var(--border);
  padding: 0; overflow: hidden; display: flex; flex-direction: row;
  align-items: stretch; transition: all .22s var(--ease);
  box-shadow: none; position: relative; cursor: pointer; text-decoration: none; color: inherit;
}
.prob-card::before,.prob-card::after { display: none !important; }
.prob-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.prob-accent { width: 5px; flex-shrink: 0; }
.pa-amber { background: linear-gradient(180deg,#fbbf24,#f59e0b); }
.pa-red   { background: linear-gradient(180deg,#f87171,#ef4444); }
.pa-blue  { background: linear-gradient(180deg,#60a5fa,#3b82f6); }
.pa-green { background: linear-gradient(180deg,#34d399,#10b981); }
.prob-inner   { padding: 26px 28px 24px; flex: 1; display: flex; flex-direction: column; }
.prob-top-row { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.prob-num     { font-size: 10.5px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.prob-icon    { width: 44px; height: 44px; border-radius: 11px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.prob-icon svg { width: 20px; height: 20px; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.pi-a { background: #fef9c3; } .pi-a svg { stroke: #a16207; }
.pi-r { background: #fee2e2; } .pi-r svg { stroke: #b91c1c; }
.pi-b { background: #dbeafe; } .pi-b svg { stroke: #1e40af; }
.pi-g { background: #dcfce7; } .pi-g svg { stroke: #15803d; }
.prob-title { font-size: 17px; font-weight: 800; color: var(--text); line-height: 1.28; flex: 1; }
.prob-text  { font-size: 13.5px; color: var(--muted); line-height: 1.68; margin-bottom: 16px; flex: 1; }
.prob-pill  {
  display: inline-flex; align-items: center; gap: 7px; font-size: 11.5px; font-weight: 700;
  color: var(--green); background: rgba(5,150,105,.07); border: 1.5px solid rgba(5,150,105,.16);
  padding: 5px 13px; border-radius: 100px; width: fit-content; margin-top: auto;
}
.prob-pill::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--green); flex-shrink: 0; }

/* ══════════════════════════════════════
   PRODUKTE — Top-Akzentbalken
   (überschreibt main.css .prod-card/.prod-hdr)
══════════════════════════════════════ */
.prod-grid   { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-bottom: 18px; }
.prod-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.prod-card {
  background: #fff; border: 1.5px solid var(--border); border-radius: 20px;
  overflow: hidden; display: flex; flex-direction: column; transition: all .22s var(--ease);
  position: relative; text-decoration: none; color: inherit; box-shadow: none;
}
.prod-card::before { display: none !important; }
.prod-card::after  { content: ''; position: absolute; inset: 0; border-radius: 20px; box-shadow: 0 0 0 2px var(--blue); opacity: 0; transition: opacity .22s; pointer-events: none; }
.prod-card:hover   { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.prod-card:hover::after { opacity: 1; }
.prod-card-top { height: 4px; width: 100%; flex-shrink: 0; }
.pct-hosting { background: linear-gradient(90deg,#0050a0,#0098ef,#3cb1f3); }
.pct-mail    { background: linear-gradient(90deg,#4338ca,#6366f1,#818cf8); }
.pct-cloud   { background: linear-gradient(90deg,#0d9488,#14b8a6,#5eead4); }
.pct-archive { background: linear-gradient(90deg,#b45309,#d97706,#fbbf24); }
.pct-sec     { background: linear-gradient(90deg,#be123c,#e11d48,#fb7185); }
.prod-hdr { padding: 22px 24px 16px; display: flex; align-items: center; gap: 14px; height: auto; background: none; }
.prod-hdr::after { display: none !important; }
.prod-icon { width: 46px; height: 46px; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; background: none; border: none; box-shadow: none; backdrop-filter: none; }
.prod-icon svg { width: 22px; height: 22px; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; stroke: currentColor; }
.ph-hosting .prod-icon { background: #e4f0ff; } .ph-hosting .prod-icon svg { stroke: #0050a0; }
.ph-mail    .prod-icon { background: #eef2ff; } .ph-mail    .prod-icon svg { stroke: #4338ca; }
.ph-cloud   .prod-icon { background: #ccfbf1; } .ph-cloud   .prod-icon svg { stroke: #0d9488; }
.ph-archive .prod-icon { background: #fef9c3; } .ph-archive .prod-icon svg { stroke: #92400e; }
.ph-sec     .prod-icon { background: #ffe4e6; } .ph-sec     .prod-icon svg { stroke: #be123c; }
.prod-hdr-text { flex: 1; }
.prod-hdr-name { display: block; font-size: 15px; font-weight: 800; color: var(--text); letter-spacing: -.01em; }
.prod-hdr-sub  { display: block; font-size: 11.5px; color: var(--muted); margin-top: 2px; }
.prod-body  { padding: 0 24px 20px; flex: 1; display: flex; flex-direction: column; }
.prod-feats { display: flex; flex-direction: column; gap: 8px; flex: 1; margin-bottom: 18px; }
.prod-feat  { display: flex; align-items: center; gap: 9px; font-size: 13px; color: var(--text-2); border: none; padding: 0; }
.prod-feat::before { content: '✓'; font-size: 10px; font-weight: 900; color: var(--green); width: 14px; flex-shrink: 0; }
.prod-foot  { display: flex; align-items: center; justify-content: space-between; padding: 14px 24px; border-top: 1px solid var(--border); background: var(--bg); }
.prod-price { font-size: 21px; font-weight: 900; color: var(--text); letter-spacing: -.02em; margin: 0; }
.prod-price sup  { font-size: 12px; font-weight: 700; color: var(--muted); vertical-align: super; margin-right: 2px; letter-spacing: .02em; }
.prod-price strong { font-size: 21px; }
.prod-price span { font-size: 12px; color: var(--muted); font-weight: 500; }
.prod-price span em { font-style: normal; font-size: 10px; opacity: .75; }
.prod-link  { font-size: 13px; font-weight: 700; color: var(--blue); display: flex; align-items: center; gap: 4px; transition: gap .15s; }
.prod-link:hover { gap: 7px; }

/* ══════════════════════════════════════
   SCHWEIZER SICHERHEIT — Dark Section
══════════════════════════════════════ */
/* Dunkle Sektionen — Aurora direkt im background, kein ::before der hover blockiert */
.s-dark {
  background:
    radial-gradient(ellipse 100% 70% at 20% 30%, rgba(10,80,200,.55) 0%, transparent 55%),
    radial-gradient(ellipse 80% 60% at 80% 70%, rgba(0,60,180,.45) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 50% 0%,  rgba(0,40,140,.5)  0%, transparent 60%),
    radial-gradient(ellipse 70% 50% at 15% 50%, rgba(0,120,230,.2)  0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 85% 30%, rgba(20,100,220,.18) 0%, transparent 55%),
    #04091a;
  position: relative; overflow: hidden;
}
.s-dark::before { display: none; }
.s-dark::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(60,177,243,.55) 30%, rgba(0,152,239,.85) 50%, rgba(60,177,243,.55) 70%, transparent 100%);
  pointer-events: none;
}
.s-light { background: var(--bg); }
.ch-grid  { display: grid; grid-template-columns: 1fr 480px; gap: 80px; align-items: center; position: relative; z-index: 1; }
.ch-tag   { display: inline-flex; align-items: center; gap: 8px; font-size: 10.5px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.72); background: rgba(255,255,255,.09); border: 1.5px solid rgba(255,255,255,.16); padding: 5px 14px; border-radius: 100px; margin-bottom: 20px; }
.ch-h     { font-size: clamp(30px,3.8vw,48px); font-weight: 900; color: #fff; letter-spacing: -.03em; line-height: 1.1; margin-bottom: 18px; }
.ch-h em  { font-style: normal; color: var(--blue-brand); }
.ch-sub   { font-size: 15.5px; color: rgba(255,255,255,.42); line-height: 1.72; margin-bottom: 36px; max-width: 460px; }
.ch-feats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 36px; }
.ch-feat  { display: flex; align-items: center; gap: 10px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); border-radius: 11px; padding: 14px 15px; transition: .15s; }
.ch-feat:hover { background: rgba(255,255,255,.08); }
.ch-feat-dot  { width: 32px; height: 32px; border-radius: 9px; background: rgba(60,177,243,.14); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ch-feat-dot svg { width: 15px; height: 15px; fill: none; stroke: var(--blue-brand); stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.ch-feat-text { font-size: 12.5px; font-weight: 700; color: rgba(255,255,255,.72); }
.ch-card  { background: rgba(255,255,255,.06); border: 1.5px solid rgba(255,255,255,.1); border-radius: 22px; padding: 36px; overflow: hidden; position: relative; }
.ch-card::before { content: ''; position: absolute; top: -80px; right: -80px; width: 240px; height: 240px; border-radius: 50%; background: radial-gradient(circle,rgba(60,177,243,.1) 0%,transparent 70%); pointer-events: none; }
.ch-flag-row   { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.ch-flag       { width: 54px; height: 54px; border-radius: 13px; overflow: hidden; flex-shrink: 0; box-shadow: 0 4px 16px rgba(213,43,30,.4); }
.ch-flag svg   { width: 100%; height: 100%; }
.ch-card-title { font-size: 19px; font-weight: 800; color: #fff; line-height: 1.2; }
.ch-card-sub   { font-size: 12.5px; color: rgba(255,255,255,.38); margin-top: 3px; }
.ch-badges { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 24px; }
.ch-badge  { font-size: 10.5px; font-weight: 700; padding: 4px 12px; border-radius: 100px; background: rgba(60,177,243,.12); border: 1px solid rgba(60,177,243,.2); color: var(--blue-brand); }
.ch-stats  { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.chs       { background: rgba(255,255,255,.05); border-radius: 10px; padding: 14px; text-align: center; }
.chs-val   { font-size: 25px; font-weight: 900; color: #fff; line-height: 1; margin-bottom: 4px; }
.chs-lbl   { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: rgba(255,255,255,.3); }

/* ══════════════════════════════════════
   BENTO
══════════════════════════════════════ */
.bento { display: grid; grid-template-columns: repeat(12,1fr); gap: 16px; }
.bc {
  background: #fff; border-radius: 20px; padding: 28px; overflow: hidden; position: relative;
  transition: all .2s var(--ease); outline: 1.5px solid var(--border); border: none;
  transform: translateZ(0); will-change: transform;
}
.bc:hover { box-shadow: var(--shadow-md); transform: translateY(-2px) translateZ(0); }
.bc-1 { grid-column: span 5; background: var(--dark); outline: none; }
.bc-2 { grid-column: span 4; } .bc-3 { grid-column: span 3; }
.bc-4 { grid-column: span 3; } .bc-5 { grid-column: span 4; }
.bc-6 { grid-column: span 5; }
.bc-big   { font-size: 52px; font-weight: 900; letter-spacing: -.04em; line-height: 1; margin-bottom: 6px; }
.bc-title { font-size: 15px; font-weight: 800; margin-bottom: 6px; letter-spacing: -.01em; }
.bc-text  { font-size: 13px; line-height: 1.62; }
.bc-1 .bc-big,.bc-1 .bc-title { color: #fff; }
.bc-1 .bc-text { color: rgba(255,255,255,.38); }
.bc-1::before { content: ''; position: absolute; bottom: -30px; right: -30px; width: 150px; height: 150px; border-radius: 50%; background: radial-gradient(circle,rgba(60,177,243,.18) 0%,transparent 70%); }
.swiss-mini { display: flex; align-items: center; gap: 9px; margin-top: 18px; }
.swiss-mini svg  { width: 26px; height: 26px; border-radius: 5px; }
.swiss-mini span { font-size: 10px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; color: rgba(255,255,255,.35); }
.ub-row { display: flex; gap: 3.5px; align-items: flex-end; height: 40px; margin: 14px 0 6px; }
.ub     { width: 13px; border-radius: 3px; background: var(--green); }
.ub.h1{height:20px;opacity:.5} .ub.h2{height:26px;opacity:.65} .ub.h3{height:32px;opacity:.75}
.ub.h4{height:36px;opacity:.85} .ub.h5{height:40px;opacity:1}  .ub.h6{height:30px;opacity:.72}
.ub-note { font-size: 11px; color: var(--muted); }
.speed-bar  { height: 6px; background: #f0f5fa; border-radius: 100px; overflow: hidden; margin: 14px 0 7px; }
.speed-fill { width: 78%; height: 100%; background: linear-gradient(90deg,var(--blue-dd),var(--blue-brand)); border-radius: 100px; animation: gwSpeedAnim 2s ease-out forwards; }
@keyframes gwSpeedAnim { from{width:0} to{width:78%} }
.yr-track  { height: 5px; background: #f0f5fa; border-radius: 100px; overflow: hidden; margin: 14px 0 7px; }
.yr-fill   { height: 100%; background: linear-gradient(90deg,var(--blue-dd),var(--blue)); border-radius: 100px; width: 87%; }
.yr-labels { display: flex; justify-content: space-between; font-size: 10.5px; font-weight: 700; color: var(--muted); }
.bgp { display: flex; flex-direction: column; gap: 5px; margin: 14px 0; }
.bgp-line { height: 4px; border-radius: 100px; background: linear-gradient(90deg,var(--blue-dd),var(--blue-brand)); animation: gwBgpPulse 1.8s ease-in-out infinite; }
.bgp-line:nth-child(2){width:70%;animation-delay:.25s;opacity:.7}
.bgp-line:nth-child(3){width:45%;animation-delay:.5s;opacity:.45}
@keyframes gwBgpPulse { 0%,100%{opacity:.8} 50%{opacity:1;filter:brightness(1.12)} }

/* ══════════════════════════════════════
   STEPS
══════════════════════════════════════ */
.steps-wrap { position: relative; }
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 56px; position: relative; }
.steps::before { content:'';position:absolute;z-index:0;top:27px;left:calc(50%/3 + 8px);right:calc(50%/3 + 8px);height:1.5px;background:var(--border); }
.steps::after  { content:'';position:absolute;z-index:0;top:27px;left:calc(50%/3 + 8px);right:calc(50%/3 + 8px);height:1.5px;background:linear-gradient(90deg,transparent,var(--blue) 30%,var(--blue-brand) 50%,var(--blue) 70%,transparent);background-size:300% 100%;animation:gwShimmer 3s ease-in-out infinite;opacity:.7; }
@keyframes gwShimmer { 0%{background-position:100% 0} 100%{background-position:-200% 0} }
.step { text-align: center; position: relative; z-index: 1; }
.step-num { width:56px;height:56px;border-radius:50%;background:#fff;border:2px solid var(--border);display:flex;align-items:center;justify-content:center;font-size:19px;font-weight:900;color:var(--muted);margin:0 auto 24px;position:relative;z-index:1;transition:.25s var(--ease);box-shadow:0 2px 12px rgba(0,40,100,.07); }
.step:hover .step-num { border-color:var(--blue);color:var(--blue);box-shadow:0 0 0 6px rgba(0,152,239,.07); }
.step-3 .step-num { border-color:var(--green);color:var(--green);background:#f0fdf4; }
.step-title { font-size:18px;font-weight:800;color:var(--text);margin-bottom:10px; }
.step-text  { font-size:14px;color:var(--muted);line-height:1.72;max-width:280px;margin:0 auto; }

/* ══════════════════════════════════════
   STATS DARK
══════════════════════════════════════ */

.stat-v   { font-size:44px;font-weight:900;color:#fff;letter-spacing:-.04em;line-height:1;margin-bottom:7px; }
.stat-v sup { font-size:22px;font-weight:600;color:rgba(255,255,255,.35); }
.stat-l   { font-size:12px;color:rgba(255,255,255,.35);font-weight:600;margin-bottom:8px; }
.stat-p   { display:inline-block;font-size:10px;font-weight:800;letter-spacing:.07em;text-transform:uppercase;background:rgba(60,177,243,.15);color:var(--blue-brand);padding:3px 10px;border-radius:100px; }
.dark-cta { text-align:center;position:relative;z-index:1; }
.dark-cta h2 { font-size:clamp(26px,3.5vw,44px);font-weight:900;color:#fff;letter-spacing:-.03em;line-height:1.15;margin-bottom:14px; }
.dark-cta h2 em { font-style:normal;color:var(--blue-brand); }
.dark-cta p { font-size:15.5px;color:rgba(255,255,255,.38);margin-bottom:34px; }
.dark-cta-btns { display:flex;justify-content:center;gap:13px;flex-wrap:wrap; }

/* ══════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════ */
.clients-bar { display:flex;border:1.5px solid var(--border);border-radius:14px;overflow:hidden;margin-bottom:56px; }
.client-item { flex:1;display:flex;align-items:center;justify-content:center;padding:20px 16px;border-right:1px solid var(--border);transition:.15s; }
.client-item:last-child { border:none; }
.client-item:hover { background:#f9fbfe; }
.client-item img { height:28px;width:auto;max-width:120px;object-fit:contain;filter:grayscale(1);opacity:.5;transition:filter .2s,opacity .2s; }
.client-item:hover img { filter:grayscale(0);opacity:1; }
.tgrid { display:grid;grid-template-columns:repeat(3,1fr);gap:20px;margin-bottom:40px; }
.tcard { background:#fff;border:1.5px solid var(--border);border-radius:18px;padding:30px;display:flex;flex-direction:column;gap:14px;transition:.22s var(--ease); }
.tcard:hover { transform:translateY(-3px);box-shadow:var(--shadow-md); }
.t-stars { color:#f59e0b;font-size:15px;letter-spacing:1.5px; }
.tcard p { font-size:14.5px;color:var(--text-2);line-height:1.72;font-style:italic;flex:1; }
.tcard-author { font-size:12px;color:var(--muted);font-weight:700; }
.rwrap { display:grid;grid-template-columns:1fr 1fr;gap:20px;margin-bottom:32px; }
.rcard { border-radius:18px;padding:28px;display:flex;align-items:center;gap:20px;cursor:pointer;transition:filter .18s,transform .18s;color:inherit;text-decoration:none; }
.rcard:hover { filter:brightness(1.07);transform:translateY(-2px); }
.rcard-tp { background:#00b67a; } .rcard-ht { background:var(--blue); }
.rcard-score { font-size:56px;font-weight:900;color:#fff;letter-spacing:-.04em;line-height:1; }
.rcard-div   { width:1.5px;height:68px;background:rgba(255,255,255,.2);flex-shrink:0; }
.rcard-r     { display:flex;flex-direction:column;gap:4px; }
.rcard-name  { font-size:10px;font-weight:800;letter-spacing:.09em;text-transform:uppercase;color:rgba(255,255,255,.5); }
.rcard-extra { font-size:12px;font-weight:700;color:rgba(255,255,255,.75); }
.rcard-note  { font-size:11px;color:rgba(255,255,255,.4);font-style:italic;margin-top:4px;line-height:1.5; }

/* ══════════════════════════════════════
   ZIELGRUPPE
══════════════════════════════════════ */
.zg-grid { display:grid;grid-template-columns:repeat(4,1fr);gap:16px; }
.zg-card { background:#fff;border:1.5px solid var(--border);border-radius:20px;padding:28px;display:flex;flex-direction:column;position:relative;overflow:hidden;transition:.25s var(--ease); }
.zg-card::before { content:'';position:absolute;top:0;left:0;right:0;height:3px;opacity:0;transition:.25s;border-radius:20px 20px 0 0; }
.zg-card:hover { transform:translateY(-4px);box-shadow:var(--shadow-lg); }
.zg-card:hover::before { opacity:1; }
.zg-1::before{background:linear-gradient(90deg,var(--blue),var(--blue-brand))}
.zg-2::before{background:linear-gradient(90deg,#059669,#34d399)}
.zg-3::before{background:linear-gradient(90deg,#5b21b6,#a78bfa)}
.zg-4::before{background:linear-gradient(90deg,#c77700,#fbbf24)}
.zg-ico { width:50px;height:50px;border-radius:13px;display:flex;align-items:center;justify-content:center;margin-bottom:18px;flex-shrink:0; }
.zg-ico svg { width:23px;height:23px;fill:none;stroke-width:1.7;stroke-linecap:round;stroke-linejoin:round; }
.zg-1 .zg-ico{background:#dbeafe} .zg-1 .zg-ico svg{stroke:#1e40af}
.zg-2 .zg-ico{background:#d1fae5} .zg-2 .zg-ico svg{stroke:#065f46}
.zg-3 .zg-ico{background:#ede9fe} .zg-3 .zg-ico svg{stroke:#5b21b6}
.zg-4 .zg-ico{background:#fef3c7} .zg-4 .zg-ico svg{stroke:#92400e}
.zg-title { font-size:17px;font-weight:800;color:var(--text);margin-bottom:8px; }
.zg-text  { font-size:13.5px;color:var(--muted);line-height:1.65;flex:1;margin-bottom:18px; }
.zg-feats { display:flex;flex-direction:column;gap:7px;margin-bottom:18px; }
.zg-feat  { font-size:12.5px;color:var(--text-2);display:flex;align-items:center;gap:8px; }
.zg-feat::before { content:'✓';font-size:10.5px;font-weight:900;color:var(--green);width:16px;flex-shrink:0; }
.zg-link  { font-size:13px;font-weight:700;color:var(--blue);display:inline-flex;align-items:center;gap:4px;margin-top:auto;transition:.15s; }
.zg-link:hover { gap:7px; }

/* ══════════════════════════════════════
   VERGLEICH
══════════════════════════════════════ */
.cmp-wrap { border-radius:16px;overflow:hidden;border:1.5px solid var(--border);background:#fff;box-shadow:0 4px 24px rgba(0,40,100,.07); }
.cmp-head { display:grid;grid-template-columns:240px 1fr 1fr 1fr; }
.cmp-hcell { padding:16px 22px;font-size:10.5px;font-weight:800;letter-spacing:.1em;text-transform:uppercase;color:var(--muted);background:var(--bg);border-bottom:1.5px solid var(--border); }
.cmp-hcell.hl { background:var(--blue-d);color:#fff;display:flex;align-items:center;gap:6px; }
.cmp-row  { display:grid;grid-template-columns:240px 1fr 1fr 1fr;border-top:1px solid var(--border); }
.cmp-row:hover { background:#f8faff; }
.cmp-cell { padding:15px 22px;font-size:13.5px;color:var(--text-2);display:flex;align-items:center;gap:8px;line-height:1.4; }
.cmp-cell.feat { font-weight:700;color:var(--text);font-size:14px; }
.cmp-cell.hl   { color:var(--blue-d);font-weight:600;background:rgba(0,116,192,.04); }
/* Vergleichstabelle: .ok/.no/.so kommen aus pricing.css (geladen via $extraCSS)
   .cmp-vals-wrap, .cmp-hcell, .cmp-cell-label — exakt wie product_webhosting.php */
.cmp-vals-wrap { display: contents; }
.cmp-footer { padding:12px 22px;font-size:11px;color:var(--muted);background:var(--bg);border-top:1px solid var(--border);text-align:center; }

/* ══════════════════════════════════════
   BLOG
══════════════════════════════════════ */
.blog-grid { display:grid;grid-template-columns:repeat(3,1fr);gap:22px; }
.blog-card { border:1.5px solid var(--border);border-radius:18px;overflow:hidden;background:#fff;display:flex;flex-direction:column;transition:.22s var(--ease);color:inherit; }
.blog-card:hover { transform:translateY(-3px);box-shadow:var(--shadow-md); }
.blog-img  { height:164px;display:flex;align-items:center;justify-content:center;position:relative;overflow:hidden; }
.blog-body { padding:22px;flex:1;display:flex;flex-direction:column;gap:10px; }
.blog-tag  { display:inline-block;font-size:10.5px;font-weight:800;letter-spacing:.1em;text-transform:uppercase;color:var(--blue-d);background:rgba(0,152,239,.08);border:1px solid rgba(0,152,239,.15);padding:3px 10px;border-radius:100px; }
.blog-title { font-size:15px;font-weight:700;color:var(--text);line-height:1.4;flex:1; }
.blog-foot { display:flex;justify-content:space-between;align-items:center;margin-top:auto; }
.blog-date { font-size:11.5px;color:var(--muted); }
.blog-read { font-size:12.5px;font-weight:700;color:var(--blue); }

/* ══════════════════════════════════════
   FINALER CTA
══════════════════════════════════════ */
.final { background:var(--dark);padding:96px 0;text-align:center;position:relative;overflow:hidden; }
.final::before { content:'';position:absolute;inset:0;background:radial-gradient(ellipse 80% 120% at 50% 110%,rgba(0,100,200,.28) 0%,transparent 60%);pointer-events:none; }
.final-inner { position:relative;z-index:1;max-width:720px;margin:0 auto; }
.final-h    { font-size:clamp(32px,4.5vw,58px);font-weight:900;color:#fff;letter-spacing:-.04em;line-height:1.07;margin-bottom:16px; }
.final-h em { font-style:normal;color:var(--blue-brand); }
.final-p    { font-size:16.5px;color:rgba(255,255,255,.38);line-height:1.7;margin-bottom:40px; }
.final-btns { display:flex;justify-content:center;gap:13px;flex-wrap:wrap; }
.btn-white      { background:#fff;color:var(--blue-d);font-weight:800;box-shadow:0 4px 20px rgba(0,0,0,.15); }
.btn-white:hover { box-shadow:0 6px 28px rgba(0,0,0,.2);transform:translateY(-1px); }
.btn-ghost-w     { background:rgba(255,255,255,.08);color:#fff;border:1.5px solid rgba(255,255,255,.22); }
.btn-ghost-w:hover { background:rgba(255,255,255,.15);border-color:rgba(255,255,255,.4); }

/* ══════════════════════════════════════
   KONTAKT
══════════════════════════════════════ */
.contact-section { background:var(--bg); }
.contact-card { display:grid;grid-template-columns:1fr 1.3fr;border-radius:22px;overflow:hidden;box-shadow:0 20px 60px rgba(0,40,100,.14),0 4px 16px rgba(0,40,100,.07);max-width:1100px;margin:0 auto; }
.contact-left { background:linear-gradient(150deg,#0a2a5e 0%,#0d3a7a 40%,#1a55a8 100%);padding:52px 44px;position:relative;overflow:hidden;display:flex;flex-direction:column; }
.contact-left::before { content:'';position:absolute;bottom:-40px;left:-20px;right:-20px;height:120px;background:linear-gradient(180deg,transparent,rgba(8,20,60,.6));z-index:0; }
.contact-wave { position:absolute;bottom:0;left:0;right:0;z-index:1;opacity:.18; }
.cl-badge { display:inline-flex;align-items:center;gap:7px;font-size:10px;font-weight:800;letter-spacing:.12em;text-transform:uppercase;color:rgba(255,255,255,.7);background:rgba(255,255,255,.1);border:1px solid rgba(255,255,255,.2);padding:6px 14px;border-radius:100px;margin-bottom:24px;width:fit-content;position:relative;z-index:2; }
.contact-left h2 { font-size:clamp(24px,2.8vw,34px);font-weight:900;color:#fff;letter-spacing:-.025em;line-height:1.2;margin-bottom:12px;position:relative;z-index:2; }
.contact-left > p { font-size:14px;color:rgba(255,255,255,.52);line-height:1.7;margin-bottom:36px;position:relative;z-index:2; }
.cl-list  { display:flex;flex-direction:column;gap:16px;margin-bottom:32px;flex:1;position:relative;z-index:2; }
.cl-item  { display:flex;align-items:flex-start;gap:14px; }
.cl-ico   { width:40px;height:40px;border-radius:11px;flex-shrink:0;background:rgba(255,255,255,.12);border:1px solid rgba(255,255,255,.18);display:flex;align-items:center;justify-content:center; }
.cl-ico svg { width:17px;height:17px;fill:none;stroke:#fff;stroke-width:1.9;stroke-linecap:round;stroke-linejoin:round; }
.cl-label { font-size:10px;font-weight:800;letter-spacing:.08em;text-transform:uppercase;color:rgba(255,255,255,.42);margin-bottom:2px; }
.cl-val   { font-size:15px;font-weight:700;color:#fff;line-height:1.3; }
.cl-chips { display:flex;flex-wrap:wrap;gap:8px;position:relative;z-index:2; }
.cl-chip  { font-size:11.5px;font-weight:700;padding:6px 14px;border-radius:100px;background:rgba(255,255,255,.1);border:1px solid rgba(255,255,255,.18);color:rgba(255,255,255,.8); }
.contact-right { background:#fff;padding:52px 44px; }
.cf-title { font-size:22px;font-weight:800;color:var(--text);margin-bottom:5px;letter-spacing:-.02em; }
.cf-sub   { font-size:13.5px;color:var(--muted);margin-bottom:30px;line-height:1.5; }
.form-row { display:grid;grid-template-columns:1fr 1fr;gap:14px; }
.form-g   { display:flex;flex-direction:column;gap:6px;margin-bottom:14px; }
.form-g label { font-size:12.5px;font-weight:700;color:var(--text-2); }
.form-g input,.form-g textarea,.form-g select { padding:12px 14px;border-radius:10px;border:1.5px solid var(--border);font-family:var(--font);font-size:14px;color:var(--text);background:#fff;outline:none;transition:.15s; }
.form-g input:focus,.form-g textarea:focus { border-color:var(--blue);box-shadow:0 0 0 3px rgba(0,152,239,.09); }
.form-g textarea { min-height:110px;resize:vertical; }
.form-p { font-size:11px;color:var(--muted);text-align:center;margin-top:14px;line-height:1.6; }
.form-p a { color:var(--blue);text-decoration:underline; }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media(max-width:1060px){
  .hero-card{max-width:480px}
  .ch-grid{grid-template-columns:1fr;gap:48px}
  .bento{grid-template-columns:repeat(6,1fr)}
  .bc-1,.bc-2,.bc-3,.bc-4,.bc-5,.bc-6{grid-column:span 3}
  .zg-grid{grid-template-columns:repeat(2,1fr)}
  /* Tabelle auf Tablet ausblenden → Mobile-Cards zeigen */
  .cmp-head,.cmp-row{display:none}
  .cmp-mobile{display:flex !important}
}
@media(max-width:740px){
  /* !important nötig um #probleme/.blog overrides zu schlagen */
  #probleme .prob-grid,
  .prob-grid { grid-template-columns: 1fr !important; }
  /* Prob-Karte auf Mobile: vertikal statt horizontal */
  #probleme .prob-grid .prob-card,
  .prob-card { flex-direction: column !important; }
  .prob-accent { width: 100% !important; height: 5px !important; flex-shrink: 0; }

  #blog .blog-grid,
  .blog-grid { grid-template-columns: 1fr !important; }

  .prod-grid,.prod-grid-2,.tgrid,.rwrap,.steps,.zg-grid{grid-template-columns:1fr}
  .clients-bar{display:none}
  .bento{grid-template-columns:1fr}
  .bc-1,.bc-2,.bc-3,.bc-4,.bc-5,.bc-6{grid-column:span 1}
  .ch-feats{grid-template-columns:1fr}
  .steps::before,.steps::after{display:none}
  .contact-card{grid-template-columns:1fr}
  .contact-left,.contact-right{padding:36px 28px}
}

/* ══════════════════════════════════════
   VERGLEICHSTABELLE MOBILE — Card-Layout
   (sichtbar ab max-width:1060px statt Tabelle)
══════════════════════════════════════ */
.cmp-mobile {
  display: none;
  flex-direction: column;
  gap: 12px;
}
.cmp-m-card {
  border-radius: 14px;
  overflow: hidden;
  border: 1.5px solid var(--border);
  background: #fff;
}
.cmp-m-head {
  padding: 12px 18px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
  background: var(--bg);
  color: var(--muted);
  border-bottom: 1px solid var(--border);
}
.cmp-m-card.hl-card .cmp-m-head {
  background: var(--blue-d);
  color: #fff;
}
.cmp-m-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 11px 18px;
  border-bottom: 1px solid var(--border);
  gap: 12px;
}
.cmp-m-row:last-child { border: none; }
.cmp-m-feat { font-size: 12px; font-weight: 700; color: var(--muted); flex-shrink: 0; width: 40%; }
.cmp-m-val  { font-size: 12.5px; color: var(--text-2); display: flex; align-items: center; gap: 6px; text-align: right; flex: 1; justify-content: flex-end; }
.hl-card .cmp-m-val { color: var(--blue-d); font-weight: 600; }

/* ══════════════════════════════════════
   OVERRIDES — main.css ID-Selektoren
   Diese Regeln müssen mit !important gewinnen weil main.css
   #probleme, #blog, #kontakt mit höherer Spezifität definiert.
══════════════════════════════════════ */

/* --- PROBLEME --- */
#probleme { background: var(--bg) !important; }
#probleme .prob-grid { grid-template-columns: 1fr 1fr !important; gap: 16px !important; }
#probleme .prob-card { display: flex !important; flex-direction: row !important; box-shadow: none !important; }
#probleme .prob-card::before { display: none !important; }
#probleme .prob-card::after  { display: none !important; }

/* --- BLOG --- */
#blog { background: var(--bg) !important; }
#blog .gw-h2   { color: var(--text) !important; }
#blog .gw-sub  { color: var(--muted) !important; }
#blog .gw-label { color: var(--blue-d) !important; background: rgba(0,152,239,.08) !important; border-color: rgba(0,152,239,.18) !important; }
#blog .blog-grid { grid-template-columns: repeat(3, 1fr) !important; gap: 22px !important; }
#blog .blog-card { background: #fff !important; border: 1.5px solid var(--border) !important; color: inherit !important; }
#blog .blog-card:hover { transform: translateY(-3px) !important; box-shadow: var(--shadow-md) !important; border-color: var(--border) !important; }
#blog .blog-card:nth-child(1) .blog-img { height: 164px !important; }
#blog .blog-tag   { background: rgba(0,152,239,.08) !important; color: var(--blue-d) !important; border: 1px solid rgba(0,152,239,.15) !important; font-size: 10.5px !important; }
#blog .blog-title { color: var(--text) !important; font-size: 15px !important; }
#blog .blog-date  { color: var(--muted) !important; }
#blog .blog-read  { color: var(--blue) !important; }

/* --- KONTAKT --- */
#kontakt, .contact-section { background: var(--bg) !important; }
/* .contact-card: border:none überschreibt jeden externen Rahmen */
.contact-card,
#kontakt .contact-card,
.contact-section .contact-card {
  display: grid !important;
  grid-template-columns: 1fr 1.3fr !important;
  border-radius: 22px !important;
  max-width: 1100px !important;
  margin: 0 auto !important;
  overflow: hidden !important;
  box-shadow: 0 20px 60px rgba(0,40,100,.14), 0 4px 16px rgba(0,40,100,.07) !important;
  border: none !important;
  outline: none !important;
}

/* ══════════════════════════════════════
   GEZIELTE OVERRIDES — main.css Konflikte
   (Analysiert aus main.css Quellcode)
══════════════════════════════════════ */

/* BLOG: main.css setzt #blog { background: #060f1e } → dunkel
   Unsere Override-Klassen in !important erzwingen hellen Hintergrund */
#blog,
section#blog.section { background: var(--bg) !important; }
#blog .section-header .gw-h2  { color: var(--text) !important; }
#blog .section-header .gw-sub { color: var(--muted) !important; }
#blog .section-header .gw-label {
  color: var(--blue-d) !important;
  background: rgba(0,152,239,.08) !important;
  border-color: rgba(0,152,239,.18) !important;
}

/* main.css .blog-card hat dunkles Dark-Theme */
#blog .blog-grid .blog-card {
  background: #fff !important;
  border: 1.5px solid var(--border) !important;
  color: var(--text) !important;
}
/* main.css macht Karte 1 höher (.blog-card:nth-child(1) .blog-img = 210px) → alle gleich */
#blog .blog-grid .blog-card .blog-img { height: 164px !important; }
/* main.css gibt jeder Karte andere Tag-Farbe (blue/amber/purple) → alle gleich blau */
#blog .blog-grid .blog-card .blog-tag {
  background: rgba(0,152,239,.08) !important;
  color: var(--blue-d) !important;
  border: 1px solid rgba(0,152,239,.15) !important;
  font-size: 10.5px !important;
  padding: 3px 10px !important;
  border-radius: 100px !important;
  display: inline-block !important;
  width: auto !important;
}
#blog .blog-grid .blog-card .blog-title {
  color: var(--text) !important;
  font-size: 15px !important;
  font-weight: 700 !important;
}
#blog .blog-grid .blog-card .blog-date { color: var(--muted) !important; }
#blog .blog-grid .blog-card .blog-read { color: var(--blue) !important; }

/* BLOG BUTTONS: main.css überschreibt .btn-outline im #blog Kontext */
#blog .btn-outline {
  background: transparent !important;
  border-color: var(--border) !important;
  color: var(--blue) !important;
}

/* PROBLEME: main.css hat .prob-grid repeat(4,1fr) → Override auf 2 Spalten */
#probleme,
section#probleme.section { background: var(--bg) !important; }
#probleme .prob-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 16px !important;
}
/* main.css .prob-card hat flex-direction:column — wir brauchen row */
#probleme .prob-grid .prob-card {
  display: flex !important;
  flex-direction: row !important;
  padding: 0 !important;
  overflow: hidden !important;
  box-shadow: none !important;
  border: 1.5px solid var(--border) !important;
}
/* main.css ::before zeichnet farbigen linken Streifen — unsere .prob-accent macht das */
#probleme .prob-grid .prob-card::before,
#probleme .prob-grid .prob-card::after { display: none !important; }

/* ══════════════════════════════════════
   KLASSEN-ALIASE
   home.php verwendet -w Suffix, main.css verwendet -white Suffix
══════════════════════════════════════ */
.gw-h2-w          { color: #fff; }
.gw-h2-w em       { color: var(--blue-brand); }
.gw-sub-w         { color: rgba(255,255,255,.45); }
.gw-label-w       { color: rgba(255,255,255,.72); background: rgba(255,255,255,.09); border-color: rgba(255,255,255,.16); }
.s-dark .gw-h2    { color: #fff; }
.s-dark .gw-h2 em { color: var(--blue-brand); }
.s-dark .gw-sub   { color: rgba(255,255,255,.45); }
.s-dark .gw-label { color: rgba(255,255,255,.72); background: rgba(255,255,255,.09); border-color: rgba(255,255,255,.16); }

/* ══════════════════════════════════════
   MOBILE OVERRIDES — ganz am Ende damit
   sie die !important ID-Selektoren oben schlagen
══════════════════════════════════════ */
@media(max-width:740px){

  /* PROBLEME: 1 Spalte, Karte vertikal */
  #probleme .prob-grid,
  #probleme .prob-grid { grid-template-columns: 1fr !important; }

  #probleme .prob-grid .prob-card {
    flex-direction: column !important;
    min-height: 0 !important;
  }
  #probleme .prob-grid .prob-card .prob-accent {
    width: 100% !important;
    height: 5px !important;
    min-height: 0 !important;
    flex-shrink: 0 !important;
  }
  #probleme .prob-grid .prob-card .prob-inner {
    padding: 20px !important;
  }

  /* BLOG: 1 Spalte */
  #blog .blog-grid { grid-template-columns: 1fr !important; }
  #blog .blog-grid .blog-card .blog-img { height: 180px !important; }
}

/* ══════════════════════════════════════
   HW-STATS — eigene Klassen ohne main.css Konflikte
══════════════════════════════════════ */
.hw-stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 72px;
}
.hw-stat {
  padding: 34px 24px;
  border-right: 1px solid rgba(255,255,255,.1);
  text-align: center;
  transition: background-color .2s ease;
  background-color: transparent;
}
.hw-stat:last-child { border-right: none; }
.hw-stat:hover { background-color: rgba(255,255,255,.08); }
.hw-stat-v {
  font-size: 44px; font-weight: 900; color: #fff;
  letter-spacing: -.04em; line-height: 1; margin-bottom: 7px;
}
.hw-stat-v sup { font-size: 22px; font-weight: 600; color: rgba(255,255,255,.35); }
.hw-stat-l { font-size: 12px; color: rgba(255,255,255,.35); font-weight: 600; margin-bottom: 8px; }
.hw-stat-p {
  display: inline-block; font-size: 10px; font-weight: 800;
  letter-spacing: .07em; text-transform: uppercase;
  background: rgba(60,177,243,.15); color: var(--blue-brand);
  padding: 3px 10px; border-radius: 100px;
}
@media(max-width:1060px){ .hw-stats { grid-template-columns: repeat(3,1fr); } }
@media(max-width:740px)  { .hw-stats { grid-template-columns: repeat(2,1fr); }
  .hw-stat:nth-child(3) { border-right: none; }
  .hw-stat:nth-child(3), .hw-stat:nth-child(4), .hw-stat:nth-child(5) { border-top: 1px solid rgba(255,255,255,.1); }
}

/* ══════════════════════════════════════
   HW-BENTO — Warum Galaxyweb
   Eigene Klassen ohne main.css Konflikte
══════════════════════════════════════ */
.hw-bento {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}
.hw-bc {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform .2s, box-shadow .2s;
  overflow: hidden;
}
.hw-bc:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,40,100,.10); }

/* Swiss — grosse Kachel links oben, überspannt 2 Zeilen */
.hw-bc-swiss {
  grid-row: span 2;
  background: linear-gradient(160deg, #0a2a5e 0%, #0d3a7a 50%, #1a55a8 100%);
  border-color: transparent;
}
.hw-bc-swiss .hw-bc-num  { color: #fff; }
.hw-bc-swiss .hw-bc-title { color: #fff; }
.hw-bc-swiss .hw-bc-text  { color: rgba(255,255,255,.55); }

.hw-bc-flag {
  display: flex; align-items: center; gap: 10px;
  font-size: 10px; font-weight: 800; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(255,255,255,.5);
  margin-bottom: 8px;
}
.hw-bc-flag svg { width: 28px; height: 28px; border-radius: 5px; flex-shrink: 0; }

/* Typo */
.hw-bc-num   { font-size: 48px; font-weight: 900; letter-spacing: -.04em; line-height: 1; }
.hw-bc-title { font-size: 15px; font-weight: 800; color: var(--text); letter-spacing: -.01em; }
.hw-bc-text  { font-size: 13px; color: var(--muted); line-height: 1.65; }
.hw-bc-sub   { font-size: 11.5px; color: var(--muted); }

/* Uptime Bars */
.hw-ub-row { display: flex; gap: 4px; align-items: flex-end; height: 44px; margin: 4px 0; }
.hw-ub     { width: 14px; border-radius: 3px; background: var(--green); opacity: .85; flex-shrink: 0; }

/* Speed bar */
.hw-speed-bar  { height: 6px; background: var(--border); border-radius: 100px; overflow: hidden; }
.hw-speed-fill { width: 78%; height: 100%; background: linear-gradient(90deg, var(--blue-dd), var(--blue)); border-radius: 100px; animation: hwSpeed 2s ease-out forwards; }
@keyframes hwSpeed { from{width:0} to{width:78%} }

/* BGP Lines */
.hw-bgp      { display: flex; flex-direction: column; gap: 5px; }
.hw-bgp-line { height: 4px; border-radius: 100px; background: linear-gradient(90deg, var(--blue-dd), var(--blue)); animation: hwBgp 1.8s ease-in-out infinite; }
.hw-bgp-line:nth-child(2) { animation-delay: .25s; opacity: .7; }
.hw-bgp-line:nth-child(3) { animation-delay: .5s;  opacity: .45; }
@keyframes hwBgp { 0%,100%{opacity:.8} 50%{opacity:1} }

/* Year bar */
.hw-yr-track  { height: 5px; background: var(--border); border-radius: 100px; overflow: hidden; }
.hw-yr-fill   { width: 87%; height: 100%; background: linear-gradient(90deg, var(--blue-dd), var(--blue)); border-radius: 100px; }
.hw-yr-labels { display: flex; justify-content: space-between; font-size: 10.5px; font-weight: 700; color: var(--muted); }

/* Responsive */
@media(max-width:1060px) {
  .hw-bento { grid-template-columns: 1fr 1fr; }
  .hw-bc-swiss { grid-row: span 1; }
}
@media(max-width:740px) {
  .hw-bento { grid-template-columns: 1fr; }
}

/* Hero-Card: keine schwebende Animation */
.hero-card { animation: none; }