/* ============================================================
   Synervia Design System – synervia.css
   Shopware-inspiriert · Rot #E2231A · Inter Tight + Inter
   ============================================================ */

:root {
  color-scheme: light only;
  --red: #E2231A;
  --red-600: #C81E16;
  --red-soft: #FCEDEC;
  --ink: #14141A;
  --ink-1: var(--ink);
  --ink-2: #2B2B33;
  --muted: #5A5A66;
  --muted-1: var(--muted);
  --muted-2: #8A8A96;
  --line: #ECECEF;
  --line-2: #DDDDE2;
  --bg: #FFFFFF;
  --bg-1: var(--bg);
  --bg-2: #F7F7F9;
  --bg-3: #F1F1F4;
  --r: 16px;
  --r-lg: 24px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1,h2,h3,h4 { font-family: 'Inter Tight', sans-serif; letter-spacing: -0.02em; }

/* duotone icon helper */
.ico { width: 28px; height: 28px; display: block; }
.ico .solid { fill: var(--red); }
.ico .duo   { fill: var(--red); opacity: 0.28; }
.ico-line { width: 22px; height: 22px; fill: none; stroke: var(--ink); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }

.wrap { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
section[id] { scroll-margin-top: 88px; }

/* ─── NAV ─── */
body > nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 68px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px) saturate(1.6);
  border-bottom: 1px solid var(--line);
  transition: background 0.3s, border-color 0.3s;
}
/* Über dem dunklen Page-Hero: transparent + helle Schrift */
body > nav.at-top {
  background: transparent;
  border-bottom-color: transparent;
  -webkit-backdrop-filter: none; backdrop-filter: none;
}
body > nav.at-top .nav-menu a,
body > nav.at-top .nav-trigger { color: rgba(255,255,255,0.86); }
body > nav.at-top .nav-menu a:hover,
body > nav.at-top .nav-menu a.active,
body > nav.at-top .nav-trigger:hover,
body > nav.at-top .nav-trigger.active,
body > nav.at-top .nav-item.open .nav-trigger { color: #fff; }
body > nav.at-top .nav-submenu a { color: var(--ink-2); }
body > nav.at-top .nav-submenu a:hover,
body > nav.at-top .nav-submenu a.active { color: var(--red); }
body > nav.at-top .lang-btn { color: rgba(255,255,255,0.6); }
body > nav.at-top .lang-btn:hover { color: #fff; background: rgba(255,255,255,0.10); }
body > nav.at-top .lang-btn.active { color: #fff; background: rgba(226,35,26,0.9); }
body > nav.at-top .lang-sep { color: rgba(255,255,255,0.28); }
body > nav.at-top .logo-img { filter: brightness(0) invert(1); }
body > nav.at-top .hamburger span { background: #fff; }
.nav-in {
  max-width: 1200px; margin: 0 auto; height: 100%;
  padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between;
}
.logo {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 800; font-size: 21px;
  color: var(--ink); text-decoration: none;
  display: flex; align-items: center; gap: 9px;
  letter-spacing: -0.03em;
}
.logo-mark {
  width: 26px; height: 26px; border-radius: 7px;
  background: var(--red);
  display: flex; align-items: center; justify-content: center;
}
.logo-mark svg { width: 15px; height: 15px; fill: #fff; }
.logo-img { height: 49px !important; width: auto !important; max-height: none !important; display: block; }

.nav-menu { display: flex; gap: 22px; list-style: none; align-items: center; }
.nav-menu li { position: relative; }
.nav-item::after {
  content: "";
  position: absolute;
  left: -10px;
  right: -10px;
  top: 100%;
  height: 18px;
}
.nav-menu a,
.nav-trigger {
  font-size: 14.5px; font-weight: 500; color: var(--ink-2);
  text-decoration: none; transition: color 0.18s;
}
.nav-trigger {
  display: inline-flex; align-items: center; gap: 5px;
  background: none; border: none; padding: 0;
  cursor: pointer; font-family: 'Inter', sans-serif;
}
.nav-menu a:hover, .nav-menu a.active,
.nav-trigger:hover, .nav-trigger.active,
.nav-item.open .nav-trigger { color: var(--red); }
.nav-trigger::after {
  content: '⌄'; font-size: 12px; line-height: 1; opacity: .7;
  transform: translateY(-1px); transition: transform .16s;
}
.nav-item.open .nav-trigger::after,
.nav-trigger[aria-expanded="true"]::after { transform: translateY(-1px) rotate(180deg); }
.nav-submenu {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translate(-50%, 8px);
  min-width: 230px; padding: 10px; border: 1px solid var(--line);
  border-radius: 12px; background: rgba(255,255,255,.96);
  box-shadow: 0 18px 50px rgba(20,20,26,.12);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .16s, transform .16s, visibility .16s;
}
.nav-item.open .nav-submenu { opacity: 1; visibility: visible; pointer-events: auto; transform: translate(-50%, 0); }
.nav-submenu a {
  display: block; padding: 10px 12px; border-radius: 8px;
  font-size: 13.5px; color: var(--ink-2);
}
.nav-submenu a:hover, .nav-submenu a.active { background: var(--red-soft); color: var(--red); }

.nav-right { display: flex; align-items: center; gap: 18px; }

/* ─── LANGUAGE SWITCHER ─── */
.lang-switcher { display: flex; align-items: center; gap: 4px; }
.lang-btn {
  background: none; border: none; cursor: pointer;
  font-size: 12px; font-weight: 700; color: var(--muted-2);
  padding: 4px 6px; border-radius: 5px;
  transition: color 0.15s, background 0.15s;
  font-family: 'Inter', sans-serif; letter-spacing: 0.04em;
}
.lang-btn:hover { color: var(--ink); background: var(--bg-3); }
.lang-btn.active { color: var(--red); background: var(--red-soft); }
.lang-sep { font-size: 11px; color: var(--line-2); }

/* ─── HAMBURGER ─── */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none;
  padding: 7px; border-radius: 9px; transition: background 0.15s;
}
.hamburger:hover { background: var(--bg-3); }
.hamburger span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; display: block; }

/* ─── MOBILE NAV OVERLAY ─── */
.mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 200;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(24px) saturate(1.6);
  flex-direction: column; align-items: center; justify-content: flex-start;
  padding: 88px 32px 48px; gap: 0; overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav > a,
.mobile-nav-trigger {
  font-family: 'Inter Tight', sans-serif;
  font-size: 22px; font-weight: 800; color: var(--ink);
  text-decoration: none; letter-spacing: 0;
  padding: 10px 0; width: 100%; max-width: 320px; text-align: center;
  border-bottom: 1px solid var(--line); transition: color 0.18s;
}
.mobile-nav-trigger {
  background: none; cursor: pointer; font-family: 'Inter Tight', sans-serif;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.mobile-nav-trigger::after {
  content: '⌄'; font-size: 14px; line-height: 1; opacity: .7;
  transform: translateY(-1px); transition: transform .16s;
}
.mobile-nav-group.open .mobile-nav-trigger::after { transform: translateY(-1px) rotate(180deg); }
.mobile-nav > a:last-of-type { border-bottom: none; }
.mobile-nav a:hover,
.mobile-nav a.active,
.mobile-nav-trigger:hover,
.mobile-nav-trigger.active { color: var(--red); }
.mobile-nav-group {
  width: 100%; max-width: 320px;
  border-bottom: 1px solid var(--line);
}
.mobile-nav-group .mobile-nav-trigger {
  border: none; max-width: none;
}
.mobile-nav-submenu {
  display: none; padding: 0 0 10px;
}
.mobile-nav-group.open .mobile-nav-submenu {
  display: grid; gap: 2px;
}
.mobile-nav-submenu a {
  display: block; padding: 8px 0;
  font-family: 'Inter', sans-serif;
  font-size: 16px; font-weight: 700; color: var(--ink-2);
  text-align: center; text-decoration: none;
}
.mobile-nav .btn-red {
  font-size: 16px; margin-top: 28px; border-bottom: none;
  padding: 14px 32px; border-radius: 12px; width: auto;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; text-decoration: none; cursor: pointer;
  border-radius: 10px; transition: all 0.18s; border: none;
  font-size: 14.5px; padding: 11px 22px; font-family: 'Inter', sans-serif;
}
.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { background: var(--red-600); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(226,35,26,0.28); }
.btn-ghost { background: var(--bg-3); color: var(--ink); }
.btn-ghost:hover { background: var(--line-2); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--ink-2); transform: translateY(-1px); }
.btn-white { background: #fff; color: var(--ink) !important; font-weight: 700; }
.btn-white:hover { transform: translateY(-1px); box-shadow: 0 10px 30px rgba(0,0,0,0.3); }
.btn-lg { padding: 15px 30px; font-size: 16px; border-radius: 12px; }
.btn-sm { padding: 8px 16px; font-size: 13px; border-radius: 8px; }

/* ─── SECTION BASE ─── */
section.block { padding: 100px 0; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; color: var(--red);
  letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 16px;
}
.eyebrow::before { content:''; width: 20px; height: 2px; background: var(--red); }
.h2 { font-size: clamp(30px, 4vw, 44px); font-weight: 800; color: var(--ink); line-height: 1.1; margin-bottom: 18px; }
.lead { font-size: 18px; color: var(--muted); max-width: 560px; line-height: 1.6; }
.sec-head { max-width: 640px; }
.sec-head.center { margin: 0 auto; text-align: center; }
.sec-head.center .eyebrow { justify-content: center; }
.sec-head.center .lead { margin-left: auto; margin-right: auto; }

/* ─── HERO ─── */
.hero { padding: 168px 0 80px; position: relative; overflow: hidden; }
.hero::before {
  content:''; position:absolute; top:-200px; right:-100px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(226,35,26,0.06) 0%, transparent 60%);
  pointer-events:none;
}
.hero-in { max-width: 880px; margin: 0 auto; text-align: center; position: relative; z-index: 2; }
.hero h1 { font-size: clamp(40px, 6vw, 72px); font-weight: 800; line-height: 1.04; color: var(--ink); margin-bottom: 24px; }
/* Animierte Verlaufsfarben via @property – repaintet zuverlässig auch bei background-clip:text */
@property --acc-1 { syntax: "<color>"; inherits: false; initial-value: #E2231A; }
@property --acc-2 { syntax: "<color>"; inherits: false; initial-value: #FFA69E; }
.hero h1 .accent {
  background: linear-gradient(90deg, var(--acc-1), var(--acc-2), var(--acc-1));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: accent-shimmer 3s ease-in-out infinite;
}
@keyframes accent-shimmer {
  0%, 100% { --acc-1: #E2231A; --acc-2: #FFA69E; }
  50%      { --acc-1: #FFA69E; --acc-2: #E2231A; }
}
.hero p { font-size: 19px; color: var(--muted); max-width: 600px; margin: 0 auto 36px; line-height: 1.6; }
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* pill */
.pill {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--bg-3); border: 1px solid var(--line-2);
  border-radius: 100px; padding: 7px 8px 7px 16px;
  font-size: 13px; font-weight: 500; color: var(--ink-2);
  margin-bottom: 30px;
}
.pill b { color: var(--red); font-weight: 600; }
.pill .chip {
  background: var(--red); color:#fff; font-size: 11px; font-weight: 700;
  padding: 3px 9px; border-radius: 100px; letter-spacing: 0.02em;
}

/* ─── PAGE HERO (Unterseiten) ─── */
.page-hero {
  padding: 150px 0 72px; background: #08080d;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative; overflow: hidden; isolation: isolate;
}
.page-hero::before {
  content:''; position:absolute; inset:0; z-index:0; pointer-events:none;
  background:
    radial-gradient(60% 90% at 4% 4%, rgba(226,35,26,0.28) 0%, transparent 55%),
    radial-gradient(55% 80% at 98% 34%, rgba(104,66,232,0.30) 0%, transparent 60%);
}
.page-hero::after {
  content:''; position:absolute; inset:0; z-index:0; pointer-events:none; opacity:0.5;
  background-image:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 54px 54px;
  -webkit-mask-image: radial-gradient(85% 92% at 45% 0%, #000 30%, transparent 100%);
          mask-image: radial-gradient(85% 92% at 45% 0%, #000 30%, transparent 100%);
}
.page-hero .wrap { position: relative; z-index: 2; }
.page-hero .breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: rgba(232,232,242,0.55); margin-bottom: 20px;
}
.page-hero .breadcrumb a { color: rgba(232,232,242,0.72); text-decoration: none; transition: color 0.18s; }
.page-hero .breadcrumb a:hover { color: var(--red); }
.page-hero .breadcrumb span { color: rgba(255,255,255,0.5) !important; }
.page-hero h1 { font-size: clamp(32px, 5vw, 58px); font-weight: 800; line-height: 1.06; letter-spacing: -0.025em; color: #fff; margin-bottom: 20px; }
.page-hero h1 .accent {
  background: linear-gradient(90deg, var(--acc-1), var(--acc-2), var(--acc-1));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: accent-shimmer 3.4s ease-in-out infinite;
}
.page-hero p { font-size: 18px; color: rgba(232,232,242,0.70); max-width: 580px; line-height: 1.6; margin-bottom: 32px; }
.page-hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.page-hero .btn-ghost { background: rgba(255,255,255,0.08); color: #fff; border: 1px solid rgba(255,255,255,0.16); }
.page-hero .btn-ghost:hover { background: rgba(255,255,255,0.15); }

/* ─── FEATURE GRID ─── */
.feat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 56px; }
.feat-card {
  background: var(--bg); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 32px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.feat-card:hover { box-shadow: 0 16px 50px rgba(20,20,26,0.07); transform: translateY(-3px); }
.feat-ico {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--red-soft);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.feat-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.feat-card p { font-size: 14.5px; color: var(--muted); line-height: 1.6; }

/* ─── FEATURE LIST (Plugin-Seiten) ─── */
.feat-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.feat-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px; color: var(--ink-2); line-height: 1.55;
}
.feat-list li::before {
  content:''; width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px;
  background: var(--red-soft); border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 8l3.5 3.5L13 5' stroke='%23E2231A' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 14px; background-position: center; background-repeat: no-repeat;
}

/* ─── TWO-COL LAYOUT ─── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

/* ─── MOCKUP WINDOW ─── */
.mock-window {
  background: var(--bg-3); border-radius: var(--r-lg);
  overflow: hidden; border: 1px solid var(--line);
  box-shadow: 0 20px 60px rgba(20,20,26,0.1);
}
.mock-bar {
  height: 34px; background: var(--bg-2); border-bottom: 1px solid var(--line);
  display: flex; align-items: center; gap: 6px; padding: 0 16px;
}
.mock-bar i { width: 9px; height: 9px; border-radius: 50%; background: var(--line-2); display: block; }
.mock-bar .url { flex: 1; height: 18px; background: var(--line); border-radius: 4px; margin-left: 12px; }
.mock-body { padding: 20px; }

/* ─── SCREENSHOT MOCKUP (LUMA) ─── */
.luma-preview-lg { background: linear-gradient(135deg, #189EFF 0%, #0066CC 100%); }
.aurora-preview-lg { background: linear-gradient(135deg, #0f0f1a 0%, #1a1a3e 100%); }

/* ─── PRICING CARD ─── */
.pricing-box {
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 40px; text-align: center;
}
.pricing-box .price-tag {
  font-family: 'Inter Tight', sans-serif;
  font-size: 42px; font-weight: 800; color: var(--ink);
  letter-spacing: -0.03em; margin: 16px 0;
}
.pricing-box .price-tag span { font-size: 20px; color: var(--muted); font-weight: 500; }
.pricing-box p { font-size: 14.5px; color: var(--muted); line-height: 1.6; margin-bottom: 24px; }

/* ─── REQUIREMENTS STRIP ─── */
.req-strip {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: 28px;
}
.req-pill {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--bg); border: 1px solid var(--line);
  border-radius: 100px; padding: 6px 14px;
  font-size: 13px; font-weight: 500; color: var(--ink-2);
}

/* ─── ABOUT / FEATURE TRIO ─── */
.about { background: var(--bg-2); }
.trio { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.feat { }
.feat-ico-sm {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--red-soft);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.feat h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; color: var(--ink); }
.feat p { font-size: 15px; color: var(--muted); line-height: 1.6; }

/* stats strip */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; margin-top: 72px; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); }
.stat { padding: 36px 28px; background: var(--bg); border-right: 1px solid var(--line); }
.stat:last-child { border-right: none; }
.stat .n { font-family: 'Inter Tight', sans-serif; font-size: 40px; font-weight: 800; color: var(--ink); line-height: 1; letter-spacing: -0.03em; }
.stat .n span { color: var(--red); }
.stat .l { font-size: 14px; color: var(--muted); margin-top: 8px; }

/* ─── PRODUCT CARDS ─── */
.pcard {
  background: var(--bg); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 32px; cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  display: flex; flex-direction: column; text-decoration: none; color: inherit;
}
.pcard:hover { border-color: var(--line-2); box-shadow: 0 16px 50px rgba(20,20,26,0.08); transform: translateY(-4px); }
.pcard-ico {
  width: 52px; height: 52px; border-radius: 13px; background: var(--bg-3);
  display: flex; align-items: center; justify-content: center; margin-bottom: 22px;
}
.ptype { font-size: 12px; font-weight: 700; color: var(--red); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 10px; }
.pcard h3 { font-size: 21px; font-weight: 700; margin-bottom: 10px; }
.pcard p { font-size: 14.5px; color: var(--muted); line-height: 1.6; flex: 1; }
.pfoot { display: flex; align-items: center; justify-content: space-between; margin-top: 26px; padding-top: 22px; border-top: 1px solid var(--line); }
.price { font-family: 'Inter Tight', sans-serif; font-weight: 700; font-size: 17px; }
.plink { font-size: 14px; font-weight: 600; color: var(--red); display: inline-flex; gap: 5px; transition: gap 0.2s; }
.pcard:hover .plink { gap: 9px; }

/* tags / pills */
.rtag { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--red); background: var(--red-soft); padding: 5px 11px; border-radius: 6px; margin-bottom: 16px; }
.rpill { font-size: 12px; color: var(--muted); background: var(--bg-3); border: 1px solid var(--line); border-radius: 6px; padding: 4px 11px; }
.tech-pill { display: inline-flex; align-items: center; gap: 8px; background: var(--bg); border: 1px solid var(--line); border-radius: 100px; padding: 7px 14px; font-size: 13.5px; font-weight: 600; color: var(--ink-2); }
.tp-ico { width: 18px; height: 18px; display: block; flex-shrink: 0; }

/* ─── STATUS BADGES ─── */
.coming-badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.04em;
  background: #FEF3C7; color: #92400E;
  border: 1px solid #FCD34D; border-radius: 100px; padding: 3px 9px;
}
.coming-badge::before { content:''; width:5px;height:5px;border-radius:50%;background:#F59E0B;display:inline-block; }
.live-badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11px; font-weight: 700;
  background: #D1FAE5; color: #065F46;
  border: 1px solid #6EE7B7; border-radius: 100px; padding: 3px 9px;
}
.live-badge::before { content:''; width:5px;height:5px;border-radius:50%;background:#10B981;display:inline-block; }
.in-dev-badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11px; font-weight: 700;
  background: #DBEAFE; color: #1E40AF;
  border: 1px solid #93C5FD; border-radius: 100px; padding: 3px 9px;
}
.in-dev-badge::before { content:''; width:5px;height:5px;border-radius:50%;background:#3B82F6;display:inline-block; }

/* trust cards */
.trust-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 56px; }
.tcard { border: 1px solid var(--line); border-radius: var(--r); padding: 28px 24px; background: var(--bg); }
.tcard-ico { width: 40px; height: 40px; margin-bottom: 18px; display:flex; align-items:center; justify-content:center; }
.tcard h4 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.tcard p { font-size: 13.5px; color: var(--muted); line-height: 1.55; }
.badge-pill { display:inline-flex; align-items:center; gap:7px; font-size: 12px; font-weight:700; color: var(--ink-2); background: var(--bg-3); border:1px solid var(--line); padding: 6px 13px; border-radius: 100px; }
.badge-pill .dot { width:7px; height:7px; border-radius:50%; background: var(--red); }
.trust-badges { display:flex; gap:10px; flex-wrap:wrap; margin-top: 36px; justify-content:center; }

/* ─── CONTACT FORM ─── */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group.full { grid-column: span 2; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--ink-2); }
.form-group input, .form-group select, .form-group textarea {
  font-family: 'Inter', sans-serif; font-size: 15px; color: var(--ink);
  background: var(--bg); border: 1.5px solid var(--line);
  border-radius: var(--r); padding: 12px 16px; outline: none;
  transition: border-color 0.18s, box-shadow 0.18s;
  width: 100%;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--red); box-shadow: 0 0 0 3px rgba(226,35,26,0.1);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%235A5A66' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-size: 18px; padding-right: 40px; }
.form-note { font-size: 13px; color: var(--muted-2); margin-top: 16px; }
.form-note a { color: var(--red); text-decoration: none; }
.form-success {
  display: none; background: #D1FAE5; border: 1px solid #6EE7B7;
  border-radius: var(--r); padding: 20px 24px; margin-top: 20px;
  color: #065F46; font-size: 15px; font-weight: 500;
}
.form-success.show { display: block; }

/* ─── BLOG CARDS ─── */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 56px; }
.blog-card {
  text-decoration: none; color: inherit;
  background: var(--bg); border: 1px solid var(--line);
  border-radius: var(--r-lg); overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex; flex-direction: column;
}
.blog-card:hover { box-shadow: 0 16px 50px rgba(20,20,26,0.08); transform: translateY(-4px); }
.blog-card-img {
  height: 180px; background: var(--bg-3);
  display: flex; align-items: center; justify-content: center;
  border-bottom: 1px solid var(--line); position: relative; overflow: hidden;
}
.blog-card-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.blog-meta { display: flex; align-items: center; gap: 12px; font-size: 12.5px; color: var(--muted-2); margin-bottom: 12px; }
.blog-meta .cat { color: var(--red); font-weight: 600; }
.blog-card-body h3 { font-size: 19px; font-weight: 700; margin-bottom: 10px; line-height: 1.3; }
.blog-card-body p { font-size: 14px; color: var(--muted); line-height: 1.6; flex: 1; }
.blog-card-footer { margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--line); font-size: 13px; font-weight: 600; color: var(--red); }

/* ─── ARTICLE ─── */
.article-wrap { max-width: 740px; margin: 0 auto; padding: 0 32px; }
.article-body { padding: 60px 0 80px; }
.article-body h2 { font-size: 26px; font-weight: 800; margin: 40px 0 14px; }
.article-body h3 { font-size: 20px; font-weight: 700; margin: 30px 0 10px; }
.article-body p { font-size: 16.5px; color: var(--muted); line-height: 1.8; margin-bottom: 18px; }
.article-body ul, .article-body ol { padding-left: 24px; margin-bottom: 18px; }
.article-body li { font-size: 16px; color: var(--muted); line-height: 1.75; margin-bottom: 8px; }
.article-body strong { color: var(--ink); font-weight: 600; }
.article-body a { color: var(--red); text-decoration: none; }
.article-body a:hover { text-decoration: underline; }
.article-callout {
  background: var(--red-soft); border-left: 3px solid var(--red);
  border-radius: 0 var(--r) var(--r) 0;
  padding: 20px 24px; margin: 28px 0;
  font-size: 15.5px; color: var(--ink-2); line-height: 1.65;
}

/* ─── CTA BLOCK ─── */
.cta { padding: 110px 0; }
.cta-box {
  background: var(--ink); border-radius: var(--r-lg);
  padding: 80px 48px; text-align: center; position: relative; overflow: hidden;
}
.cta-box::before {
  content:''; position:absolute; top:-120px; left:50%; transform: translateX(-50%);
  width: 500px; height: 320px;
  background: radial-gradient(ellipse, rgba(226,35,26,0.35) 0%, transparent 65%);
}
.cta-box .inner { position: relative; z-index: 2; max-width: 600px; margin: 0 auto; }
.cta-box .eyebrow { color: #FF6B62; justify-content: center; }
.cta-box .eyebrow::before { background: var(--red); }
.cta-box h2 { font-size: clamp(30px,4vw,46px); font-weight: 800; color:#fff; line-height:1.1; margin-bottom: 18px; }
.cta-box p { font-size: 18px; color: rgba(255,255,255,0.6); margin-bottom: 36px; }
.cta-contacts { display:flex; gap:26px; justify-content:center; flex-wrap:wrap; margin-top: 32px; }
.cta-contacts a { font-size: 14px; color: rgba(255,255,255,0.55); text-decoration:none; display:inline-flex; align-items:center; gap:7px; }
.cta-contacts a:hover { color:#fff; }

/* ─── FOOTER ─── */
footer { background: #0E0E13; padding: 64px 0 36px; }
.foot-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.foot-brand .logo { color:#fff; margin-bottom: 16px; }
.foot-brand .logo-img { filter: brightness(0) invert(1); }
.foot-brand p { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.6; max-width: 280px; }
.foot-col h5 { font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.9); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 16px; }
.foot-col a { display:block; font-size: 14px; color: rgba(255,255,255,0.5); text-decoration:none; margin-bottom: 11px; transition: color 0.18s; }
.foot-col a:hover { color:#fff; }
.foot-bottom { display:flex; justify-content:space-between; align-items:center; padding-top: 28px; flex-wrap:wrap; gap:16px; }
.foot-bottom span { font-size: 13px; color: rgba(255,255,255,0.35); }
.foot-legal { display:flex; gap:22px; }
.foot-legal a { font-size: 13px; color: rgba(255,255,255,0.35); text-decoration:none; cursor:pointer; }
.foot-legal a:hover { color: rgba(255,255,255,0.6); }

/* ─── COOKIE BANNER ─── */
.cookie-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 300;
  background: var(--ink-2); border-top: 1px solid rgba(255,255,255,0.07);
  padding: 16px 32px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(.16,1,.3,1);
}
.cookie-bar.show { transform: translateY(0); }
.cookie-bar p { font-size: 13.5px; color: rgba(255,255,255,0.72); line-height: 1.5; flex: 1; min-width: 180px; }
.cookie-bar p a { color: rgba(255,255,255,0.5); text-decoration: underline; cursor: pointer; }
.cookie-bar p a:hover { color: #fff; }
.cookie-accept {
  font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 700;
  background: var(--red); color: #fff; border: none; border-radius: 8px;
  padding: 9px 20px; cursor: pointer; white-space: nowrap;
  transition: background 0.15s;
}
.cookie-accept:hover { background: var(--red-600); }

/* ─── MODALS ─── */
.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 400;
  background: rgba(20,20,26,0.55); backdrop-filter: blur(6px);
  align-items: flex-start; justify-content: center;
  padding: 60px 20px 40px; overflow-y: auto;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: var(--bg); border-radius: var(--r-lg);
  max-width: 660px; width: 100%; margin: auto;
  padding: 48px; position: relative;
  box-shadow: 0 32px 80px rgba(20,20,26,0.22);
}
.modal-close {
  position: absolute; top: 18px; right: 18px;
  background: var(--bg-3); border: none; border-radius: 9px;
  width: 36px; height: 36px; cursor: pointer; font-size: 20px;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); transition: background 0.15s;
}
.modal-close:hover { background: var(--line-2); color: var(--ink); }
.modal-box h2 { font-size: 26px; font-weight: 800; margin-bottom: 28px; }
.modal-box h3 { font-size: 15px; font-weight: 700; margin: 20px 0 6px; color: var(--ink-2); text-transform: uppercase; letter-spacing: 0.04em; }
.modal-box p, .modal-box address { font-size: 14.5px; color: var(--muted); line-height: 1.7; font-style: normal; margin-bottom: 6px; }
.modal-box a { color: var(--red); text-decoration: none; }
.modal-box a:hover { text-decoration: underline; }
.modal-hr { height: 1px; background: var(--line); margin: 24px 0; border: none; }

/* ─── SHARED SECTION GRIDS (Startseite + Unterseiten) ─── */
.prod-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 56px; }
.pcard-ico { width: 52px; height: 52px; border-radius: 13px; background: var(--bg-3); display: flex; align-items: center; justify-content: center; margin-bottom: 22px; }
.browser-bar { height: 28px; background:#f0f0f3; display:flex; align-items:center; gap:5px; padding: 0 12px; }
.browser-bar i { width:8px; height:8px; border-radius:50%; background:#d4d4d8; display:block; }

/* THEME GRID */
.theme-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 40px; margin-top: 64px; align-items: start; }
.theme-card { background: var(--bg); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; transition: box-shadow 0.2s, transform 0.2s; }
.theme-card:hover { box-shadow: 0 16px 48px rgba(20,20,26,0.08); transform: translateY(-3px); }
.theme-featured { grid-column: span 2; display: grid; grid-template-columns: 1.1fr 0.9fr; }
.theme-preview { background: var(--bg-3); padding: 24px; display: flex; align-items: center; justify-content: center; min-height: 260px; }
.theme-preview.has-shot { padding: 0; }
.theme-shot { display: block; width: 100%; height: 260px; object-fit: cover; object-position: top center; }
.tp-browser { width: 100%; max-width: 340px; border-radius: 10px; overflow: hidden; box-shadow: 0 12px 40px rgba(0,0,0,0.12); background:#fff; }
.tp-body { padding: 10px; }
.tp-hero { height: 60px; border-radius: 6px; background: linear-gradient(135deg, #189EFF 0%, #0066CC 100%); margin-bottom: 8px; }
.tp-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 6px; }
.tp-block { height: 36px; border-radius: 4px; background: var(--bg-3); }
.tp-block.tall { height: 52px; }
.theme-info { padding: 40px; }
.theme-info h3 { font-size: 28px; font-weight: 800; margin-bottom: 12px; letter-spacing: -0.03em; }
.theme-info p { font-size: 15px; color: var(--muted); line-height: 1.6; margin-bottom: 20px; }
.theme-info-sm { padding: 32px 34px 34px; }
.theme-info-sm h3 { font-size: 23px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 10px; }
.theme-info-sm p { font-size: 14.5px; color: var(--muted); line-height: 1.65; margin-bottom: 18px; }
.theme-pills { display: flex; flex-wrap: wrap; gap: 7px; }

/* TECH STRIP */
.tech-strip { display: flex; flex-wrap: wrap; gap: 10px; margin: 36px 0 48px; }
.tp-ico { width: 18px; height: 18px; display: block; flex-shrink: 0; }

/* WEB REFS */
.web-ref-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.web-ref { text-decoration: none; color: inherit; display: block; background: var(--bg); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; transition: box-shadow 0.2s, transform 0.2s; }
.web-ref:hover { box-shadow: 0 16px 48px rgba(20,20,26,0.08); transform: translateY(-3px); }
.web-ref-screen { border-bottom: 1px solid var(--line); }
.web-ref .browser-bar { background: #f0f0f3; border-radius: 10px 10px 0 0; }
.url-bar { font-size: 10px; color: var(--muted-2); background: var(--bg-2); border-radius: 4px; padding: 1px 8px; margin-left: 8px; flex: 1; }
.web-ref-body { height: 140px; display: flex; flex-direction: column; }
.web-ref-shot { display: block; width: 100%; height: 200px; object-fit: cover; object-position: top center; }
.wb-header { height: 44px; flex-shrink: 0; }
.wb-content { padding: 12px; flex: 1; }
.wb-ln { height: 7px; border-radius: 4px; background: var(--bg-3); margin-bottom: 7px; width: 100%; }
.wb-ln.s { width: 60%; }
.wb-ln.m { width: 80%; }
.wb-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 6px; margin-top: 8px; }
.wb-cards div { height: 22px; border-radius: 4px; background: var(--bg-3); }
.web-ref-info { padding: 24px; }
.web-ref-info h4 { font-size: 17px; font-weight: 700; margin: 6px 0 8px; }
.web-ref-info p { font-size: 13.5px; color: var(--muted); line-height: 1.55; margin-bottom: 12px; }
.ref-link { font-size: 13px; font-weight: 600; color: var(--red); }

/* APP CARDS */
.app-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; margin-top: 56px; }
.app-card { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; transition: box-shadow 0.2s, transform 0.2s; }
.app-card:hover { box-shadow: 0 16px 48px rgba(20,20,26,0.08); transform: translateY(-3px); }
.app-mockup { height: 220px; display: flex; flex-direction: column; }
.eoz-mockup { background: linear-gradient(135deg, #0d1117 0%, #161b22 100%); }
.gedufa-mockup { background: linear-gradient(135deg, #0d1f3c 0%, #1a3a6b 100%); }
.app-ui { display: flex; flex: 1; overflow: hidden; }
.app-sidebar { width: 52px; background: rgba(255,255,255,0.05); display: flex; flex-direction: column; gap: 8px; padding: 12px 8px; flex-shrink: 0; }
.sb-logo { height: 22px; border-radius: 5px; background: var(--red); opacity: 0.85; }
.sb-item { height: 14px; border-radius: 4px; background: rgba(255,255,255,0.1); }
.sb-item.active { background: rgba(226,35,26,0.5); }
.app-main { flex: 1; padding: 12px; display: flex; flex-direction: column; gap: 8px; overflow: hidden; }
.am-header { height: 18px; border-radius: 4px; background: rgba(255,255,255,0.06); }
.am-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 6px; }
.am-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: 6px; padding: 7px; }
.am-num { height: 10px; border-radius: 3px; background: rgba(255,255,255,0.2); margin-bottom: 4px; width: 60%; }
.am-label { height: 6px; border-radius: 3px; background: rgba(255,255,255,0.08); width: 80%; }
.am-chart { flex: 1; border-radius: 6px; background: rgba(226,35,26,0.12); border: 1px solid rgba(226,35,26,0.2); }
.app-info { padding: 28px; }
.app-info h3 { font-size: 22px; font-weight: 700; margin-bottom: 10px; }
.app-info p { font-size: 14.5px; color: var(--muted); line-height: 1.6; }

@media (max-width: 980px) {
  .prod-grid { grid-template-columns: 1fr 1fr; }
  .theme-grid, .theme-featured, .app-grid { grid-template-columns: 1fr; }
  .web-ref-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .prod-grid, .web-ref-grid { grid-template-columns: 1fr; }
  .theme-preview { min-height: 160px; }
  .theme-info, .app-info { padding: 28px; }
}

/* ─── REVEAL ANIMATION ─── */
.rv { opacity:0; transform: translateY(24px); transition: opacity 0.7s cubic-bezier(.16,1,.3,1), transform 0.7s cubic-bezier(.16,1,.3,1); }
.rv.vis { opacity:1; transform: none; }

/* (Keyframes accent-shimmer sind oben bei .hero h1 .accent definiert – Farb-Interpolation via @property) */

/* ─── DARK MODE PROTECTION ─── */
@media (prefers-color-scheme: dark) {
  html, body { background: #FFFFFF !important; color: var(--ink) !important; }
  .hero h1, .h2, .hero p, .lead, .feat h3, .feat p,
  .pcard h3, .pcard p, .tcard h4, .tcard p,
  .stat .n, .stat .l, .pill, .price { color: var(--ink); }
  .eyebrow, .ptype, .plink, .rtag { color: var(--red) !important; }
  .hero h1 .accent, .page-hero h1 .accent {
    background: linear-gradient(90deg, var(--acc-1), var(--acc-2), var(--acc-1)) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
    animation: accent-shimmer 3s ease-in-out infinite !important;
  }
  .lead, .hero p, .feat p, .pcard p, .tcard p, .stat .l { color: var(--muted) !important; }
  .cta-box, .cta-box * { color: #fff; }
  .cta-box h2 { color:#fff !important; }
  footer, footer * { color: rgba(255,255,255,0.5); }
  footer .foot-col h5, footer .logo { color: #fff !important; }
  .modal-box { background: #fff !important; }
  .modal-box h2, .modal-box h3, .modal-box p, .modal-box address { color: var(--ink) !important; }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 980px) {
  .nav-menu { display:none; }
  .hamburger { display: flex; }
  .nav-right .btn-red { display: none; }
  .feat-grid, .trio { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .two-col.reverse { direction: ltr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: span 1; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .foot-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .wrap { padding: 0 20px; }
  .nav-in { padding: 0 20px; }
  section.block { padding: 72px 0; }
  .feat-grid, .trio, .trust-grid, .stats, .blog-grid { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid var(--line); }
  .stat:last-child { border-bottom: none; }
  .cta-box { padding: 56px 24px; }
  .foot-top { grid-template-columns: 1fr; gap: 32px; }
  .page-hero { padding: 110px 0 48px; }
  .cookie-bar { padding: 14px 20px; }
  .modal-box { padding: 32px 22px; }
  .article-wrap { padding: 0 20px; }
}
