/*
 * ClientReport — compact-pro canonical stylesheet
 * Refactored under INIT_046 P-2 B2 (CR-046-PLAN-REORDER-B2-BEFORE-P2; FROZEN_PLAN v1.2.0).
 * Defensive fallback only — all migrated pages embed canonical CSS inline.
 * Token source: kontakt.html (owner-endorsed canonical compact-pro design).
 */

:root {
  --bg: #050510;
  --bg-card: #0d0d1a;
  --border: rgba(59,130,246,.15);
  --blue: #3b82f6;
  --cyan: #06b6d4;
  --pink: #ec4899;
  --violet: #8b5cf6;
  --text: #f0f0f8;
  --text-sec: #a0a0c0;
  --text-muted: #6060a0;
  --max: 800px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Cabinet Grotesk', -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }

a { color: var(--cyan); text-decoration: none; }
a:hover { text-decoration: underline; }

.skip-link { position: absolute; left: -9999px; top: 0; background: var(--bg-card); color: var(--cyan); padding: .5rem 1rem; z-index: 9999; }
.skip-link:focus { left: .5rem; top: .5rem; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* nav */
.nav { position: sticky; top: 0; z-index: 100; background: rgba(5,5,16,.95); backdrop-filter: blur(16px); border-bottom: 1px solid var(--border); }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; display: flex; align-items: center; height: 64px; gap: 1.25rem; }
.logo { font-family: var(--font-display); font-weight: 800; font-size: 1.15rem; color: var(--text); text-decoration: none; display: flex; align-items: center; gap: .5rem; }
.nav-links { display: flex; gap: .15rem; margin-left: auto; }
.nav-links a { padding: .45rem .8rem; border-radius: 8px; font-size: .85rem; font-weight: 500; color: var(--text-sec); text-decoration: none; transition: all .2s; }
.nav-links a:hover { color: var(--text); background: rgba(59,130,246,.1); }
.nav-links a.active, .nav-links a[aria-current="page"] { color: var(--cyan); background: rgba(6,182,212,.1); }

/* lang-switcher (compact-pro inline-SVG) */
.lang-switcher { display: flex; gap: .35rem; align-items: center; }
.lang-flag { display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 20px; border-radius: 3px; border: 1px solid transparent; overflow: hidden; }
.lang-flag svg { width: 22px; height: 14px; display: block; }
.lang-flag.active, .lang-flag[aria-current="page"] { border-color: var(--cyan); box-shadow: 0 0 0 2px rgba(6,182,212,.18); }

/* buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: .65rem 1.1rem; border-radius: 10px; font-size: .9rem; font-weight: 600; font-family: var(--font); cursor: pointer; transition: all .2s; border: 1px solid transparent; text-decoration: none; }
.btn-glow { background: var(--blue); color: #fff; border-color: var(--blue); }
.btn-glow:hover { background: #2563eb; border-color: #2563eb; text-decoration: none; }
.btn-glass { background: transparent; border: 1px solid var(--border); color: var(--text); }
.btn-glass:hover { border-color: var(--cyan); color: var(--cyan); text-decoration: none; }
.btn-lg { padding: .95rem 1.6rem; font-size: .98rem; }
.btn-full { width: 100%; }

/* mobile menu */
.hamburger { display: none; background: none; border: none; color: var(--text); font-size: 1.5rem; cursor: pointer; }
.mobile-menu { display: none; position: fixed; inset: 0; z-index: 200; background: rgba(5,5,16,.98); flex-direction: column; padding: 2rem; gap: .5rem; }
.mobile-menu.open { display: flex; }
.mobile-menu .close-btn { align-self: flex-end; background: none; border: none; color: var(--text); font-size: 2rem; cursor: pointer; margin-bottom: 1rem; }
.mobile-menu a { font-size: 1.1rem; font-weight: 600; padding: .75rem 0; border-bottom: 1px solid var(--border); color: var(--text); text-decoration: none; }

/* typography */
h1 { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.85rem, 3.5vw, 2.6rem); line-height: 1.15; margin-bottom: 1rem; }
h2 { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.55rem, 3vw, 2.05rem); line-height: 1.2; margin-bottom: .5rem; }
h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; margin-bottom: .5rem; color: var(--text); }
.shimmer { background: linear-gradient(90deg, var(--cyan), var(--blue), var(--violet)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }

/* hero / chip */
.hero { padding: 4.5rem 0 2.5rem; }
.hero-chip { display: inline-flex; align-items: center; gap: .45rem; padding: .35rem .75rem; border: 1px solid var(--border); border-radius: 999px; font-size: .78rem; color: var(--text-sec); margin-bottom: 1.25rem; }
.chip-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 3px rgba(6,182,212,.18); }

/* cards */
.glass-card, .glass-feature, .glass-price { background: var(--bg-card); border: 1px solid var(--border); border-radius: 14px; padding: 1.4rem; }
.glass-cta { background: var(--bg-card); border: 1px solid var(--border); border-radius: 18px; padding: 2.5rem 1.75rem; text-align: center; max-width: 720px; margin: 0 auto; }
.glass-cta p { color: var(--text-sec); margin: .5rem 0 1.25rem; }

/* sections */
.features, .pricing, .final-cta { padding: 3.5rem 0; border-top: 1px solid var(--border); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 2rem; }
.section-head p { color: var(--text-sec); margin-top: .4rem; }

/* footer */
.footer { background: var(--bg-card); border-top: 1px solid var(--border); margin-top: 3rem; padding: 3rem 1.5rem 2rem; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; text-align: center; }
.footer-inner p { font-size: .85rem; color: var(--text-muted); }
.footer-inner a { color: var(--text-muted); }
.footer-inner a:hover { color: var(--cyan); }

/* cookie banner */
.ds-cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; background: var(--bg-card); border-top: 1px solid var(--border); padding: 1rem 1.5rem; z-index: 300; display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: space-between; font-size: .85rem; color: var(--text-sec); }
.ds-cookie-actions { display: flex; gap: .5rem; }
.ds-cookie-accept, .ds-cookie-decline { padding: .45rem 1rem; border-radius: 8px; font-size: .82rem; font-weight: 600; cursor: pointer; border: 1px solid var(--border); background: transparent; color: var(--text); font-family: var(--font); }
.ds-cookie-accept { background: var(--blue); border-color: var(--blue); color: #fff; }
.ds-cookie-accept:hover { background: #2563eb; }

/* responsive */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
  .footer-inner { grid-template-columns: 1fr; }
}
