/* ============================================================
   L1A1 AI SERVICES · style.css
   Claude/Anthropic aesthetic · Inter · Orange accent
   ============================================================ */

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; background: var(--bg-light); color: var(--text-primary); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul { list-style: none; }

/* === DESIGN TOKENS === */
:root {
  --bg-hero:       #08080e;
  --bg-dark:       #0c0c18;
  --bg-light:      #f8f8f6;
  --bg-card:       #ffffff;
  --bg-card-alt:   #f2f2ef;

  --text-primary:  #18181f;
  --text-secondary:#4a4a5a;
  --text-muted:    #8a8a9a;

  --accent:        #f97316;
  --accent-hover:  #ea6c0f;
  --accent-light:  rgba(249,115,22,0.11);
  --green:         #22c55e;
  --green-light:   rgba(34,197,94,0.11);
  --yellow:        #f59e0b;
  --yellow-light:  rgba(245,158,11,0.11);
  --red-light:     rgba(239,68,68,0.08);

  --border-dark:   rgba(255,255,255,0.07);
  --border-light:  rgba(0,0,0,0.07);

  --grad-text:     linear-gradient(135deg, #f97316 0%, #ec4899 55%, #a855f7 100%);

  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;
  --text-2xl:  1.5rem;
  --text-3xl:  clamp(1.75rem, 3vw, 2.25rem);
  --text-4xl:  clamp(2.25rem, 5vw, 3.5rem);
  --text-hero: clamp(3rem, 7vw, 5.5rem);

  --section-py:   clamp(5rem, 10vw, 8rem);
  --container-px: clamp(1.25rem, 5vw, 2rem);
  --container-max:1100px;

  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-io:     cubic-bezier(0.4, 0, 0.2, 1);
  --dur-fast:    150ms;
  --dur-normal:  300ms;
  --dur-slow:    500ms;
  --dur-reveal:  680ms;

  --r-sm:   8px;
  --r-md:   12px;
  --r-lg:   20px;
  --r-xl:   32px;
  --r-full: 9999px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.07), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
  --shadow-acc:0 8px 32px rgba(249,115,22,0.25);
}

/* === UTILITIES === */
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 var(--container-px); }

.section-label {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: var(--text-xs); font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 1rem;
}

.section-title {
  font-size: var(--text-4xl); font-weight: 800; line-height: 1.1;
  letter-spacing: -.02em; color: var(--text-primary); margin-bottom: 1.25rem;
}

.section-desc {
  font-size: var(--text-lg); color: var(--text-secondary);
  max-width: 580px; line-height: 1.65; margin-bottom: 3rem;
}

.section-intro {
  font-size: var(--text-base); color: var(--text-secondary);
  max-width: 680px; line-height: 1.7; margin-bottom: 2rem;
}

.gradient-text {
  background: var(--grad-text);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* === REVEAL ANIMATIONS === */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity var(--dur-reveal) var(--ease-out), transform var(--dur-reveal) var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* === ECO-BAR === */
.eco-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 110;
  height: 32px; background: rgba(5,5,12,0.96);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center;
  transition: transform 0.3s var(--ease-out), opacity 0.3s ease;
}
.eco-bar.hidden { transform: translateY(-100%); opacity: 0; }
.eco-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 var(--container-px);
  width: 100%; display: flex; align-items: center; gap: .75rem;
}
.eco-label {
  font-size: .65rem; font-weight: 600; letter-spacing: .08em;
  color: rgba(255,255,255,0.3); text-transform: uppercase;
  display: flex; align-items: center; gap: .3rem; white-space: nowrap;
}
.eco-icon { width: 10px; height: 10px; }
.eco-sep  { width: 1px; height: 14px; background: rgba(255,255,255,0.1); flex-shrink: 0; }
.eco-links { display: flex; align-items: center; gap: .15rem; flex-wrap: wrap; }
.eco-link {
  font-size: .65rem; font-weight: 500; color: rgba(255,255,255,0.38);
  padding: .2rem .5rem; border-radius: 4px;
  display: flex; align-items: center; gap: .3rem;
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}
.eco-link:hover { color: rgba(255,255,255,0.75); background: rgba(255,255,255,0.06); }
.eco-link-active { color: var(--accent) !important; background: rgba(249,115,22,0.1); }
.eco-link-active:hover { background: rgba(249,115,22,0.15); }
.eco-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: rgba(255,255,255,0.25); flex-shrink: 0;
}
.eco-dot-orange { background: var(--accent); }
.eco-dot-purple { background: #a855f7; }
.eco-dot-blue   { background: #3b82f6; }
@media (max-width: 600px) {
  .eco-label { display: none; }
  .eco-sep   { display: none; }
  .eco-link  { font-size: .6rem; padding: .15rem .35rem; }
}

/* === NAVBAR === */
#navbar {
  position: fixed; top: 32px; left: 0; right: 0; z-index: 100;
  transition: background var(--dur-normal) var(--ease-io),
              box-shadow var(--dur-normal) var(--ease-io),
              top 0.3s var(--ease-out);
}
#navbar.eco-hidden { top: 0; }
#navbar.scrolled {
  background: rgba(8,8,14,0.93);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border-dark);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 var(--container-px);
  height: 64px; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: flex-end; gap: .35rem; }
.logo-l1  { font-size: 1.25rem; font-weight: 900; color: #fff; letter-spacing: -.04em; }
.logo-ai  { font-size: .65rem; font-weight: 600; letter-spacing: .1em; color: var(--accent); padding-bottom: 2px; }

.nav-links { display: flex; align-items: center; gap: .25rem; }
.nav-links li a {
  font-size: var(--text-sm); font-weight: 500; color: rgba(255,255,255,0.7);
  padding: .4rem .75rem; border-radius: var(--r-full);
  transition: color var(--dur-fast), background var(--dur-fast);
}
.nav-links li a:hover { color: #fff; background: rgba(255,255,255,0.07); }
.nav-links .nav-cta {
  background: var(--accent); color: #fff !important; padding: .45rem 1.1rem;
  border-radius: var(--r-full); font-weight: 600;
  transition: background var(--dur-fast), transform var(--dur-fast), box-shadow var(--dur-fast) !important;
}
.nav-links .nav-cta:hover { background: var(--accent-hover); transform: translateY(-1px); box-shadow: var(--shadow-acc); }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger span { display: block; width: 22px; height: 2px; background: rgba(255,255,255,0.8); border-radius: 2px; transition: transform var(--dur-normal) var(--ease-out), opacity var(--dur-normal); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none; flex-direction: column; padding: 1rem var(--container-px) 1.5rem;
  background: rgba(8,8,14,0.97); backdrop-filter: blur(20px);
  border-top: 1px solid var(--border-dark);
}
.nav-mobile.open { display: flex; }
.nav-mobile a { font-size: var(--text-base); font-weight: 500; color: rgba(255,255,255,0.7); padding: .75rem 0; border-bottom: 1px solid var(--border-dark); transition: color var(--dur-fast); }
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:hover { color: #fff; }
.nav-mobile .nav-cta { margin-top: .75rem; text-align: center; background: var(--accent); color: #fff !important; padding: .75rem 1rem; border-radius: var(--r-md); font-weight: 600; }

/* === HERO === */
#hero {
  position: relative; min-height: 100svh; background: var(--bg-hero);
  display: flex; align-items: center; overflow: hidden;
  padding-top: 32px; /* eco-bar height */
}
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.028) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.028) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
}
.orb { position: absolute; border-radius: 50%; filter: blur(90px); pointer-events: none; }
.orb-1 { width: 600px; height: 600px; background: radial-gradient(circle, rgba(249,115,22,0.22) 0%, transparent 70%); top: -180px; left: -180px; animation: orbFloat 13s ease-in-out infinite; }
.orb-2 { width: 500px; height: 500px; background: radial-gradient(circle, rgba(168,85,247,0.18) 0%, transparent 70%); bottom: -140px; right: -140px; animation: orbFloat 17s ease-in-out infinite reverse; }
@keyframes orbFloat { 0%,100% { transform: translate(0,0) scale(1); } 33% { transform: translate(28px,-28px) scale(1.05); } 66% { transform: translate(-18px,18px) scale(0.97); } }

.hero-inner { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; padding: 120px var(--container-px) 100px; text-align: center; }

.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: var(--text-xs); font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.055); border: 1px solid rgba(255,255,255,0.1);
  padding: .4rem 1rem; border-radius: var(--r-full); margin-bottom: 2rem;
}
.badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 2px rgba(34,197,94,0.3); } 50% { box-shadow: 0 0 0 6px rgba(34,197,94,0.08); } }

.hero-title { font-size: var(--text-hero); font-weight: 900; line-height: 1.0; letter-spacing: -.03em; color: #fff; margin-bottom: 1rem; }
.hero-claim { font-size: clamp(1rem, 2.5vw, 1.4rem); font-weight: 500; color: rgba(255,255,255,0.45); letter-spacing: .02em; margin-bottom: 1.25rem; }
.hero-desc { font-size: var(--text-base); color: rgba(255,255,255,0.5); line-height: 1.7; max-width: 560px; margin: 0 auto 2.5rem; }

.hero-actions { display: flex; gap: .75rem; justify-content: center; flex-wrap: wrap; margin-bottom: 3.5rem; }
.btn-primary {
  display: inline-flex; align-items: center; gap: .5rem; padding: .9rem 1.75rem;
  background: var(--accent); color: #fff; font-weight: 700; font-size: var(--text-base); border-radius: var(--r-full);
  transition: background var(--dur-fast), transform var(--dur-normal) var(--ease-out), box-shadow var(--dur-normal);
}
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(249,115,22,0.35); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: .5rem; padding: .9rem 1.75rem;
  color: rgba(255,255,255,0.65); font-weight: 600; font-size: var(--text-base); border-radius: var(--r-full);
  border: 1px solid rgba(255,255,255,0.14);
  transition: color var(--dur-fast), border-color var(--dur-fast), background var(--dur-fast);
}
.btn-ghost:hover { color: #fff; border-color: rgba(255,255,255,0.28); background: rgba(255,255,255,0.06); }

.hero-proof {
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r-xl); padding: 1.25rem 1.5rem;
}
.proof-item {
  display: flex; flex-wrap: wrap; align-items: baseline; justify-content: center;
  column-gap: 1px; row-gap: .3rem; padding: .5rem 1.25rem;
}
.proof-num { font-size: 2rem; font-weight: 900; color: #fff; letter-spacing: -.03em; line-height: 1; }
.proof-unit { font-size: var(--text-sm); font-weight: 700; color: var(--accent); align-self: flex-end; padding-bottom: 2px; }
.proof-label { width: 100%; text-align: center; font-size: .65rem; color: rgba(255,255,255,0.4); font-weight: 500; letter-spacing: .02em; white-space: nowrap; }
.proof-div { width: 1px; height: 44px; background: rgba(255,255,255,0.09); margin: 0 .25rem; }

.scroll-hint { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: .5rem; transition: opacity var(--dur-slow); }
.scroll-hint.hidden { opacity: 0; }
.scroll-hint span { font-size: .6rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,0.28); }
.scroll-line { width: 1px; height: 36px; background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent); animation: scrollPulse 1.9s ease-in-out infinite; }
@keyframes scrollPulse { 0% { transform: scaleY(0); transform-origin: top; opacity: 0; } 50% { transform: scaleY(1); opacity: 1; } 100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; } }

/* === PROBLEM === */
#problem { padding: var(--section-py) 0; background: var(--bg-light); }
.pain-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; margin-bottom: 2.5rem; }
.pain-card { background: var(--bg-card); border: 1px solid var(--border-light); border-radius: var(--r-lg); padding: 1.5rem; transition: transform var(--dur-normal) var(--ease-out), box-shadow var(--dur-normal), border-color var(--dur-normal); }
.pain-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(249,115,22,0.2); }
.pain-icon { font-size: 1.75rem; margin-bottom: .75rem; }
.pain-card h3 { font-size: var(--text-base); font-weight: 700; color: var(--text-primary); margin-bottom: .5rem; }
.pain-card p  { font-size: var(--text-sm); color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.pain-time { display: inline-block; font-size: var(--text-xs); font-weight: 600; color: var(--accent); background: var(--accent-light); padding: .25rem .75rem; border-radius: var(--r-full); }

.problem-total { background: linear-gradient(135deg,#18181f,#1e1e2e); border-radius: var(--r-xl); padding: 2.5rem 3rem; text-align: center; border: 1px solid rgba(255,255,255,0.07); }
.total-inner { display: flex; flex-direction: column; align-items: center; gap: .5rem; }
.total-label { font-size: var(--text-xs); font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,0.45); }
.total-value { font-size: clamp(2.5rem,5vw,4rem); font-weight: 900; letter-spacing: -.03em; background: var(--grad-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.total-sub { font-size: var(--text-base); color: rgba(255,255,255,0.45); max-width: 520px; line-height: 1.6; }

/* === LÖSUNG === */
#loesung { padding: var(--section-py) 0; background: var(--bg-dark); }
#loesung .section-label, #loesung .section-title { color: rgba(255,255,255,0.9); }

.steps-grid { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: center; gap: 1rem; }
.step-card { background: rgba(255,255,255,0.035); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--r-lg); padding: 2rem 1.5rem; text-align: center; transition: border-color var(--dur-normal), background var(--dur-normal), transform var(--dur-normal) var(--ease-out); }
.step-card:hover { border-color: rgba(249,115,22,0.3); background: rgba(249,115,22,0.04); transform: translateY(-4px); }
.step-num  { font-size: 3rem; font-weight: 900; color: rgba(255,255,255,0.07); letter-spacing: -.04em; line-height: 1; margin-bottom: .5rem; }
.step-icon { font-size: 2rem; margin-bottom: .75rem; }
.step-card h3 { font-size: var(--text-xl); font-weight: 700; color: #fff; margin-bottom: .75rem; }
.step-card p  { font-size: var(--text-sm); color: rgba(255,255,255,0.5); line-height: 1.65; margin-bottom: 1rem; }
.step-time { display: inline-block; font-size: var(--text-xs); font-weight: 600; color: var(--accent); background: var(--accent-light); padding: .25rem .75rem; border-radius: var(--r-full); }
.step-arrow { font-size: 1.5rem; color: rgba(255,255,255,0.18); text-align: center; }

/* === SZENARIEN === */
#szenarien { padding: var(--section-py) 0; background: var(--bg-light); }
.tabs { display: flex; gap: .5rem; margin-bottom: 2rem; flex-wrap: wrap; row-gap: .45rem; }
.tab { padding: .6rem 1.25rem; border-radius: var(--r-full); font-size: var(--text-sm); font-weight: 600; color: var(--text-secondary); background: var(--bg-card); border: 1px solid var(--border-light); transition: all var(--dur-fast); }
.tab:hover { border-color: var(--accent); color: var(--accent); }
.tab.active { background: var(--accent); color: #fff; border-color: var(--accent); box-shadow: 0 4px 16px rgba(249,115,22,0.25); }
.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fadeSlide 300ms var(--ease-out); }
@keyframes fadeSlide { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

.scenario-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: start; }
.scenario-info h3 { font-size: var(--text-2xl); font-weight: 800; color: var(--text-primary); margin-bottom: .75rem; }
.scenario-info > p { font-size: var(--text-base); color: var(--text-secondary); line-height: 1.65; margin-bottom: 1.5rem; }
.scenario-list { display: flex; flex-direction: column; gap: .6rem; margin-bottom: 1.5rem; }
.scenario-list li { font-size: var(--text-sm); color: var(--text-secondary); line-height: 1.5; }
.scenario-result { display: flex; align-items: center; gap: .75rem; background: var(--green-light); border: 1px solid rgba(34,197,94,0.2); border-radius: var(--r-md); padding: 1rem 1.25rem; font-size: var(--text-sm); color: var(--text-secondary); }
.scenario-result strong { font-size: var(--text-lg); font-weight: 700; color: var(--green); }

.scenario-demo { background: var(--bg-card); border: 1px solid var(--border-light); border-radius: var(--r-lg); padding: 1.5rem; box-shadow: var(--shadow-sm); }
.demo-label { font-size: var(--text-xs); font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 1rem; }

.demo-chat { display: flex; flex-direction: column; gap: .75rem; }
.chat-bubble { max-width: 85%; padding: .75rem 1rem; border-radius: 12px; font-size: var(--text-sm); line-height: 1.5; }
.chat-cust { background: #f0f0ee; color: var(--text-primary); border-bottom-right-radius: 4px; align-self: flex-end; }
.chat-bot  { background: linear-gradient(135deg,#1a1a2e,#24243e); color: rgba(255,255,255,0.84); border-bottom-left-radius: 4px; align-self: flex-start; }
.bot-tag   { display: block; font-size: .65rem; font-weight: 600; color: var(--accent); letter-spacing: .05em; margin-bottom: .4rem; }

.demo-workflow { display: flex; flex-direction: column; gap: .5rem; }
.wf-step { background: #f4f4f2; border: 1px solid var(--border-light); border-radius: var(--r-md); padding: .75rem 1rem; font-size: var(--text-sm); color: var(--text-secondary); font-weight: 500; }
.wf-step.wf-active { background: var(--accent-light); border-color: rgba(249,115,22,0.28); color: var(--accent); font-weight: 600; }
.wf-arrow { text-align: center; color: var(--text-muted); font-size: .75rem; }

/* === FUNKTIONEN === */
#funktionen { padding: var(--section-py) 0; background: #f1f1ed; }
.func-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }
.func-card { background: var(--bg-card); border: 1px solid var(--border-light); border-radius: var(--r-lg); padding: 1.75rem 1.5rem; }
.fc-green { border-top: 3px solid var(--green); }
.fc-yellow { border-top: 3px solid var(--yellow); }
.fc-red    { border-top: 3px solid #f87171; }
.fc-head   { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.25rem; }
.fc-badge  { font-size: var(--text-xs); font-weight: 700; padding: .3rem .75rem; border-radius: var(--r-full); }
.fc-g { background: var(--green-light); color: #16a34a; }
.fc-y { background: var(--yellow-light); color: #b45309; }
.fc-r { background: var(--red-light); color: #dc2626; }
.fc-pct { font-size: var(--text-xs); font-weight: 600; color: var(--text-muted); }
.func-card ul { display: flex; flex-direction: column; gap: .6rem; margin-bottom: 1rem; }
.func-card ul li { font-size: var(--text-sm); color: var(--text-secondary); line-height: 1.4; }
.fc-note { font-size: var(--text-xs); color: var(--text-muted); font-style: italic; padding-top: .75rem; border-top: 1px solid var(--border-light); }

/* === PREISE === */
#preise { padding: var(--section-py) 0; background: var(--bg-light); }
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; margin-bottom: 3rem; align-items: start; }
.pricing-card { background: var(--bg-card); border: 1px solid var(--border-light); border-radius: var(--r-xl); padding: 2rem 1.75rem; position: relative; transition: transform var(--dur-normal) var(--ease-out), box-shadow var(--dur-normal); }
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pc-featured { border: 2px solid var(--accent); box-shadow: 0 8px 40px rgba(249,115,22,0.14); transform: scale(1.02); }
.pc-featured:hover { transform: scale(1.02) translateY(-4px); }
.pc-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--accent); color: #fff; font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: .25rem 1rem; border-radius: var(--r-full); box-shadow: 0 4px 16px rgba(249,115,22,0.3); white-space: nowrap; }
.pc-tier { font-size: var(--text-xs); font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 1rem; }
.pc-price { display: flex; align-items: baseline; gap: .1rem; margin-bottom: .25rem; }
.pc-num  { font-size: 3rem; font-weight: 900; color: var(--text-primary); letter-spacing: -.04em; line-height: 1; }
.pc-curr { font-size: var(--text-xl); font-weight: 700; color: var(--text-primary); align-self: baseline; }
.pc-per  { font-size: var(--text-sm); color: var(--text-muted); margin-left: .25rem; }
.pc-setup { font-size: var(--text-xs); color: var(--text-muted); margin-bottom: 1.25rem; }
.pc-hr { border: none; border-top: 1px solid var(--border-light); margin-bottom: 1.25rem; }
.pc-features { display: flex; flex-direction: column; gap: .6rem; margin-bottom: 1.75rem; }
.f-ok, .f-no { font-size: var(--text-sm); line-height: 1.5; padding-left: 1.5rem; position: relative; }
.f-ok::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 700; }
.f-no::before { content: '–'; position: absolute; left: 0; color: var(--text-muted); }
.f-no { color: var(--text-muted); }
.pc-btn { display: block; text-align: center; padding: .875rem; border-radius: var(--r-md); font-size: var(--text-sm); font-weight: 700; background: var(--bg-card-alt); color: var(--text-primary); border: 1px solid var(--border-light); transition: all var(--dur-fast); }
.pc-btn:hover { background: var(--text-primary); color: #fff; border-color: var(--text-primary); }
.pc-btn-feat { background: var(--accent); color: #fff !important; border-color: var(--accent); box-shadow: 0 4px 20px rgba(249,115,22,0.3); }
.pc-btn-feat:hover { background: var(--accent-hover) !important; box-shadow: 0 8px 32px rgba(249,115,22,0.4); transform: translateY(-1px); border-color: var(--accent-hover) !important; }

.addons { background: var(--bg-card); border: 1px solid var(--border-light); border-radius: var(--r-xl); padding: 2rem; margin-bottom: 2rem; }
.addons h3 { font-size: var(--text-xl); font-weight: 700; color: var(--text-primary); margin-bottom: 1.25rem; }
.addon-row { display: flex; justify-content: space-between; align-items: center; padding: .875rem 0; border-bottom: 1px solid var(--border-light); font-size: var(--text-sm); color: var(--text-secondary); }
.addon-row:last-child { border-bottom: none; }
.addon-price { font-weight: 700; color: var(--accent); white-space: nowrap; margin-left: 1rem; }

.roi { background: linear-gradient(135deg,#18181f,#1e1e2e); border-radius: var(--r-xl); padding: 2.5rem; }
.roi h3 { font-size: var(--text-xl); font-weight: 700; color: rgba(255,255,255,0.9); margin-bottom: 1.5rem; }
.roi-table { display: flex; flex-direction: column; margin-bottom: 1.25rem; }
.roi-row { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 1rem; padding: .875rem 0; border-bottom: 1px solid rgba(255,255,255,0.06); font-size: var(--text-sm); color: rgba(255,255,255,0.55); align-items: center; }
.roi-row:last-child { border-bottom: none; }
.roi-head { color: rgba(255,255,255,0.3); font-size: var(--text-xs); font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.roi-total { color: rgba(255,255,255,0.9); font-weight: 700; font-size: var(--text-base); border-top: 1px solid rgba(255,255,255,0.12) !important; margin-top: .5rem; }
.r-bad  { color: #f87171; font-weight: 600; }
.r-good { color: var(--green); font-weight: 600; }
.r-neutral { color: rgba(255,255,255,0.28); }
.roi-note { font-size: var(--text-sm); color: rgba(255,255,255,0.45); text-align: center; font-style: italic; }

/* --- Warum Apple Silicon? --- */
.apple-why {
  margin-top: 2.5rem;
  background: var(--bg-card); border: 1px solid var(--border-light);
  border-radius: var(--r-xl); padding: 2rem 2rem 1.75rem;
}
.apple-why-header {
  display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem;
}
.apple-why-icon { width: 2rem; height: 2rem; color: var(--text-secondary); flex-shrink: 0; margin-top: .15rem; }
.apple-why-title { font-size: var(--text-lg); font-weight: 700; color: var(--text-primary); margin-bottom: .2rem; }
.apple-why-sub   { font-size: var(--text-sm); color: var(--text-secondary); }
.apple-why-grid  {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; margin-bottom: 1.25rem;
}
.apple-why-item  {
  display: flex; flex-direction: column; gap: .3rem;
  background: var(--bg-card-alt); border-radius: var(--r-md);
  padding: 1rem 1rem .9rem; font-size: var(--text-sm);
}
.awy-icon { width: 1.1rem; height: 1.1rem; color: var(--accent); margin-bottom: .1rem; }
.apple-why-item strong { font-weight: 700; color: var(--text-primary); font-size: .82rem; }
.apple-why-item span   { color: var(--text-secondary); font-size: .78rem; line-height: 1.55; }
.apple-why-note {
  font-size: .78rem; color: var(--text-muted);
  display: flex; align-items: flex-start; gap: .35rem; line-height: 1.55;
  border-top: 1px solid var(--border-light); padding-top: 1rem;
}
@media (max-width: 768px) {
  .apple-why-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .apple-why-grid { grid-template-columns: 1fr; }
}

/* === APP SHOWCASE === */
#app-showcase { padding: var(--section-py) 0; background: var(--bg-hero); }
#app-showcase .section-label,
#app-showcase .section-title { color: rgba(255,255,255,0.92); }
#app-showcase .section-desc  { color: rgba(255,255,255,0.5); }

.app-window-link {
  display: block; text-decoration: none; color: inherit;
  border-radius: 14px; margin-top: 2.5rem;
  outline-offset: 4px;
}
.app-window {
  border-radius: 14px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 40px 100px rgba(0,0,0,.7), 0 0 0 1px rgba(255,255,255,0.06);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.app-window-link:hover .app-window {
  transform: translateY(-6px) scale(1.005);
  box-shadow: 0 60px 120px rgba(0,0,0,.8), 0 0 0 1px rgba(249,115,22,0.25);
}
.app-window-bar {
  background: #1c1c1e; border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: .7rem 1rem; display: flex; align-items: center; gap: .4rem;
}
.awb-dot { width: 12px; height: 12px; border-radius: 50%; display: inline-block; }
.awb-red    { background: #ff5f57; }
.awb-yellow { background: #febc2e; }
.awb-green  { background: #28c840; }
.awb-title  {
  margin-left: .6rem; font-size: .72rem; font-weight: 500;
  color: rgba(255,255,255,0.35); letter-spacing: .04em;
}
.app-window-screen { position: relative; overflow: hidden; line-height: 0; }
.app-window-screen img {
  width: 100%; height: auto; display: block;
  transition: filter 0.3s ease;
}
.app-window-link:hover .app-window-screen img { filter: brightness(0.85); }
.app-window-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s ease;
}
.app-window-link:hover .app-window-overlay { opacity: 1; }
.app-window-cta {
  background: var(--accent); color: #fff;
  border-radius: 50px; padding: .75rem 1.75rem;
  font-weight: 700; font-size: .95rem;
  display: flex; align-items: center; gap: .5rem;
  box-shadow: 0 8px 30px rgba(249,115,22,.45);
}
.awo-icon { width: 1rem; height: 1rem; }

/* App Feature Grid */
.app-feats {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1rem; margin-top: 2.5rem;
}
.app-feat {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r-lg); padding: 1.25rem 1.25rem 1.15rem;
  display: flex; flex-direction: column; gap: .3rem;
  transition: border-color 0.25s, background 0.25s, transform 0.25s var(--ease-out);
}
.app-feat:hover {
  border-color: rgba(249,115,22,0.25); background: rgba(249,115,22,0.04);
  transform: translateY(-3px);
}
.af-icon { width: 1.2rem; height: 1.2rem; color: var(--accent); margin-bottom: .15rem; }
.app-feat strong { font-size: .82rem; font-weight: 700; color: rgba(255,255,255,0.88); }
.app-feat span   { font-size: .75rem; color: rgba(255,255,255,0.42); line-height: 1.55; }

@media (max-width: 900px)  { .app-feats { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 540px)  { .app-feats { grid-template-columns: 1fr; } }

/* === DATENSCHUTZ === */
#datenschutz { padding: var(--section-py) 0; background: var(--bg-dark); }
#datenschutz .section-label, #datenschutz .section-title { color: rgba(255,255,255,0.9); }
.tech-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }
.tech-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07); border-radius: var(--r-lg); padding: 1.75rem; transition: border-color var(--dur-normal), background var(--dur-normal), transform var(--dur-normal) var(--ease-out); }
.tech-card:hover { border-color: rgba(249,115,22,0.25); background: rgba(249,115,22,0.03); transform: translateY(-3px); }
.tc-icon { font-size: 1.75rem; margin-bottom: .75rem; }
.tech-card h3 { font-size: var(--text-base); font-weight: 700; color: rgba(255,255,255,0.9); margin-bottom: .5rem; }
.tech-card p  { font-size: var(--text-sm); color: rgba(255,255,255,0.48); line-height: 1.65; }

/* === REFERENZ === */
#referenz { padding: var(--section-py) 0; background: var(--bg-light); }
.case-study { background: var(--bg-card); border: 1px solid var(--border-light); border-radius: var(--r-xl); padding: 2.5rem; display: grid; grid-template-columns: auto 1fr; gap: 2.5rem; align-items: start; box-shadow: var(--shadow-md); }
.case-logo-wrap { display: flex; flex-direction: column; align-items: center; gap: .5rem; }
.case-logo { width: 72px; height: 72px; border-radius: var(--r-lg); background: linear-gradient(135deg,#1a1a2e,#24243e); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; font-weight: 900; color: var(--accent); letter-spacing: -.04em; }
.case-sub { font-size: .58rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted); text-align: center; line-height: 1.4; }
.case-content h3 { font-size: var(--text-xl); font-weight: 700; color: var(--text-primary); margin-bottom: .25rem; }
.case-loc { font-size: var(--text-sm); color: var(--text-muted); margin-bottom: 1rem; }
.case-content > p { font-size: var(--text-base); color: var(--text-secondary); line-height: 1.65; margin-bottom: 1.5rem; }
.case-stats { display: flex; gap: 2rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
.cs-stat { display: flex; flex-direction: column; gap: .2rem; }
.cs-num { font-size: var(--text-2xl); font-weight: 900; color: var(--accent); letter-spacing: -.03em; }
.cs-label { font-size: var(--text-xs); color: var(--text-muted); font-weight: 600; }
.case-link { display: inline-flex; align-items: center; gap: .4rem; font-size: var(--text-sm); font-weight: 600; color: var(--accent); border-bottom: 1px solid var(--accent-light); padding-bottom: 1px; transition: border-color var(--dur-fast), gap var(--dur-fast); }
.case-link:hover { border-color: var(--accent); gap: .7rem; }

/* === FAQ === */
#faq { padding: var(--section-py) 0; background: #f1f1ed; }
.faq-list { max-width: 740px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border-light); }
.faq-item:first-child { border-top: 1px solid var(--border-light); }
.faq-q { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 1.25rem 0; font-size: var(--text-base); font-weight: 600; color: var(--text-primary); text-align: left; transition: color var(--dur-fast); }
.faq-q::after { content: '+'; font-size: 1.25rem; font-weight: 300; color: var(--text-muted); transition: transform var(--dur-normal) var(--ease-out), color var(--dur-fast); flex-shrink: 0; margin-left: 1rem; }
.faq-item.open .faq-q { color: var(--accent); }
.faq-item.open .faq-q::after { transform: rotate(45deg); color: var(--accent); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height var(--dur-slow) var(--ease-out); font-size: var(--text-sm); color: var(--text-secondary); line-height: 1.7; }
.faq-a.open { max-height: 300px; padding-bottom: 1.25rem; }

/* === KONTAKT === */
#kontakt { padding: var(--section-py) 0; background: var(--bg-dark); }
.cta-wrap { display: grid; grid-template-columns: 1fr auto; gap: 3rem; align-items: start; }
.cta-text .section-label { margin-bottom: .75rem; }
.cta-text h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; color: rgba(255,255,255,0.95); line-height: 1.15; letter-spacing: -.02em; margin-bottom: 1rem; }
.cta-text > p { font-size: var(--text-base); color: rgba(255,255,255,0.5); line-height: 1.65; margin-bottom: 2rem; max-width: 480px; }
.cta-btns { display: flex; gap: .75rem; margin-bottom: 1.75rem; flex-wrap: wrap; }
.cta-btn { display: inline-flex; align-items: center; gap: .5rem; padding: .875rem 1.5rem; border-radius: var(--r-md); font-size: var(--text-sm); font-weight: 700; transition: all var(--dur-fast); }
.cta-wa   { background: #25D366; color: #fff; }
.cta-wa:hover { background: #1ebe5b; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.28); }
.cta-mail { background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.75); border: 1px solid rgba(255,255,255,0.12); }
.cta-mail:hover { background: rgba(255,255,255,0.12); color: #fff; }
.cta-info { display: flex; flex-direction: column; gap: .5rem; font-size: var(--text-sm); color: rgba(255,255,255,0.38); }
.cta-checklist { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07); border-radius: var(--r-xl); padding: 2rem; min-width: 280px; display: flex; flex-direction: column; gap: .875rem; }
.cl-item { display: flex; align-items: center; gap: .75rem; font-size: var(--text-sm); color: rgba(255,255,255,0.62); font-weight: 500; }

/* === FOOTER === */
footer { background: #060609; border-top: 1px solid rgba(255,255,255,0.06); padding: 3rem 0 2rem; }
.footer-inner { max-width: var(--container-max); margin: 0 auto; padding: 0 var(--container-px); display: grid; grid-template-columns: 1fr auto auto; gap: 3rem; align-items: start; }
.footer-logo { display: flex; align-items: flex-end; gap: .35rem; margin-bottom: .75rem; }
.footer-brand p { font-size: var(--text-sm); color: rgba(255,255,255,0.32); line-height: 1.6; max-width: 260px; }
.footer-nav { display: flex; flex-direction: column; gap: .5rem; }
.footer-nav a { font-size: var(--text-sm); color: rgba(255,255,255,0.38); font-weight: 500; transition: color var(--dur-fast); }
.footer-nav a:hover { color: rgba(255,255,255,0.8); }
.footer-legal { text-align: right; }
.footer-legal p { font-size: var(--text-xs); color: rgba(255,255,255,0.28); line-height: 1.8; }
.footer-legal a { color: rgba(255,255,255,0.38); transition: color var(--dur-fast); }
.footer-legal a:hover { color: var(--accent); }
.footer-legal-links { display: flex; align-items: center; justify-content: flex-end; gap: .4rem; margin-top: .35rem; }
.footer-legal-sep { color: rgba(255,255,255,0.18); font-size: var(--text-xs); }
.footer-legal-btn {
  font-size: var(--text-xs); color: rgba(255,255,255,0.38); font-weight: 500;
  background: none; border: none; cursor: pointer; padding: 0;
  font-family: inherit; transition: color var(--dur-fast);
}
.footer-legal-btn:hover { color: var(--accent); text-decoration: underline; }

/* === LEGAL MODALS (Impressum / Datenschutz) === */
.legal-modal {
  position: fixed; inset: 0; z-index: 10000;
  display: flex; align-items: flex-end; justify-content: center;
  padding: 0;
}
@media (min-width: 600px) {
  .legal-modal { align-items: center; padding: 1.5rem; }
}
.legal-modal[hidden] { display: none; }

.legal-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  animation: fadeIn 0.2s ease;
  cursor: pointer;
}

.legal-modal-panel {
  position: relative; z-index: 1;
  background: #0f0f1a;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px 20px 0 0;
  width: 100%; max-width: 700px; max-height: 90vh;
  display: flex; flex-direction: column;
  box-shadow: 0 -20px 60px rgba(0,0,0,0.6);
  animation: slideUpSheet 0.3s var(--ease-out);
  overflow: hidden;
}
@media (min-width: 600px) {
  .legal-modal-panel {
    border-radius: 20px;
    max-height: 85vh;
    animation: slideUp 0.25s var(--ease-out);
  }
}
@keyframes slideUpSheet {
  from { transform: translateY(100%); }
  to   { transform: translateY(0); }
}

.legal-modal-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 1.5rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  flex-shrink: 0;
}
.legal-modal-title {
  font-size: 1rem; font-weight: 700; color: rgba(255,255,255,0.92);
  display: flex; align-items: center; gap: .5rem; margin: 0;
}
.legal-icon { width: 1.1rem; height: 1.1rem; color: var(--accent); flex-shrink: 0; }

.legal-modal-body {
  overflow-y: auto; padding: 1.5rem;
  flex: 1;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.1) transparent;
}
.legal-modal-body::-webkit-scrollbar { width: 4px; }
.legal-modal-body::-webkit-scrollbar-track { background: transparent; }
.legal-modal-body::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.12); border-radius: 2px; }

.legal-section { margin-bottom: 1.75rem; }
.legal-section:last-child { margin-bottom: 0; }
.legal-section h3 {
  font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--accent); margin-bottom: .6rem;
}
.legal-section p {
  font-size: .84rem; color: rgba(255,255,255,0.55); line-height: 1.7;
  margin-bottom: .5rem;
}
.legal-section p:last-child { margin-bottom: 0; }
.legal-section a { color: rgba(255,255,255,0.7); text-decoration: underline; }
.legal-section a:hover { color: var(--accent); }
.legal-section code {
  font-family: 'SF Mono', 'Fira Code', monospace;
  font-size: .78rem; background: rgba(255,255,255,0.07);
  padding: .1em .35em; border-radius: 4px; color: rgba(255,255,255,0.7);
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .pain-grid { grid-template-columns: repeat(2,1fr); }
  .steps-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .step-arrow { transform: rotate(90deg); }
  .func-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .pc-featured { transform: scale(1); }
  .pc-featured:hover { transform: translateY(-4px); }
  .tech-grid { grid-template-columns: repeat(2,1fr); }
  .scenario-grid { grid-template-columns: 1fr; }
  .cta-wrap { grid-template-columns: 1fr; }
  .cta-checklist { min-width: auto; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-legal { text-align: left; }
  .case-study { grid-template-columns: 1fr; }
  .case-logo-wrap { flex-direction: row; align-items: center; }
}

@media (max-width: 600px) {
  .pain-grid  { grid-template-columns: 1fr; }
  .tech-grid  { grid-template-columns: 1fr; }
  .hero-proof { flex-direction: column; align-items: stretch; padding: 1rem 1.25rem; gap: .5rem; }
  .proof-div  { width: 100%; height: 1px; }
  .proof-item { justify-content: flex-start; }
  .tabs { gap: .3rem; }
  .tab  { padding: .5rem .875rem; font-size: var(--text-xs); }
  .roi-row { grid-template-columns: 1fr 1fr; font-size: var(--text-xs); }
  .roi-head  { display: none; }
  .case-stats { gap: 1.25rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-legal { text-align: left; }
  .cta-btns  { flex-direction: column; }
  .problem-total { padding: 2rem 1.5rem; }
}

/* ============================================================
   LUCIDE ICONS — sizes, colours & animations
   ============================================================ */

/* --- keyframes --- */
@keyframes iconFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-5px); }
}
@keyframes iconPulse {
  0%, 100% { opacity: 1;   transform: scale(1); }
  50%       { opacity: .7; transform: scale(1.15); }
}
@keyframes iconSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes iconBounce {
  0%, 100% { transform: translateY(0); }
  30%       { transform: translateY(-6px); }
  60%       { transform: translateY(-2px); }
}

/* --- animation utility classes --- */
.anim-float  { animation: iconFloat  2.8s ease-in-out infinite; }
.anim-pulse  { animation: iconPulse  1.8s ease-in-out infinite; }
.anim-spin   { animation: iconSpin   3s   linear       infinite; }
.anim-bounce { animation: iconBounce 1.6s ease-in-out  infinite; }

/* --- tab icons --- */
.tab-icon { width: 15px; height: 15px; display: inline-block; vertical-align: middle; margin-right: 5px; }
.tab-icon svg { width: 15px; height: 15px; }

/* --- pain / problem section icons --- */
.pain-icon        { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; }
.pain-icon svg    { width: 28px; height: 28px; }
.pain-time        { display: inline-flex; align-items: center; gap: .35rem; }
.pain-time svg    { width: 14px; height: 14px; opacity: .65; }

/* --- workflow step icons --- */
.step-icon        { display: flex; align-items: center; justify-content: center; }
.step-icon svg    { width: 28px; height: 28px; }

/* --- tech card icons --- */
.tc-icon          { display: flex; align-items: center; justify-content: center; }
.tc-icon svg      { width: 26px; height: 26px; }

/* --- chat bot tag --- */
.bot-icon         { display: inline-block; vertical-align: middle; }
.bot-icon svg     { width: 13px; height: 13px; }

/* --- CTA section --- */
.cta-btn-icon     { display: inline-block; vertical-align: middle; margin-right: .4rem; }
.cta-btn-icon svg { width: 20px; height: 20px; }
.info-icon        { display: inline-block; vertical-align: middle; flex-shrink: 0; }
.info-icon svg    { width: 18px; height: 18px; opacity: .8; }
.cl-icon          { display: inline-block; vertical-align: middle; flex-shrink: 0; color: var(--accent); }
.cl-icon svg      { width: 17px; height: 17px; }

/* --- func / badge icons --- */
.badge-icon       { display: inline-block; vertical-align: middle; margin-right: .3rem; }
.badge-icon svg   { width: 15px; height: 15px; }

/* --- scenario list bullet icon --- */
.scenario-list li { list-style: none; padding-left: 1.6rem; position: relative; }
.scenario-list li::before {
  content: '';
  display: block;
  position: absolute;
  left: 0; top: .2em;
  width: 16px; height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2322c55e' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

/* --- cta info row alignment --- */
.cta-info span    { display: flex; align-items: center; gap: .5rem; }

/* ============================================================
   LANGUAGE SWITCHER
   ============================================================ */
.lang-switcher { position: relative; margin-right: .5rem; }

.lang-btn {
  display: flex; align-items: center; gap: .3rem;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px; padding: .35rem .6rem;
  font-size: .78rem; font-weight: 600; color: var(--text-primary);
  cursor: pointer; transition: background var(--duration-fast);
  white-space: nowrap;
}
.lang-btn:hover { background: rgba(255,255,255,.12); }
.lang-chevron   { width: 12px; height: 12px; opacity: .6; transition: transform var(--duration-fast); }
.lang-btn[aria-expanded="true"] .lang-chevron { transform: rotate(180deg); }

.lang-drop {
  position: fixed; /* top/right set dynamically by positionDrop() in script.js */
  background: #1a1a2e; border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px; padding: .4rem;
  min-width: 160px; max-height: 340px; overflow-y: auto;
  box-shadow: 0 16px 40px rgba(0,0,0,.5);
  z-index: 9999;
  display: grid; grid-template-columns: 1fr 1fr; gap: .2rem;
}
.lang-drop[hidden] { display: none; }
/* lang-drop deprecated — modal replaces it */

/* --- Language Modal --- */
.lang-modal {
  position: fixed; inset: 0; z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  padding: 1rem;
}
.lang-modal[hidden] { display: none; }

.lang-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  animation: fadeIn 0.2s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.lang-modal-panel {
  position: relative; z-index: 1;
  background: #13131e; border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px; width: 100%; max-width: 560px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.7);
  animation: slideUp 0.25s var(--ease-out);
  overflow: hidden;
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.lang-modal-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 1.25rem .9rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.lang-modal-heading {
  display: flex; align-items: center; gap: .5rem;
  font-size: .85rem; font-weight: 700; color: rgba(255,255,255,0.85);
  letter-spacing: .01em;
}
.lmh-icon { width: 1rem; height: 1rem; color: var(--accent); }
.lang-modal-close {
  width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.06); border: none; cursor: pointer;
  color: rgba(255,255,255,0.5); transition: background 0.15s, color 0.15s;
}
.lang-modal-close:hover { background: rgba(255,255,255,0.12); color: #fff; }
.lang-modal-close i { width: 14px; height: 14px; }

.lang-modal-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: .4rem; padding: 1rem 1.25rem 1.25rem;
}
@media (max-width: 500px) { .lang-modal-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 360px) { .lang-modal-grid { grid-template-columns: repeat(2, 1fr); } }

.lang-tile {
  display: flex; flex-direction: column; align-items: center; gap: .25rem;
  padding: .75rem .5rem .65rem;
  border-radius: 12px; border: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.03); cursor: pointer;
  transition: background 0.15s, border-color 0.15s, transform 0.15s var(--ease-out);
  font-family: inherit;
}
.lang-tile:hover {
  background: rgba(249,115,22,0.1); border-color: rgba(249,115,22,0.3);
  transform: translateY(-2px);
}
.lang-tile.active {
  background: rgba(249,115,22,0.15); border-color: var(--accent);
}
.lang-tile-flag { font-size: 1.6rem; line-height: 1; }
.lang-tile-code {
  font-size: .62rem; font-weight: 700; letter-spacing: .08em;
  color: rgba(255,255,255,0.85); text-transform: uppercase;
}
.lang-tile-name {
  font-size: .6rem; color: rgba(255,255,255,0.38);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  max-width: 100%;
}
.lang-tile.active .lang-tile-code { color: var(--accent); }
.lang-tile.active .lang-tile-name { color: rgba(249,115,22,0.65); }

.lang-item {
  display: flex; align-items: center; gap: .4rem;
  width: 100%; padding: .45rem .6rem;
  background: transparent; border: none;
  border-radius: 7px; cursor: pointer;
  color: var(--text-secondary); font-size: .78rem; font-weight: 500;
  transition: background var(--duration-fast), color var(--duration-fast);
  text-align: left;
}
.lang-item:hover { background: rgba(249,115,22,.12); color: var(--accent); }
.lang-item-flag  { font-size: 1rem; line-height: 1; }
.lang-item-name  { white-space: nowrap; }

/* --- Hardware pricing block --- */
.pc-hw {
  background: rgba(249,115,22,.07); border: 1px solid rgba(249,115,22,.2);
  border-radius: 10px; padding: .75rem 1rem; margin-bottom: 1rem;
}
.pc-hw-label { font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--accent); margin-bottom: .3rem; display: flex; align-items: center; gap: .3rem; }
.pc-hw-name  { font-size: .95rem; font-weight: 700; color: var(--text-primary); }
.pc-hw-price { font-size: .85rem; color: var(--text-secondary); margin-top: .15rem; }
.pc-hw-note  { font-size: .75rem; opacity: .7; }
.pc-hw-hint  { text-align: center; font-size: .82rem; color: var(--text-secondary); margin-top: 1.5rem; display: flex; align-items: center; justify-content: center; gap: .4rem; flex-wrap: wrap; }
.pc-hw-fit   { font-size: .72rem; color: var(--text-muted); margin-top: .4rem; display: flex; align-items: center; gap: .25rem; }

/* --- L1A1 CORE badge (Business / Premium) --- */
.pc-core-badge {
  background: linear-gradient(135deg,rgba(168,85,247,.15),rgba(236,72,153,.1));
  border: 1px solid rgba(168,85,247,.35);
  border-radius: 10px; padding: .65rem 1rem; margin-bottom: 1rem;
  font-size: .78rem; font-weight: 700; color: #c084fc;
  display: flex; align-items: center; gap: .4rem; flex-wrap: wrap;
}
.pc-core-val { font-size: .72rem; font-weight: 500; opacity: .7; margin-left: auto; text-decoration: line-through; }

/* --- L1A1 CORE add-on (Starter) --- */
.pc-core-add {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px; padding: .55rem .85rem; margin-bottom: .85rem;
  font-size: .8rem; color: var(--text-secondary); display: flex; align-items: center; gap: .35rem; flex-wrap: wrap;
}
.pc-core-note { font-size: .72rem; opacity: .6; }

/* === GRÜNDER-SEKTION === */
.gruender-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}
.gruender-text-col {
  display: flex;
  flex-direction: column;
}
.trust-points {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  margin-top: 1rem;
}
.trust-point {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.trust-icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  background: var(--accent-light);
  color: var(--accent);
  flex-shrink: 0;
  border: 1px solid rgba(249, 115, 22, 0.15);
}
.trust-icon-box i {
  width: 20px;
  height: 20px;
}
.trust-content h4 {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.35rem;
}
.trust-content p {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.5;
}

.profil-karte {
  background: var(--bg-dark);
  color: #fff;
  border-radius: var(--r-lg);
  border: 1px solid var(--border-light);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.profil-avatar {
  width: 80px;
  height: 80px;
  border-radius: var(--r-full);
  background: linear-gradient(135deg, var(--accent) 0%, #ec4899 100%);
  color: #fff;
  font-size: var(--text-2xl);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 20px rgba(249, 115, 22, 0.2);
}
.profil-name {
  font-size: var(--text-xl);
  font-weight: 800;
  margin-bottom: 0.35rem;
}
.profil-role {
  font-size: var(--text-xs);
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.profil-divider {
  width: 100%;
  height: 1px;
  background: var(--border-dark);
  margin: 1.5rem 0;
}
.profil-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2rem;
}
.profil-tag {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--accent);
  border: 1px solid rgba(249, 115, 22, 0.3);
  padding: 0.35rem 0.75rem;
  border-radius: var(--r-full);
  letter-spacing: 0.02em;
  background: rgba(249, 115, 22, 0.05);
}
.profil-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
}
.profil-actions .btn-primary,
.profil-actions .btn-ghost {
  width: 100%;
  justify-content: center;
  padding: 0.8rem 1.5rem;
  font-size: var(--text-sm);
}

/* Responsive */
@media (max-width: 900px) {
  .gruender-grid {
    gap: 3rem;
  }
}
@media (max-width: 768px) {
  .gruender-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  .gruender-card-col {
    order: -1; /* Profilkarte zuerst auf Mobilgeräten */
  }
}

/* === KI-EINBLICKE / INSIGHTS === */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.insight-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--r-lg);
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform var(--dur-normal) var(--ease-out), background var(--dur-normal), border-color var(--dur-normal), box-shadow var(--dur-normal);
}
.insight-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(249, 115, 22, 0.2);
  box-shadow: var(--shadow-lg);
}
.insight-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
  width: 100%;
}
.insight-tag {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-light);
  border: 1px solid rgba(249, 115, 22, 0.25);
  padding: 0.3rem 0.65rem;
  border-radius: var(--r-full);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.insight-date {
  font-size: var(--text-xs);
  color: var(--text-muted);
  font-weight: 500;
}
.insight-title {
  font-size: var(--text-base);
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
  margin-bottom: 1rem;
}
.insight-teaser {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.75rem;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.insight-more {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--accent);
  transition: color var(--dur-fast), gap var(--dur-fast);
  margin-top: auto;
}
.insight-card:hover .insight-more {
  color: var(--accent-hover);
  gap: 0.5rem;
}

@media (max-width: 900px) {
  .insights-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
@media (max-width: 600px) {
  .insights-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* === FOOTER ECOSYSTEM GRID === */
.footer-eco-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.25rem var(--container-px);
  max-width: var(--container-max);
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-eco-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
  white-space: nowrap;
}
.footer-eco-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.footer-eco-link {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 600;
  transition: color var(--dur-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
a.footer-eco-link:hover {
  color: rgba(255, 255, 255, 0.7);
}
.footer-eco-link.active {
  color: var(--accent);
}
.footer-eco-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
  box-shadow: 0 0 8px var(--accent);
}
.footer-eco-sep {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.15);
  user-select: none;
}

@media (max-width: 768px) {
  .footer-eco-grid {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
    padding: 1.25rem var(--container-px);
  }
  .footer-eco-links {
    justify-content: center;
    gap: 0.4rem;
  }
}
