/* ============================================================
   orbitq Design Lab — style.css  (V02.1 · HELLES THEME)
   Minimal Schwarz/Weiß + Cyan-Akzent.
   Quelle der Struktur: Figma-Wireframes (Home/Pakete/Hosting).
   ============================================================ */

/* ─── FONTS (lokal, wie Live-Site) ─── */
@font-face { font-family:'Inter'; font-style:normal; font-weight:400; font-display:swap; src:url('assets/fonts/inter-latin-400-normal.woff2') format('woff2'); }
@font-face { font-family:'Inter'; font-style:normal; font-weight:500; font-display:swap; src:url('assets/fonts/inter-latin-500-normal.woff2') format('woff2'); }
@font-face { font-family:'Inter'; font-style:normal; font-weight:600; font-display:swap; src:url('assets/fonts/inter-latin-600-normal.woff2') format('woff2'); }
@font-face { font-family:'Inter'; font-style:normal; font-weight:700; font-display:swap; src:url('assets/fonts/inter-latin-700-normal.woff2') format('woff2'); }
@font-face { font-family:'Inter'; font-style:normal; font-weight:800; font-display:swap; src:url('assets/fonts/inter-latin-800-normal.woff2') format('woff2'); }
@font-face { font-family:'Inter'; font-style:normal; font-weight:900; font-display:swap; src:url('assets/fonts/inter-latin-900-normal.woff2') format('woff2'); }

/* ─── TOKENS ─── */
:root {
  --bg:        #FFFFFF;
  --bg-alt:    #F4F7F6;   /* helle Sektionen / Karten */
  --bg-alt2:   #ECEFF1;
  --ink:       #0D0D0D;   /* Text & schwarze Buttons */
  --ink-soft:  #2A2E33;
  --muted:     #5A636C;
  --navy:      #0F2C59;   /* Links / Heading-Akzent */
  --cyan:      #00F5D4;   /* Akzent: nur als Fill/Grafik/Icon, nie Text auf Weiß */
  --cyan-dark: #0BB59B;   /* Cyan-Variante mit AA-Kontrast für feine Akzente auf Weiß */
  --line:      #E2E6E9;
  --line-2:    #D5DBE0;
  --radius:    16px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 2px rgba(13,13,13,0.06);
  --shadow-md: 0 12px 32px rgba(13,13,13,0.10);
  --shadow-lg: 0 24px 60px rgba(13,13,13,0.12);
  --ease:      cubic-bezier(0.2,0.8,0.2,1);
  --t:         0.25s cubic-bezier(0.2,0.8,0.2,1);
  --status-h:  36px;
  --nav-h:     72px;
}

/* ─── RESET ─── */
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; overflow-x:clip; }
body { font-family:'Inter',system-ui,sans-serif; background:var(--bg); color:var(--ink); line-height:1.6; overflow-x:hidden; overflow-wrap:break-word; -webkit-font-smoothing:antialiased; }
img,svg { display:block; max-width:100%; }
a { color:var(--navy); text-decoration:none; }
button { cursor:pointer; border:none; background:none; font-family:inherit; }
input,textarea { font-family:inherit; }
.container { max-width:1200px; margin:0 auto; padding:0 24px; }
.skip-link { position:absolute; left:-9999px; top:8px; background:var(--ink); color:#fff; padding:8px 16px; border-radius:8px; font-weight:600; z-index:9999; }
.skip-link:focus { left:8px; }

/* ─── BUTTONS ─── */
.btn { display:inline-flex; align-items:center; gap:8px; font-weight:700; font-size:15px; padding:14px 26px; border-radius:999px; transition:transform var(--t), box-shadow var(--t), background var(--t); white-space:nowrap; }
.btn-primary { background:var(--ink); color:#fff; }
.btn-primary:hover { transform:translateY(-2px); box-shadow:var(--shadow-md); }
.btn-accent { background:var(--cyan); color:var(--ink); }
.btn-accent:hover { transform:translateY(-2px); box-shadow:0 8px 28px rgba(0,245,212,0.4); }
.btn-ghost { background:transparent; color:var(--ink); border:1.5px solid var(--line-2); }
.btn-ghost:hover { border-color:var(--ink); }
.btn:active { transform:scale(0.97); transition-duration:100ms; }

/* ─── STATUS BAR ─── */
#nav-status { position:fixed; top:0; left:0; right:0; height:var(--status-h); background:var(--bg-alt); color:#030D1A; border-bottom:1px solid var(--line); font-size:12px; font-weight:600; letter-spacing:0.025em; display:flex; align-items:center; justify-content:center; gap:8px; z-index:201; transition:transform 0.4s var(--ease), opacity 0.4s var(--ease); }
#nav-status.hidden { transform:translateY(-100%); opacity:0; pointer-events:none; }
.status-dot { width:6px; height:6px; border-radius:50%; background:var(--cyan-dark); animation:pulse 2.4s ease-in-out infinite; }
@keyframes pulse { 0%,100%{opacity:1;} 50%{opacity:0.4;} }
@media (max-width:600px){ #nav-status{ display:none; } }

/* ─── NAVIGATION ─── */
#nav { position:fixed; top:var(--status-h); left:0; right:0; z-index:200; background:rgba(3,13,26,0.90); backdrop-filter:blur(10px); -webkit-backdrop-filter:blur(10px); border-bottom:1px solid rgba(255,255,255,0.06); transition:top 0.4s var(--ease), box-shadow 0.4s var(--ease), background 0.4s var(--ease); }
#nav.scrolled { top:0; background:rgba(3,13,26,0.96); box-shadow:0 6px 24px rgba(0,0,0,0.40); }
#nav .container { display:flex; align-items:center; justify-content:space-between; height:var(--nav-h); }
.nav-logo { display:flex; align-items:center; flex-shrink:0; font-weight:800; font-size:20px; letter-spacing:-0.02em; color:var(--ink); }
.nav-logo img { height:30px; width:auto; }
.nav-symbol { display:none; }
.nav-links { display:flex; list-style:none; gap:4px; }
.nav-link { position:relative; font-size:15px; font-weight:600; color:rgba(244,247,246,0.82); padding:8px 14px; transition:color 0.2s; }
.nav-link::after { content:''; position:absolute; left:14px; right:14px; bottom:2px; height:2px; background:var(--cyan); border-radius:2px; transform:scaleX(0); transform-origin:left; transition:transform 0.22s var(--ease); }
.nav-link:hover { color:#F4F7F6; }
.nav-link:hover::after, .nav-link.active::after { transform:scaleX(1); }
.nav-link.active { color:#F4F7F6; }
.nav-cta { display:inline-flex; align-items:center; gap:8px; background:var(--cyan); color:#030D1A; font-size:14px; font-weight:700; padding:10px 20px; border-radius:999px; transition:transform var(--t), box-shadow var(--t); }
.nav-cta svg { flex-shrink:0; }
.nav-cta:hover { transform:translateY(-2px); box-shadow:var(--shadow-md); }
.nav-cta:hover { transform:translateY(-2px); box-shadow:var(--shadow-md); }
.nav-burger { display:none; flex-direction:column; gap:5px; width:44px; height:44px; align-items:center; justify-content:center; }
.nav-burger span { width:22px; height:2px; background:#F4F7F6; border-radius:2px; transition:transform 0.4s var(--ease), opacity 0.3s; }
.nav-burger.open span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2){ opacity:0; }
.nav-burger.open span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }
@media (max-width:860px){
  .nav-links { display:none; }
  #nav .container { position:relative; }
  .nav-burger { display:flex; order:-1; }
  .nav-logo { position:absolute; left:50%; top:50%; transform:translate(-50%,-50%); }
  .nav-wordmark { display:none; }
  .nav-symbol { display:block; height:30px; width:auto; }
  .nav-cta { order:1; }
}

/* Mobile menu — linksbündige Liste mit Trennlinien (orbitq-Farben) */
#mobile-menu { display:flex; position:fixed; inset:0; z-index:1001; background:var(--bg); flex-direction:column; align-items:stretch; justify-content:flex-start; opacity:0; visibility:hidden; pointer-events:none; transition:opacity 0.3s ease, visibility 0.3s ease; }
#mobile-menu.open { opacity:1; visibility:visible; pointer-events:auto; }
.m-head { display:flex; align-items:center; justify-content:space-between; padding:20px 24px; border-bottom:1px solid var(--line); }
.m-wordmark { font-size:19px; font-weight:800; letter-spacing:-0.02em; color:var(--navy); }
.m-wordmark .accent2 { color:var(--cyan-dark); }
#mobile-menu .mobile-close { width:44px; height:44px; border:1px solid var(--line); border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:24px; line-height:1; color:var(--muted); background:var(--bg); flex-shrink:0; }
.m-list { display:flex; flex-direction:column; flex:1; overflow-y:auto; }
.m-list > a { padding:18px 24px; font-size:19px; font-weight:700; color:var(--navy); border-bottom:1px solid var(--line); }
.m-list > a:hover { background:var(--bg-alt); }
.m-foot { padding:16px 18px calc(16px + env(safe-area-inset-bottom)); border-top:1px solid var(--line); }
.m-whatsapp { display:flex; align-items:center; justify-content:center; gap:10px; width:100%; background:var(--cyan); color:#030D1A; font-weight:700; font-size:17px; padding:16px; border-radius:14px; }
.m-whatsapp svg { width:22px; height:22px; }

/* ─── HERO ─── */
.hero { position:relative; overflow:hidden;
  background:
    radial-gradient(900px 460px at 50% 16%, rgba(0,245,212,0.10), transparent 62%),
    linear-gradient(180deg, rgba(15,44,89,0.05), transparent 38%),
    var(--bg);
  padding:calc(var(--status-h) + var(--nav-h) + 64px) 0 72px; min-height:100vh; min-height:100dvh; display:flex; align-items:center; }
.hero-grid { display:grid; grid-template-columns:1.15fr 0.85fr; gap:48px; align-items:center; }
.eyebrow { display:inline-block; font-size:13px; font-weight:700; letter-spacing:0.08em; text-transform:uppercase; color:var(--cyan); background:var(--navy); border:1px solid var(--navy); padding:6px 14px; border-radius:999px; margin-bottom:20px; }
.hero h1 { font-size:clamp(34px,5vw,60px); font-weight:900; line-height:1.1; letter-spacing:-0.03em; color:var(--ink); margin-bottom:20px; }
.hero h1 .accent { background:linear-gradient(120deg, var(--navy), var(--cyan-dark)); -webkit-background-clip:text; background-clip:text; color:transparent; }

/* H1 zweite Zeile — Gradient-Text Navy → Cyan */
.hero h1 .h1-line2 {
  background:linear-gradient(120deg, var(--navy) 10%, var(--cyan) 100%);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
  display:inline;
}
.hero-sub { font-size:20px; font-weight:500; color:var(--muted); line-height:1.6; max-width:560px; margin-bottom:32px; }
.hero-ctas { display:flex; gap:12px; flex-wrap:wrap; }
.hero-visual { aspect-ratio:4/5; background:var(--bg-alt); border:1px solid var(--line); border-radius:24px; display:flex; align-items:center; justify-content:center; color:var(--muted); font-size:14px; }
@media (max-width:860px){
  .hero-grid { grid-template-columns:1fr; gap:32px; }
  .hero-visual { aspect-ratio:16/10; order:-1; }
}
/* Zentrierter Hero (Home / Layout 1) */
.hero-center { text-align:center; padding-bottom:80px; }
.hero-center h1 { max-width:920px; margin-left:auto; margin-right:auto; }
.hero-center .hero-sub { margin-left:auto; margin-right:auto; }
.hero-center .hero-ctas { justify-content:center; }

/* ─── SECTION COMMON ─── */
.section { padding:104px 0; overflow-x:hidden; }
.section > .container { width:100%; }
.section.alt { background:var(--bg-alt); }
/* Scroll-Offset für Anker-Links unter der fixen Navigation */
section[id], main [id] { scroll-margin-top: calc(var(--status-h) + var(--nav-h) + 16px); }
.section-head { max-width:640px; margin-bottom:48px; }
.section-head.center { margin-left:auto; margin-right:auto; text-align:center; }
.section-tag { display:inline-block; font-size:12px; font-weight:700; letter-spacing:0.08em; text-transform:uppercase; color:#fff; background:var(--navy); padding:5px 12px; border-radius:999px; margin-bottom:14px; }
.section-h2 { font-size:clamp(28px,3.6vw,44px); font-weight:800; letter-spacing:-0.03em; line-height:1.12; color:var(--ink); margin-bottom:14px; }
.section-lead { font-size:18px; color:var(--muted); line-height:1.6; }

/* ─── FEATURE / USP CARDS ─── */
.grid-3 { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.grid-2 { display:grid; grid-template-columns:repeat(2,1fr); gap:24px; }
.card { background:var(--bg); border:1px solid var(--line); border-radius:var(--radius); padding:28px 26px; transition:transform var(--t), box-shadow var(--t), border-color var(--t); }
.card:hover { transform:translateY(-3px); box-shadow:var(--shadow-md); border-color:var(--line-2); }
.card-icon { width:46px; height:46px; border-radius:12px; background:var(--ink); color:var(--cyan); display:flex; align-items:center; justify-content:center; margin-bottom:18px; }
.card-icon svg { width:24px; height:24px; }
.card h3 { font-size:19px; font-weight:800; letter-spacing:-0.01em; margin-bottom:10px; color:var(--ink); }
.card p { font-size:15px; color:var(--muted); line-height:1.65; }

/* round icon (Figma circles) */
.round-icons { display:grid; grid-template-columns:repeat(3,1fr); gap:32px; margin-top:8px; text-align:center; }
.round-icon { width:96px; height:96px; border-radius:50%; background:var(--bg-alt); border:1px solid var(--line); display:flex; align-items:center; justify-content:center; margin:0 auto 18px; color:var(--navy); }
.round-icon svg { width:38px; height:38px; }
.round-item p { font-size:17px; font-weight:700; color:var(--ink); line-height:1.35; max-width:280px; margin:0 auto; }

/* ─── PRICING CARDS ─── */
.pricing { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; align-items:stretch; }
.price-card { background:var(--bg); border:1px solid var(--line); border-radius:var(--radius); padding:30px 26px; display:flex; flex-direction:column; transition:transform var(--t), box-shadow var(--t); }
.price-card:hover { transform:translateY(-3px); box-shadow:var(--shadow-md); }
.price-card.featured { border:2px solid var(--ink); box-shadow:var(--shadow-md); }
.price-badge { align-self:flex-start; background:var(--cyan); color:var(--ink); font-size:11px; font-weight:800; letter-spacing:0.06em; text-transform:uppercase; padding:5px 12px; border-radius:999px; margin-bottom:14px; }
.price-name { font-size:22px; font-weight:800; letter-spacing:-0.02em; margin-bottom:6px; }
.price-desc { font-size:14px; color:var(--muted); line-height:1.55; margin-bottom:18px; min-height:42px; }
.price-amount { font-size:38px; font-weight:900; letter-spacing:-0.03em; line-height:1; color:var(--ink); }
.price-amount .per { font-size:16px; font-weight:500; color:var(--muted); }
.price-note { font-size:13px; color:var(--muted); margin:8px 0 22px; }
.price-features { list-style:none; display:flex; flex-direction:column; gap:11px; margin-bottom:24px; }
.price-features li { font-size:14px; color:var(--ink-soft); display:flex; gap:10px; line-height:1.45; }
.price-features li::before { content:""; width:16px; height:16px; flex-shrink:0; margin-top:1px; background-image:url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='8' cy='8' r='7' stroke='%230BB59B' stroke-width='1.4'/%3E%3Cpath d='M5 8l2 2 4-4' stroke='%230BB59B' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat:no-repeat; background-size:contain; }
.price-card .btn { margin-top:auto; justify-content:center; }
.price-footnote { font-size:12px; color:var(--muted); text-align:center; margin-top:24px; line-height:1.7; }

/* ─── PROCESS / ANSATZ ─── */
.steps { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.step { background:var(--bg); border:1px solid var(--line); border-radius:var(--radius); padding:26px; }
.step-num { display:inline-flex; align-items:center; justify-content:center; width:34px; height:34px; border-radius:50%; background:var(--ink); color:var(--cyan); font-weight:800; font-size:15px; margin-bottom:16px; }
.step h3 { font-size:18px; font-weight:800; margin-bottom:8px; }
.step p { font-size:15px; color:var(--muted); line-height:1.6; }

/* ─── ROADMAP TIMELINE (Mein Ansatz · Effekte wie Live-Site, hell) ─── */
.roadmap-timeline { position:relative; display:grid; grid-template-columns:repeat(3,1fr); gap:40px; margin-top:52px; }
.roadmap-timeline::before { content:''; position:absolute; top:9px; left:16.667%; right:16.667%; height:1px; background:linear-gradient(90deg, var(--cyan) 0%, rgba(0,245,212,0.35) 50%, var(--cyan) 100%); z-index:0; }
.roadmap-step { display:flex; flex-direction:column; align-items:center; text-align:center; }
.roadmap-dot { position:relative; z-index:1; width:18px; height:18px; border-radius:50%; background:var(--cyan); display:flex; align-items:center; justify-content:center; margin-bottom:16px; box-shadow:0 0 0 4px rgba(0,245,212,0.18), 0 0 14px rgba(0,245,212,0.55); transition:transform 0.2s ease, box-shadow 0.2s ease; flex-shrink:0; }
.roadmap-dot:hover { transform:scale(1.3); box-shadow:0 0 0 6px rgba(0,245,212,0.25), 0 0 22px rgba(0,245,212,0.7); }
.roadmap-dot-inner { width:6px; height:6px; border-radius:50%; background:#fff; }
.roadmap-badge { display:inline-block; white-space:nowrap; font-size:10px; font-weight:700; letter-spacing:0.08em; text-transform:uppercase; color:var(--cyan-dark); background:rgba(0,245,212,0.12); border:1px solid rgba(0,245,212,0.45); padding:3px 11px; border-radius:999px; margin-bottom:14px; }
.roadmap-step-body { display:flex; flex-direction:column; align-items:center; }
.roadmap-title { font-size:19px; font-weight:800; color:var(--ink); letter-spacing:-0.02em; line-height:1.2; margin-bottom:10px; }
.roadmap-desc { font-size:14px; color:var(--muted); line-height:1.65; max-width:280px; }
.signal-track { position:absolute; top:5px; left:16.667%; right:16.667%; height:8px; pointer-events:none; z-index:3; }
.signal-orb { position:absolute; top:0; left:0; width:8px; height:8px; border-radius:50%; background:var(--cyan); box-shadow:0 0 0 3px rgba(0,245,212,0.3), 0 0 14px 4px rgba(0,245,212,0.6), 0 0 28px 6px rgba(0,245,212,0.2); transform:translateX(-50%); opacity:0; animation:signal-travel 7s cubic-bezier(0.4,0,0.6,1) infinite; animation-delay:1.8s; }
@keyframes signal-travel { 0%{left:0%;opacity:0;transform:translateX(-50%) scale(0.7);} 7%{left:0%;opacity:1;transform:translateX(-50%) scale(1);} 78%{left:100%;opacity:1;transform:translateX(-50%) scale(1);} 85%{left:100%;opacity:0;transform:translateX(-50%) scale(0.7);} 100%{left:100%;opacity:0;transform:translateX(-50%) scale(0.7);} }
.roadmap-step:nth-child(2) .roadmap-dot { animation:dot-ping 7s ease infinite; animation-delay:2.0s; }
.roadmap-step:nth-child(3) .roadmap-dot { animation:dot-ping 7s ease infinite; animation-delay:4.9s; }
.roadmap-step:nth-child(4) .roadmap-dot { animation:dot-ping 7s ease infinite; animation-delay:7.5s; }
@keyframes dot-ping { 0%,4%,100%{ box-shadow:0 0 0 4px rgba(0,245,212,0.18), 0 0 14px rgba(0,245,212,0.5); } 1%{ box-shadow:0 0 0 7px rgba(0,245,212,0.35), 0 0 24px 6px rgba(0,245,212,0.8); transform:scale(1.4); } }
@media (max-width:640px){
  .roadmap-timeline { grid-template-columns:1fr; gap:0; }
  .roadmap-timeline::before { top:0; bottom:0; left:9px; right:auto; width:1px; height:100%; background:linear-gradient(180deg, var(--cyan) 0%, rgba(0,245,212,0.35) 50%, var(--cyan) 100%); }
  .signal-track, .signal-orb { display:none; }  /* wandernder Puls auf Mobil aus */
  .roadmap-step { flex-direction:row; align-items:flex-start; text-align:left; gap:18px; padding-bottom:32px; }
  .roadmap-step:last-child { padding-bottom:0; }
  .roadmap-step-body { align-items:flex-start; text-align:left; }
  .roadmap-dot { margin-bottom:0; }
  .roadmap-desc { max-width:none; }
}

/* ─── ABOUT (Über mich · Foto-Tilt + Trust-Pills, hell) ─── */
.about-grid { display:grid; grid-template-columns:240px 1fr; gap:52px; align-items:start; }
.about-visual { position:relative; }
.about-deco { position:absolute; bottom:0; left:0; width:200px; height:200px; z-index:0; opacity:0.05; pointer-events:none; color:var(--ink); }
.about-photo-wrap { position:relative; display:block; border-radius:24px; overflow:hidden; aspect-ratio:3/4; max-width:230px; z-index:1; transform:perspective(1200px) rotateY(-8deg) rotateX(4deg); box-shadow:0 8px 16px rgba(13,13,13,0.08), 0 24px 48px rgba(13,13,13,0.12), 0 64px 80px -16px rgba(13,13,13,0.18); transition:transform 0.5s var(--ease), box-shadow 0.5s var(--ease); }
.about-photo-wrap::before { content:''; position:absolute; inset:0; background:linear-gradient(135deg, rgba(0,245,212,0.22) 0%, transparent 55%); mix-blend-mode:screen; border-radius:inherit; z-index:1; pointer-events:none; }
@media (hover:hover) and (pointer:fine){ .about-photo-wrap:hover { transform:perspective(1200px) rotateY(-4deg) rotateX(2deg) translateY(-8px); box-shadow:0 12px 24px rgba(13,13,13,0.10), 0 36px 64px rgba(13,13,13,0.16), 0 80px 100px -16px rgba(13,13,13,0.22); } }
.about-photo { width:100%; height:100%; object-fit:cover; }
.h2-highlight { position:relative; display:inline-block; }
.h2-highlight::after { content:''; position:absolute; bottom:-4px; left:0; right:0; height:3px; background:linear-gradient(90deg, var(--navy), var(--cyan-dark)); border-radius:2px; }
.trust-pills { display:flex; flex-wrap:wrap; gap:10px; margin-top:28px; }
.trust-pill { display:flex; align-items:center; gap:8px; background:var(--bg-alt); border:1px solid var(--line); color:var(--muted); font-size:13px; font-weight:500; padding:8px 14px; border-radius:999px; transition:transform var(--t), box-shadow var(--t), border-color var(--t); }
.trust-pill:hover { transform:translateY(-2px); box-shadow:var(--shadow-sm); border-color:rgba(0,245,212,0.45); }
.trust-pill .dot { width:6px; height:6px; background:var(--cyan-dark); border-radius:50%; flex-shrink:0; }
@media (max-width:768px){
  .about-grid { grid-template-columns:1fr; gap:32px; }
  .about-photo-wrap { transform:none !important; margin:0 auto 8px; }
  .about-deco { display:none; }
}

/* ─── TEASER CTA row ─── */
.teaser-link { display:inline-flex; align-items:center; gap:8px; margin-top:24px; font-weight:700; color:var(--navy); }
.teaser-link svg { width:18px; height:18px; transition:transform var(--t); }
.teaser-link:hover svg { transform:translateX(4px); }
.cta-row { margin-top:30px; }
.cta-row .btn svg { width:18px; height:18px; }

/* ─── FAQ ─── */
.faq-wrap { max-width:780px; margin:0 auto; }
.faq-category { font-size:11px; font-weight:700; letter-spacing:0.1em; text-transform:uppercase; color:var(--navy); margin:40px 0 4px; }
.faq-wrap > .faq-category:first-child { margin-top:0; }
.faq-item { border-bottom:1px solid var(--line); }
.faq-trigger { display:flex; align-items:center; justify-content:space-between; gap:16px; width:100%; padding:20px 0; text-align:left; font-size:17px; font-weight:600; color:var(--ink); }
.faq-trigger:hover { color:var(--navy); }
.faq-trigger:focus-visible { outline:2px solid var(--navy); outline-offset:4px; border-radius:4px; }
.faq-chevron { flex-shrink:0; color:var(--navy); transition:transform 0.3s var(--ease); }
.faq-item.open .faq-chevron { transform:rotate(180deg); }
.faq-body { overflow:hidden; max-height:0; transition:max-height 0.4s var(--ease); }
.faq-item.open .faq-body { max-height:800px; }
.faq-body-inner { padding-bottom:22px; }
.faq-body-inner p { font-size:15px; line-height:1.75; color:var(--muted); }

/* ─── CONTACT ─── */
.contact-grid { display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:start; }
.contact-trust { display:flex; flex-direction:column; gap:14px; margin-top:24px; }
.contact-trust li { display:flex; gap:12px; align-items:flex-start; font-size:15px; color:var(--muted); list-style:none; }
.contact-trust li::before { content:""; width:18px; height:18px; flex-shrink:0; margin-top:2px; background-image:url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='8' cy='8' r='7' stroke='%230BB59B' stroke-width='1.4'/%3E%3Cpath d='M5 8l2 2 4-4' stroke='%230BB59B' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-size:contain; background-repeat:no-repeat; }
.contact-form { background:var(--bg-alt); border:1px solid var(--line); border-radius:var(--radius); padding:36px; }
.form-group { display:flex; flex-direction:column; gap:6px; margin-bottom:18px; }
.form-group label { font-size:13px; font-weight:600; color:var(--ink-soft); }
.form-group input, .form-group textarea { background:var(--bg); border:1px solid var(--line-2); border-radius:var(--radius-sm); padding:12px 14px; font-size:15px; color:var(--ink); transition:border-color 0.2s; }
.form-group input:focus, .form-group textarea:focus { outline:none; border-color:var(--navy); }
.form-group textarea { min-height:120px; resize:vertical; }
@media (max-width:768px){ .contact-grid{ grid-template-columns:1fr; gap:32px; } }

/* ─── FOOTER ─── */
footer { background:var(--ink); color:rgba(255,255,255,0.7); padding:56px 0 28px; }
.footer-wordmark { font-size:24px; font-weight:800; letter-spacing:-0.03em; color:#fff; margin-bottom:44px; }
.footer-cols { display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:32px; margin-bottom:36px; }
.footer-col h3 { font-size:11px; font-weight:700; letter-spacing:0.08em; text-transform:uppercase; color:rgba(255,255,255,0.5); margin-bottom:14px; }
.footer-col a { display:block; font-size:14px; color:rgba(255,255,255,0.72); margin:8px 0; transition:color 0.2s; }
.footer-col a:hover { color:#fff; }
.footer-nap { font-size:14px; color:rgba(255,255,255,0.6); line-height:1.7; }
.footer-bottom { border-top:1px solid rgba(255,255,255,0.12); padding-top:18px; font-size:12px; color:rgba(255,255,255,0.5); }
@media (max-width:768px){ .footer-cols{ grid-template-columns:1fr 1fr; } }
@media (max-width:480px){ .footer-cols{ grid-template-columns:1fr; } }

/* ─── BACK TO TOP ─── */
#back-top { position:fixed; bottom:28px; right:28px; width:46px; height:46px; border-radius:50%; background:var(--ink); color:var(--cyan); font-size:18px; display:flex; align-items:center; justify-content:center; z-index:998; opacity:0; transform:translateY(12px); pointer-events:none; transition:opacity 0.25s, transform 0.25s; }
#back-top.visible { opacity:1; transform:translateY(0); pointer-events:auto; }

/* ─── RESPONSIVE GRIDS ─── */
@media (max-width:860px){ .grid-3, .pricing, .steps, .round-icons { grid-template-columns:1fr; } .grid-2 { grid-template-columns:1fr; } }
@media (max-width:480px){ .section { padding:64px 0; } }

/* ─── REDUCED MOTION ─── */
@media (prefers-reduced-motion:reduce){ *,*::before,*::after { animation:none !important; transition:none !important; } }

/* ============================================================
   ÜBERARBEITUNG: mobile Abstände, Markenfarbe, Formular, Cookie
   ============================================================ */

/* Alias-Tokens, damit portierte Cookie-Styles passen */
:root {
  --orbit-navy: var(--navy);
  --quantum-cyan: var(--cyan);
  --border-light: var(--line);
  --text-dark: var(--ink);
  --text-muted-l: var(--muted);
}

/* Inline-Styles → Klassen (About-Absätze) */
.about-text p { color:var(--muted); line-height:1.7; margin-bottom:14px; }
.about-text p:last-of-type { margin-bottom:0; }
.about-text .trust-pills { margin-top:28px; }
.about-text .hero-ctas { margin-top:28px; }
.contact-direct { margin-top:24px; color:var(--muted); font-size:15px; }
.footer-nap a { display:inline; }
.form-submit-full { width:100%; justify-content:center; }

/* Mobile: Hero-Top ohne Statusleiste + kleinerer Scroll-Offset */
@media (max-width:600px){
  #nav { top:0; }  /* erst hier auf top:0, weil hier die Status-Leiste ausgeblendet wird */
  .hero { padding-top: calc(var(--nav-h) + 48px); }
  section[id], main [id] { scroll-margin-top: calc(var(--nav-h) + 12px); }
}
@media (max-width:480px){ .section { padding:72px 0; } }

/* ─── KONTAKT als dunkles Navy-Band (bricht das durchgehende Hell) ─── */
.section.band-dark {
  background:
    radial-gradient(700px 380px at 80% 0%, rgba(0,245,212,0.12), transparent 60%),
    linear-gradient(160deg, #0D1F3C 0%, var(--navy) 60%, #0B2349 100%);
}
.band-dark .section-tag { background:rgba(0,245,212,0.14); color:var(--cyan); }

/* Dunkle Akzent-Sektionen (Mein Ansatz, Service) für mehr Lebendigkeit */
.section.sec-dark {
  background:
    radial-gradient(700px 380px at 82% 0%, rgba(0,245,212,0.12), transparent 60%),
    linear-gradient(160deg, #0D1F3C 0%, var(--navy) 60%, #0B2349 100%);
}
.sec-dark .section-tag { background:rgba(0,245,212,0.14); color:var(--cyan); }
.sec-dark .section-h2 { color:#fff; }
.sec-dark .section-lead { color:rgba(255,255,255,0.74); }
.sec-dark .roadmap-title { color:#fff; }
.sec-dark .roadmap-desc { color:rgba(255,255,255,0.74); }
.sec-dark .teaser-link { color:var(--cyan); }
.sec-dark .about-text p { color:rgba(255,255,255,0.74); }
.sec-dark .about-deco { color:#fff; opacity:0.06; }
.sec-dark .btn-ghost { border-color:rgba(255,255,255,0.32); color:#fff; }
.sec-dark .btn-ghost:hover { border-color:#fff; }
.band-dark .section-h2 { color:#fff; }
.band-dark .contact-trust li { color:rgba(255,255,255,0.78); }
.band-dark .contact-trust li::before { background-image:url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='8' cy='8' r='7' stroke='%2300F5D4' stroke-width='1.4'/%3E%3Cpath d='M5 8l2 2 4-4' stroke='%2300F5D4' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
.band-dark .contact-direct { color:rgba(255,255,255,0.7); }
.band-dark .contact-direct a { color:var(--cyan); }

/* ─── FORMULAR (hell, an mail.php angelehnt) ─── */
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.form-honeypot { position:absolute; left:-9999px; width:1px; height:1px; overflow:hidden; }
.chip-hint { font-size:12px; color:var(--muted); margin:2px 0 8px; }
.chip-group { display:flex; flex-wrap:wrap; gap:8px; }
.chip { font-size:13px; font-weight:600; color:var(--ink-soft); background:var(--bg); border:1px solid var(--line-2); border-radius:999px; padding:8px 16px; cursor:pointer; font-family:inherit; transition:background 0.2s, border-color 0.2s, color 0.2s; }
.chip.selected, .chip[aria-pressed="true"] { background:rgba(0,245,212,0.12); border-color:var(--cyan-dark); color:var(--cyan-dark); }
.form-error { font-size:12px; color:#c0392b; display:none; margin-top:2px; }
.form-error.visible { display:block; }
.form-consent { display:flex; align-items:flex-start; gap:10px; font-size:13px; color:var(--muted); line-height:1.55; margin:4px 0 18px; }
.form-consent input[type="checkbox"] { margin-top:2px; width:16px; height:16px; flex-shrink:0; accent-color:var(--cyan-dark); cursor:pointer; }
.dse-link { color:var(--navy); text-decoration:underline; text-underline-offset:2px; }
.form-submit { display:inline-flex; align-items:center; justify-content:center; gap:8px; width:100%; background:var(--ink); color:#fff; font-size:15px; font-weight:700; padding:14px 26px; border-radius:999px; cursor:pointer; font-family:inherit; transition:opacity 0.2s, transform var(--t); }
.form-submit:hover:not(:disabled) { transform:translateY(-2px); box-shadow:var(--shadow-md); }
.form-submit:disabled { opacity:0.4; cursor:not-allowed; }
@media (max-width:768px){ .form-row { grid-template-columns:1fr; gap:0; } }

/* ─── ERFOLGS-OVERLAY ─── */
#form-success { display:none; position:fixed; inset:0; z-index:9999; background:linear-gradient(160deg, #0D1F3C 0%, var(--navy) 100%); flex-direction:column; align-items:center; justify-content:center; text-align:center; padding:40px; }
#form-success.visible { display:flex; animation:overlay-in 0.4s ease both; }
#form-success.hiding { animation:overlay-out 0.5s ease forwards; pointer-events:none; }
@keyframes overlay-in { from{opacity:0;} to{opacity:1;} }
@keyframes overlay-out { from{opacity:1;} to{opacity:0;} }
.success-rocket { animation:rocket-launch 2s cubic-bezier(0.4,0,0.2,1) 0.3s both; }
@keyframes rocket-launch { 0%{transform:translateY(28px) scale(0.7);opacity:0;} 18%{transform:translateY(0) scale(1);opacity:1;} 68%{transform:translateY(0) scale(1);opacity:1;} 100%{transform:translateY(-90px) scale(0.5);opacity:0;} }
.success-exhaust { width:3px; margin:2px auto 0; border-radius:2px; background:linear-gradient(to bottom, rgba(0,245,212,0.7), transparent); animation:exhaust 2s ease 0.3s both; }
@keyframes exhaust { 0%,16%{height:0;opacity:0;} 40%{height:22px;opacity:0.8;} 68%{height:16px;opacity:0.5;} 100%{height:0;opacity:0;} }
.success-message { position:absolute; display:flex; flex-direction:column; align-items:center; gap:14px; animation:msg-in 0.6s ease 2.2s both; }
@keyframes msg-in { from{opacity:0;transform:translateY(14px);} to{opacity:1;transform:translateY(0);} }
.success-check-ring { width:60px; height:60px; border-radius:50%; border:2px solid var(--cyan); display:flex; align-items:center; justify-content:center; color:var(--cyan); box-shadow:0 0 24px rgba(0,245,212,0.22); }
.success-title { font-size:19px; font-weight:800; color:#fff; }
.success-sub { font-size:14px; color:rgba(255,255,255,0.7); }

/* ─── COOKIE CONSENT (helles Modal) ─── */
.cookie-overlay { position:fixed; inset:0; width:100%; height:100%; background:rgba(3,13,26,0.55); backdrop-filter:blur(6px); -webkit-backdrop-filter:blur(6px); z-index:9999; display:flex; align-items:center; justify-content:center; padding:20px; }
.cookie-overlay.hidden { display:none; }
.cookie-modal { background:#fff; border-radius:20px; padding:36px 40px; max-width:540px; width:100%; box-shadow:0 32px 80px rgba(0,0,0,0.28); animation:cookieIn 0.28s cubic-bezier(0.34,1.56,0.64,1) both; }
@keyframes cookieIn { from{opacity:0;transform:scale(0.94) translateY(12px);} to{opacity:1;transform:scale(1) translateY(0);} }
.cookie-modal-top { display:flex; align-items:center; gap:12px; margin-bottom:12px; }
.cookie-modal-icon { color:var(--navy); flex-shrink:0; }
.cookie-modal-title { font-size:19px; font-weight:800; color:var(--ink); letter-spacing:-0.02em; }
.cookie-modal-desc { font-size:14px; color:var(--muted); line-height:1.65; margin-bottom:22px; }
.cookie-modal-desc a { color:var(--navy); text-decoration:underline; }
.cookie-categories { display:flex; flex-direction:column; margin-bottom:24px; border-top:1px solid var(--line); }
.cookie-category { display:flex; align-items:center; justify-content:space-between; padding:13px 0; border-bottom:1px solid var(--line); gap:16px; }
.cookie-cat-info strong { display:block; font-size:13px; font-weight:700; color:var(--ink); margin-bottom:2px; }
.cookie-cat-info span { font-size:12px; color:var(--muted); line-height:1.4; }
.cookie-always-on { font-size:12px; font-weight:600; color:var(--cyan-dark); white-space:nowrap; }
.cookie-toggle-label { position:relative; display:inline-block; width:42px; height:24px; flex-shrink:0; cursor:pointer; }
.cookie-toggle-input { opacity:0; width:0; height:0; position:absolute; }
.cookie-toggle-slider { position:absolute; inset:0; background:#d0d5dd; border-radius:12px; transition:background 0.2s; }
.cookie-toggle-slider::after { content:''; position:absolute; width:18px; height:18px; border-radius:50%; background:#fff; top:3px; left:3px; transition:transform 0.2s; box-shadow:0 1px 3px rgba(0,0,0,0.15); }
.cookie-toggle-input:checked + .cookie-toggle-slider { background:var(--cyan-dark); }
.cookie-toggle-input:checked + .cookie-toggle-slider::after { transform:translateX(18px); }
.cookie-modal-actions { display:flex; gap:10px; }
.cookie-act-decline, .cookie-act-custom { flex:1; background:transparent; border:1px solid var(--line); border-radius:var(--radius-sm); padding:11px 16px; font-size:14px; font-weight:600; color:var(--muted); cursor:pointer; font-family:inherit; transition:border-color 0.2s, color 0.2s; }
.cookie-act-decline:hover, .cookie-act-custom:hover { border-color:var(--navy); color:var(--ink); }
.cookie-act-accept { flex:1; background:var(--ink); color:#fff; border:none; border-radius:var(--radius-sm); padding:11px 16px; font-size:14px; font-weight:700; cursor:pointer; font-family:inherit; transition:opacity 0.2s; }
.cookie-act-accept:hover { opacity:0.85; }
@media (max-width:480px){
  .cookie-overlay { align-items:flex-end; padding:0; }
  .cookie-modal { border-radius:20px 20px 0 0; padding:22px 20px 28px; max-width:100%; }
  .cookie-modal-actions { flex-wrap:wrap; }
}

/* ─── DATENSCHUTZ-OVERLAY (Formular) ─── */
.dse-overlay { position:fixed; inset:0; width:100%; height:100%; background:rgba(3,13,26,0.55); backdrop-filter:blur(6px); -webkit-backdrop-filter:blur(6px); z-index:9998; display:flex; align-items:center; justify-content:center; padding:24px; opacity:1; transition:opacity 0.3s var(--ease); }
.dse-overlay.hidden { display:none; }
.dse-overlay.fade { opacity:0; }
.dse-modal { display:flex; flex-direction:column; background:#fff; border-radius:20px; width:100%; max-width:720px; max-height:86vh; overflow:hidden; box-shadow:0 32px 80px rgba(0,0,0,0.28); animation:cookieIn 0.28s cubic-bezier(0.34,1.56,0.64,1) both; }
.dse-modal-head { display:flex; align-items:center; justify-content:space-between; gap:16px; padding:20px 28px; border-bottom:1px solid var(--line); flex-shrink:0; }
.dse-modal-title { font-size:19px; font-weight:800; color:var(--ink); letter-spacing:-0.02em; }
.dse-close { display:flex; align-items:center; justify-content:center; width:40px; height:40px; flex-shrink:0; border:none; background:var(--bg-alt); border-radius:50%; font-size:24px; line-height:1; color:var(--muted); cursor:pointer; font-family:inherit; transition:background 0.2s, color 0.2s; }
.dse-close:hover { background:var(--line); color:var(--ink); }
.dse-modal-body { flex:1; overflow-y:auto; -webkit-overflow-scrolling:touch; padding:28px 28px 8px; }
.dse-modal-body .legal-wrap { max-width:none; margin:0; }
.dse-modal-body .legal-wrap h2:first-child { margin-top:0; padding-top:0; border-top:none; }
.dse-loading { font-size:15px; color:var(--muted); }
.dse-modal-foot { padding:16px 28px; border-top:1px solid var(--line); flex-shrink:0; }
.dse-act-ok { width:100%; background:var(--ink); color:#fff; border:none; border-radius:var(--radius-sm); padding:13px 18px; font-size:15px; font-weight:700; cursor:pointer; font-family:inherit; transition:opacity 0.2s; }
.dse-act-ok:hover { opacity:0.85; }
@media (max-width:600px){
  .dse-overlay { align-items:flex-end; padding:0; }
  .dse-modal { border-radius:20px 20px 0 0; max-width:100%; max-height:92vh; }
  .dse-modal-head { padding:18px 20px; }
  .dse-modal-body { padding:20px 20px 4px; }
  .dse-modal-foot { padding:14px 20px calc(14px + env(safe-area-inset-bottom)); }
}

/* ─── NAV-DROPDOWN (zweite Ebene) ─── */
.has-dropdown { position:relative; }
.has-dropdown::before { content:''; position:absolute; top:100%; left:0; right:0; height:14px; } /* Hover-Brücke */
.dropdown { position:absolute; top:calc(100% + 8px); left:0; min-width:170px; list-style:none; background:#fff; border:1px solid var(--line); border-radius:12px; box-shadow:var(--shadow-md); padding:8px; opacity:0; visibility:hidden; transform:translateY(6px); transition:opacity 0.2s, transform 0.2s, visibility 0.2s; z-index:60; }
.has-dropdown:hover .dropdown, .has-dropdown:focus-within .dropdown { opacity:1; visibility:visible; transform:translateY(0); }
.dropdown a { display:block; padding:9px 12px; border-radius:8px; font-size:14px; font-weight:600; color:var(--ink-soft); }
.dropdown a:hover { background:var(--bg-alt); color:var(--navy); }

/* ─── SUBPAGE-HERO ─── */
.page-hero { position:relative; overflow:hidden; text-align:center;
  background:
    radial-gradient(820px 420px at 50% 14%, rgba(0,245,212,0.10), transparent 62%),
    linear-gradient(180deg, rgba(15,44,89,0.05), transparent 40%),
    var(--bg);
  padding: calc(var(--status-h) + var(--nav-h) + 56px) 0 64px; }
.page-hero h1 { font-size:clamp(32px,4.6vw,52px); font-weight:900; letter-spacing:-0.03em; line-height:1.12; color:var(--ink); margin-bottom:16px; max-width:880px; margin-left:auto; margin-right:auto; }
.page-hero .page-sub { font-size:18px; color:var(--muted); line-height:1.6; max-width:600px; margin:0 auto; }
@media (max-width:600px){ .page-hero { padding-top: calc(var(--nav-h) + 40px); } }
.page-hero.hero-flush { padding-bottom:24px; }
.section.flush-top { padding-top:40px; }
@media (max-width:480px){ .page-hero.hero-flush { padding-bottom:16px; } .section.flush-top { padding-top:28px; } }

/* Pflicht-/Info-Banner (hell) */
.info-banner { background:rgba(0,245,212,0.08); border:1px solid rgba(0,245,212,0.3); border-radius:12px; padding:16px 22px; text-align:center; color:var(--ink-soft); font-size:14px; line-height:1.6; max-width:720px; margin:24px auto 0; }

/* Erklär-Block (Pakete: Light/Business) */
.explain { display:grid; grid-template-columns:1fr 1fr; gap:40px; align-items:center; margin-top:24px; }
.explain + .explain { margin-top:48px; }
.explain .ph-box { background:var(--bg-alt); border:1px solid var(--line); border-radius:var(--radius); min-height:200px; }
.explain .mockup { width:100%; height:auto; display:block; filter:drop-shadow(0 18px 40px rgba(13,13,13,0.10)); }
.explain h3 { font-size:22px; font-weight:800; letter-spacing:-0.02em; margin-bottom:10px; color:var(--ink); }
.explain p { color:var(--muted); line-height:1.7; }
@media (max-width:768px){ .explain { grid-template-columns:1fr; gap:20px; } }

/* ─── RECHTSSEITEN ─── */
.legal-hero { background:linear-gradient(160deg,#0D1F3C 0%, var(--navy) 100%); padding: calc(var(--status-h) + var(--nav-h) + 48px) 0 48px; }
.legal-hero h1 { font-size:clamp(30px,4vw,44px); font-weight:900; letter-spacing:-0.03em; color:#fff; }
.legal-hero p { color:rgba(255,255,255,0.7); margin-top:6px; font-size:14px; }
.legal-body { padding:64px 0 96px; }
.legal-wrap { max-width:760px; margin:0 auto; }
.legal-wrap h2 { font-size:20px; font-weight:800; color:var(--ink); letter-spacing:-0.02em; margin:36px 0 10px; padding-top:32px; border-top:1px solid var(--line); }
.legal-wrap h2:first-child { margin-top:0; padding-top:0; border-top:none; }
.legal-wrap h3 { font-size:16px; font-weight:700; color:var(--ink); margin:20px 0 6px; }
.legal-wrap p, .legal-wrap address { font-size:15px; color:var(--muted); line-height:1.75; margin-bottom:12px; font-style:normal; }
.legal-wrap ul { color:var(--muted); line-height:1.7; margin:0 0 12px 20px; }
.legal-wrap a { color:var(--navy); text-decoration:underline; }
.phone { unicode-bidi:bidi-override; direction:rtl; }
@media (max-width:600px){ .legal-hero { padding-top: calc(var(--nav-h) + 40px); } }

/* CTA-Band Button (auf dunklem Band) */
.band-dark .btn-accent { background:var(--cyan); color:#030D1A; }
.price-flex { font-size:13px; color:var(--muted); margin-top:4px; }

/* ─── HERO-PARTIKEL-CANVAS ─── */
#hero-particles { position:absolute; inset:0; z-index:0; pointer-events:none; display:block; }
.hero > .container { position:relative; z-index:1; }

/* ─── SCROLL-REVEAL (dezent) ─── */
.reveal { opacity:0; transform:translateY(20px); transition:opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.reveal.visible { opacity:1; transform:none; }
@media (prefers-reduced-motion:reduce){ .reveal { opacity:1 !important; transform:none !important; } }

/* ─── FOKUS-POLITUR ─── */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, .chip:focus-visible, summary:focus-visible {
  outline:2px solid var(--cyan-dark); outline-offset:3px; border-radius:6px;
}
.card:hover .card-icon { transform:translateY(-2px); transition:transform var(--t); }

/* ─── MOBILE-MENÜ: Akkordeon-Untermenüs (Liste) ─── */
.m-group { display:flex; flex-direction:column; border-bottom:1px solid var(--line); }
.m-row { display:flex; align-items:stretch; justify-content:space-between; }
.m-row > a { flex:1; padding:18px 24px; font-size:19px; font-weight:700; color:var(--navy); }
.m-row > a:hover { background:var(--bg-alt); }
.m-toggle { display:inline-flex; align-items:center; justify-content:center; width:56px; color:var(--muted); background:none; border:none; border-left:1px solid var(--line); cursor:pointer; }
.m-toggle svg { width:22px; height:22px; transition:transform 0.25s var(--ease); }
.m-toggle.open svg { transform:rotate(180deg); }
.m-sub { overflow:hidden; max-height:0; transition:max-height 0.28s var(--ease); background:var(--bg-alt); }
.m-sub.open { max-height:200px; }
.m-sub a { display:block; font-size:17px; font-weight:600; color:var(--muted); padding:14px 24px; border-top:1px solid var(--line); }
.m-sub a:hover { color:var(--navy); }

@media (max-width:600px){
  #back-top { bottom:18px; left:18px; right:auto; }
}

/* ═══════════════════════════════════════════════════════
   ANIMATIONS — Hero-Stagger · Scroll-Reveal-Stagger · Bento
   ═══════════════════════════════════════════════════════ */

/* ─── 1. HERO STAGGER (page-load, CSS only) ─────────── */
@keyframes rise {
  from { opacity:0; transform:translateY(16px); }
  to   { opacity:1; transform:none; }
}
.hero-in > * {
  opacity:0;
  animation: rise .62s var(--ease) forwards;
}
.hero-in > *:nth-child(1) { animation-delay:.05s; }
.hero-in > *:nth-child(2) { animation-delay:.18s; }
.hero-in > *:nth-child(3) { animation-delay:.31s; }
.hero-in > *:nth-child(4) { animation-delay:.44s; }
.hero-in > *:nth-child(5) { animation-delay:.56s; }
@media (prefers-reduced-motion:reduce) {
  .hero-in > * { opacity:1 !important; animation:none !important; }
}

/* ─── 2. SCROLL-REVEAL (Stagger via JS transitionDelay) ─ */
/* .reveal / .reveal.visible already in style.css above   */

/* ─── 3. BENTO GRID ─────────────────────────────────── */
.bento {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}
.bento-cell {
  background:var(--bg-alt);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:32px;
  min-height:200px;
  display:flex;
  flex-direction:column;
  transition:transform .28s var(--ease), box-shadow .28s var(--ease);
}
.bento-cell:hover {
  transform:translateY(-3px);
  box-shadow:0 16px 40px rgba(0,0,0,.10);
}
@media (hover:none) { .bento-cell:hover { transform:none; box-shadow:none; } }
.bento-cell.span-2 { grid-column:span 2; }
.bento-cell.row-2  { grid-row:span 2; }
/* Bento auf dunklem Hintergrund */
.sec-dark .bento-cell {
  background:rgba(255,255,255,.07);
  border-color:rgba(255,255,255,.11);
}
.sec-dark .bento-cell h3 { color:#fff; }
.sec-dark .bento-cell p  { color:rgba(255,255,255,.65); }
.sec-dark .bento-cell .card-icon { background:rgba(255,255,255,.10); }
/* Responsive bento */
@media (max-width:860px) {
  .bento { grid-template-columns:repeat(2,1fr); }
  .bento-cell.span-2,
  .bento-cell.row-2 { grid-column:span 2; grid-row:auto; }
}
@media (max-width:520px) {
  .bento { grid-template-columns:1fr; }
  .bento-cell.span-2 { grid-column:span 1; }
}

/* ─── 4. NAV-LOGO Größe für Wortmarke ───────────────── */
.nav-logo img { height:32px; width:auto; }

/* ─── 5. TEASER-LINK Pfeil-Hover ────────────────────── */
.teaser-link svg { transition:transform .25s var(--ease); }
.teaser-link:hover svg { transform:translateX(4px); }

/* ─── 6. CARD Hover (Ergänzung für .alt-Sektionen) ───── */
.alt .card:hover { border-color:var(--cyan-dark); }

/* ─── 7. BENTO decorative elements ─────────────────── */
/* Browser mock (Webdesign large cell) */
.bento-mock {
  margin-top:auto;
  border-radius:10px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.15);
  background:rgba(255,255,255,.06);
  flex-shrink:0;
}
.bento-mock-bar {
  display:flex;
  gap:5px;
  align-items:center;
  padding:8px 12px;
  background:rgba(255,255,255,.06);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.bento-mock-bar span {
  width:8px; height:8px; border-radius:50%;
  background:rgba(255,255,255,.25);
}
.bento-mock-body { padding:14px 16px 16px; display:flex; flex-direction:column; gap:8px; }
.bm-line {
  height:8px; border-radius:4px;
  background:rgba(255,255,255,.18);
}
.bm-line.wide  { width:75%; }
.bm-line.mid   { width:55%; }
.bm-line.short { width:38%; }
.bm-btn {
  margin-top:6px;
  height:28px; width:90px; border-radius:6px;
  background:var(--cyan); opacity:.55;
}

/* Chat mock (Service large cell) */
.bento-chat {
  margin-top:auto;
  display:flex;
  flex-direction:column;
  gap:8px;
  flex-shrink:0;
}
.bc-msg {
  padding:9px 14px;
  border-radius:12px;
  font-size:.82rem;
  line-height:1.4;
  max-width:82%;
}
.bc-in {
  align-self:flex-start;
  background:rgba(0,0,0,.07);
  color:var(--ink);
  border-bottom-left-radius:3px;
}
.bc-out {
  align-self:flex-end;
  background:var(--navy);
  color:#fff;
  border-bottom-right-radius:3px;
}
.bc-muted { background:rgba(15,44,89,.45); font-size:.73rem; }
