:root {
  --bg: #060713;
  --bg-soft: #0b0d1d;
  --panel: rgba(15, 18, 40, 0.78);
  --panel-strong: #10142a;
  --line: rgba(133, 148, 255, 0.16);
  --text: #f5f7ff;
  --muted: #9ba5c4;
  --cyan: #04d9ff;
  --blue: #2773ff;
  --purple: #8a38ff;
  --pink: #d13dff;
  --radius: 24px;
  --shadow: 0 24px 70px rgba(0, 0, 0, .35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 10%, rgba(0, 116, 255, .12), transparent 30%),
    radial-gradient(circle at 85% 20%, rgba(137, 50, 255, .12), transparent 28%),
    var(--bg);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(74, 104, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74, 104, 255, .045) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.8), transparent 90%);
  z-index: -3;
}

.noise {
  position: fixed;
  inset: 0;
  opacity: .025;
  pointer-events: none;
  z-index: 20;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.85'/%3E%3C/svg%3E");
}

.page-glow {
  position: fixed;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  filter: blur(110px);
  opacity: .12;
  pointer-events: none;
  z-index: -2;
}
.page-glow--one { background: var(--cyan); left: -180px; top: 280px; }
.page-glow--two { background: var(--purple); right: -180px; top: 520px; }

.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.section { padding: 110px 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(6, 7, 19, .72);
  border-bottom: 1px solid rgba(122, 135, 255, .08);
}

.nav-wrap { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--text); text-decoration: none; }
.brand-mark {
  width: 42px; height: 42px; display: grid; place-items: center; border-radius: 13px;
  font-family: "Space Grotesk", sans-serif; font-weight: 800;
  background: linear-gradient(135deg, rgba(0, 211, 255, .2), rgba(140, 54, 255, .25));
  border: 1px solid rgba(102, 164, 255, .32);
  box-shadow: inset 0 0 22px rgba(52, 141, 255, .12), 0 0 25px rgba(76, 81, 255, .1);
}
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text strong { font-family: "Space Grotesk", sans-serif; font-size: 1rem; letter-spacing: .02em; }
.brand-text small { color: var(--muted); font-size: .68rem; letter-spacing: .23em; text-transform: uppercase; margin-top: 5px; }

.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a { color: #c8d0eb; text-decoration: none; font-size: .92rem; font-weight: 600; transition: .25s ease; }
.main-nav a:hover { color: white; }
.main-nav .nav-cta {
  padding: 11px 16px; border-radius: 12px; color: white;
  border: 1px solid rgba(83, 159, 255, .35);
  background: linear-gradient(135deg, rgba(0, 209, 255, .12), rgba(129, 53, 255, .16));
}
.nav-toggle { display: none; background: transparent; border: 0; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: white; margin: 5px 0; border-radius: 2px; }

.hero { padding-top: 86px; min-height: calc(100vh - 78px); display: flex; align-items: center; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 58px; align-items: center; }
.eyebrow { color: #aebaff; display: flex; align-items: center; gap: 10px; font-size: .73rem; font-weight: 800; letter-spacing: .22em; text-transform: uppercase; }
.eyebrow span { width: 34px; height: 2px; border-radius: 3px; background: linear-gradient(90deg, var(--cyan), var(--purple)); }
.hero h1, .section-head h2, .process-copy h2, .contact-copy h2 {
  font-family: "Space Grotesk", sans-serif; margin: 18px 0 22px; line-height: 1.02; letter-spacing: -.045em;
}
.hero h1 { font-size: clamp(3.2rem, 6.6vw, 6.1rem); max-width: 800px; }
.hero h1 em { font-style: normal; background: linear-gradient(90deg, var(--cyan), #4388ff 45%, var(--purple)); -webkit-background-clip: text; color: transparent; }
.hero-text { color: var(--muted); font-size: 1.08rem; line-height: 1.8; max-width: 660px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 22px; border-radius: 14px; border: 1px solid transparent; font-weight: 800; color: white; text-decoration: none; font-family: inherit; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button--primary { background: linear-gradient(100deg, #007bff, #5f54ff 56%, #8d37ff); box-shadow: 0 15px 35px rgba(56, 83, 255, .26); }
.button--primary:hover { box-shadow: 0 18px 42px rgba(72, 91, 255, .38); }
.button--ghost { background: rgba(255, 255, 255, .025); border-color: rgba(145, 161, 255, .2); }
.button--ghost:hover { border-color: rgba(145, 161, 255, .45); }
.hero-stats { margin-top: 42px; padding-top: 26px; border-top: 1px solid var(--line); display: flex; gap: 34px; flex-wrap: wrap; }
.hero-stats div { display: flex; flex-direction: column; gap: 4px; }
.hero-stats strong { font-size: .95rem; }
.hero-stats span { color: var(--muted); font-size: .77rem; }

.hero-visual { position: relative; }
.visual-shell {
  position: relative; overflow: hidden; border-radius: 28px; min-height: 510px;
  border: 1px solid rgba(112, 133, 255, .22);
  box-shadow: 0 35px 90px rgba(0,0,0,.42), 0 0 80px rgba(60, 73, 255, .1);
  background: #050611;
}
.visual-shell img { width: 100%; height: 100%; min-height: 510px; object-fit: cover; object-position: center; display: block; transform: scale(1.04); }
.visual-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(5,6,17,.82) 100%); }
.visual-shell::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 80px rgba(2, 5, 20, .45); pointer-events: none; }
.code-card { position: absolute; z-index: 3; backdrop-filter: blur(14px); background: rgba(8, 10, 29, .74); border: 1px solid rgba(118, 134, 255, .24); border-radius: 16px; color: white; box-shadow: 0 16px 40px rgba(0,0,0,.26); }
.code-card--top { top: 22px; right: 22px; display: flex; align-items: center; gap: 8px; padding: 12px 14px; font-size: .74rem; }
.code-card--top strong { color: #67ffb3; font-size: .7rem; }
.dot { width: 8px; height: 8px; border-radius: 50%; }
.dot.cyan { background: var(--cyan); box-shadow: 0 0 14px var(--cyan); }
.code-card--bottom { left: 22px; bottom: 22px; display: flex; gap: 12px; align-items: center; padding: 13px 16px; }
.code-card--bottom > span { color: var(--cyan); font-size: 1.2rem; font-weight: 800; }
.code-card--bottom div { display: flex; flex-direction: column; }
.code-card--bottom small { color: var(--muted); font-size: .67rem; }
.code-card--bottom strong { font-size: .85rem; margin-top: 3px; }

.trust-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.012); }
.trust-inner { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; color: #7883a7; font-size: .76rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }

.section-head { display: grid; grid-template-columns: 1.3fr .7fr; gap: 60px; align-items: end; margin-bottom: 44px; }
.section-head h2, .process-copy h2, .contact-copy h2 { font-size: clamp(2.3rem, 4.6vw, 4.25rem); }
.section-head p, .process-copy p, .contact-copy p { color: var(--muted); line-height: 1.8; margin: 0; }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card, .project-card, .process-item, .contact-card {
  border: 1px solid rgba(111, 127, 255, .15);
  background: linear-gradient(180deg, rgba(16, 19, 43, .83), rgba(10, 12, 29, .74));
  box-shadow: var(--shadow);
}
.service-card { position: relative; padding: 30px; border-radius: var(--radius); overflow: hidden; transition: transform .25s ease, border-color .25s ease; }
.service-card::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at top left, rgba(0, 210, 255, .09), transparent 32%); opacity: 0; transition: .25s ease; }
.service-card:hover { transform: translateY(-5px); border-color: rgba(111, 127, 255, .3); }
.service-card:hover::before { opacity: 1; }
.service-card > * { position: relative; z-index: 1; }
.service-card .icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 14px; background: rgba(74, 80, 255, .12); border: 1px solid rgba(89, 137, 255, .2); color: var(--cyan); font-family: "Space Grotesk"; font-weight: 800; font-size: .8rem; }
.service-card h3 { font-family: "Space Grotesk"; font-size: 1.32rem; margin: 22px 0 12px; }
.service-card p { color: var(--muted); line-height: 1.75; font-size: .94rem; }
.service-card ul { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 10px; }
.service-card li { color: #c9d0e9; font-size: .84rem; }
.service-card li::before { content: "•"; color: var(--cyan); margin-right: 8px; }

.projects-section { background: linear-gradient(180deg, rgba(255,255,255,.01), rgba(255,255,255,0)); }
.project-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.project-card { border-radius: var(--radius); padding: 28px; min-height: 250px; position: relative; overflow: hidden; }
.project-card--featured { grid-column: 1 / -1; min-height: 620px; }
.project-topline { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.project-badge { display: inline-flex; width: fit-content; padding: 8px 11px; border: 1px solid rgba(101, 146, 255, .2); background: rgba(64, 88, 255, .08); border-radius: 999px; color: #bdc8ff; font-size: .7rem; font-weight: 700; }
.project-status { font-size: .7rem; color: #67ffb3; }
.project-status::before { content: ""; width: 7px; height: 7px; display: inline-block; border-radius: 50%; background: #67ffb3; margin-right: 7px; box-shadow: 0 0 10px #67ffb3; }
.mockup { border: 1px solid rgba(114, 133, 255, .18); border-radius: 18px; overflow: hidden; background: #090b18; box-shadow: 0 25px 60px rgba(0,0,0,.28); }
.mockup-bar { height: 42px; border-bottom: 1px solid rgba(114,133,255,.12); display: flex; align-items: center; gap: 7px; padding: 0 14px; color: #67708d; font-size: .65rem; }
.mockup-bar i { width: 8px; height: 8px; border-radius: 50%; background: #29314f; }
.mockup-bar span { margin-left: 10px; }
.mockup-body { display: grid; grid-template-columns: 72px 1fr; min-height: 325px; }
.mockup-body aside { border-right: 1px solid rgba(114,133,255,.1); padding: 18px 16px; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.mockup-body aside b { color: var(--cyan); font-family: "Space Grotesk"; }
.mockup-body aside span { width: 28px; height: 8px; background: #1b2341; border-radius: 5px; }
.mockup-main { padding: 30px; }
.mock-title { width: 34%; height: 16px; border-radius: 6px; background: linear-gradient(90deg, rgba(0,207,255,.45), rgba(126,60,255,.42)); }
.metric-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 24px; }
.metric-row div { height: 80px; border: 1px solid rgba(115,133,255,.12); border-radius: 14px; background: linear-gradient(145deg, rgba(36,48,95,.46), rgba(13,15,34,.6)); }
.mock-table { border: 1px solid rgba(115,133,255,.12); border-radius: 14px; padding: 18px; margin-top: 16px; }
.mock-table p { height: 10px; background: #1c2442; border-radius: 4px; margin: 0 0 15px; }
.mock-table p:nth-child(2) { width: 92%; }
.mock-table p:nth-child(3) { width: 85%; }
.mock-table p:nth-child(4) { width: 76%; margin-bottom: 0; }
.project-copy { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-top: 26px; }
.project-copy h3, .project-card h3 { font-family: "Space Grotesk"; margin: 0 0 10px; font-size: 1.45rem; }
.project-copy p, .project-card p { color: var(--muted); line-height: 1.7; margin: 0; }
.project-copy p { max-width: 700px; }
.project-icon { width: 50px; height: 50px; display: grid; place-items: center; border-radius: 15px; border: 1px solid rgba(93, 149, 255, .2); background: linear-gradient(135deg, rgba(0,212,255,.1), rgba(137,52,255,.12)); font-family: "Space Grotesk"; color: var(--cyan); font-weight: 800; margin-bottom: 38px; }
.project-card > .project-badge { margin-bottom: 18px; }
.tech-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 22px; }
.tech-tags span { color: #9ea8c8; background: rgba(255,255,255,.035); border: 1px solid rgba(255,255,255,.06); padding: 7px 9px; border-radius: 8px; font-size: .68rem; font-weight: 700; }

.process-wrap { display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; align-items: start; }
.process-copy { position: sticky; top: 130px; }
.text-link { display: inline-flex; gap: 12px; margin-top: 24px; color: white; text-decoration: none; font-weight: 800; }
.text-link span { color: var(--cyan); transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }
.process-list { display: grid; gap: 14px; }
.process-item { border-radius: 20px; padding: 26px; display: grid; grid-template-columns: 60px 1fr; gap: 22px; }
.process-item b { font-family: "Space Grotesk"; color: var(--cyan); font-size: 1rem; }
.process-item h3 { font-family: "Space Grotesk"; margin: 0 0 8px; }
.process-item p { margin: 0; color: var(--muted); line-height: 1.7; }

.contact-section { padding-top: 70px; }
.contact-card { border-radius: 30px; padding: 42px; display: grid; grid-template-columns: .95fr 1.05fr; gap: 50px; position: relative; overflow: hidden; }
.contact-card::before { content: ""; position: absolute; width: 420px; height: 420px; border-radius: 50%; left: -130px; top: -220px; background: var(--cyan); filter: blur(120px); opacity: .08; }
.contact-copy, .contact-form { position: relative; z-index: 1; }
.contact-points { display: grid; gap: 11px; margin-top: 28px; color: #cdd4eb; font-size: .86rem; }
.contact-points span::first-letter { color: #60ffb2; }
.contact-form { display: grid; gap: 14px; }
.contact-form label { display: grid; gap: 8px; color: #c8d0e8; font-size: .78rem; font-weight: 700; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%; border: 1px solid rgba(121, 138, 255, .16); background: rgba(5, 7, 20, .65); color: white; border-radius: 13px; padding: 14px 15px; font: inherit; outline: none;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: rgba(58, 160, 255, .62); box-shadow: 0 0 0 3px rgba(58,160,255,.08); }
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form select option { color: #111; }
.contact-form small { color: #737d9c; line-height: 1.5; }
.contact-form code { color: #aab4ff; }

.site-footer { padding: 30px 0 42px; }
.footer-inner { border-top: 1px solid var(--line); padding-top: 28px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer-brand .brand-mark { width: 36px; height: 36px; border-radius: 11px; font-size: .82rem; }
.footer-inner p { color: var(--muted); font-size: .82rem; }
.footer-inner > a { color: #c7cfee; text-decoration: none; font-size: .82rem; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s ease; }
.reveal.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }
.delay-3 { transition-delay: .24s; }

@media (max-width: 980px) {
  .section { padding: 88px 0; }
  .hero { min-height: auto; }
  .hero-grid, .section-head, .process-wrap, .contact-card { grid-template-columns: 1fr; }
  .hero-grid { gap: 40px; }
  .hero-copy { max-width: 760px; }
  .visual-shell, .visual-shell img { min-height: 410px; }
  .services-grid { grid-template-columns: 1fr; }
  .section-head { gap: 16px; }
  .section-head p { max-width: 760px; }
  .process-copy { position: static; }
}

@media (max-width: 760px) {
  .container { width: min(100% - 28px, 1180px); }
  .nav-toggle { display: block; }
  .main-nav {
    display: none; position: absolute; left: 14px; right: 14px; top: 68px; padding: 18px; border-radius: 18px;
    background: rgba(8, 10, 26, .96); border: 1px solid rgba(117, 137, 255, .16); box-shadow: 0 25px 70px rgba(0,0,0,.4); flex-direction: column; align-items: stretch; gap: 6px;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px 10px; }
  .main-nav .nav-cta { margin-top: 6px; text-align: center; }
  .hero { padding-top: 58px; }
  .hero h1 { font-size: clamp(2.85rem, 15vw, 4.1rem); }
  .hero-stats { gap: 20px; }
  .hero-stats div { min-width: 120px; }
  .visual-shell, .visual-shell img { min-height: 300px; }
  .visual-shell img { object-fit: cover; }
  .trust-inner { justify-content: center; padding: 20px 0; }
  .project-grid { grid-template-columns: 1fr; }
  .project-card--featured { grid-column: auto; min-height: auto; }
  .mockup-body { grid-template-columns: 52px 1fr; min-height: 240px; }
  .mockup-body aside { padding: 14px 8px; }
  .mockup-main { padding: 20px 14px; }
  .metric-row { gap: 8px; }
  .metric-row div { height: 58px; }
  .project-copy { flex-direction: column; align-items: flex-start; }
  .contact-card { padding: 26px; }
}

@media (max-width: 480px) {
  .section { padding: 72px 0; }
  .brand-text { display: none; }
  .hero-actions .button { width: 100%; }
  .hero-stats { display: grid; grid-template-columns: 1fr 1fr; }
  .visual-shell, .visual-shell img { min-height: 260px; }
  .code-card--top { top: 14px; right: 14px; }
  .code-card--bottom { left: 14px; bottom: 14px; }
  .project-card { padding: 22px; }
  .project-card--featured { padding: 20px; }
  .mockup-bar span { display: none; }
  .mockup-body aside { display: none; }
  .mockup-body { grid-template-columns: 1fr; }
  .process-item { grid-template-columns: 42px 1fr; padding: 20px; }
}

/* Datenbank-Version */
.hp-field{position:absolute!important;left:-99999px!important;width:1px!important;height:1px!important;overflow:hidden!important}.form-status{margin-top:10px;padding:0;font-size:.92rem;line-height:1.5}.form-status.is-success,.form-status.is-error,.site-message{padding:12px 14px;border-radius:12px;border:1px solid}.form-status.is-success{background:rgba(30,166,106,.12);border-color:rgba(59,211,145,.32);color:#bdf9db}.form-status.is-error,.site-message--error{background:rgba(190,55,89,.12);border-color:rgba(235,90,125,.32);color:#ffd1dc}.contact-form button:disabled{opacity:.62;cursor:wait}.site-message{margin:0 0 24px}

/* =========================================================
   MaHe Developing – Frontend V2
   Zusätzliche Startseiten-Inhalte + korrigierte Navigation
   ========================================================= */

/* Reveal-Fallback: Ohne JavaScript bleibt die Website sichtbar. */
.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .72s ease, transform .72s ease; }
.js .reveal.is-visible { opacity: 1; transform: none; }

.main-nav a.is-active:not(.nav-cta) { color: #fff; }
.main-nav a.is-active:not(.nav-cta)::after {
  content: "";
  display: block;
  height: 2px;
  margin-top: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--purple));
}

.intro-section { padding-top: 100px; }
.intro-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 70px;
  align-items: start;
}
.intro-copy h2, .why-copy h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.35rem, 4.5vw, 4.35rem);
  line-height: 1.03;
  letter-spacing: -.045em;
  margin: 18px 0 0;
}
.intro-text { display: grid; gap: 18px; }
.intro-text p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.85;
}
.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 52px;
}
.value-card {
  min-height: 205px;
  padding: 24px;
  border-radius: 20px;
  border: 1px solid rgba(111,127,255,.14);
  background: linear-gradient(180deg, rgba(16,19,43,.72), rgba(10,12,29,.66));
  box-shadow: 0 18px 50px rgba(0,0,0,.2);
}
.value-card > span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  color: var(--cyan);
  background: rgba(0,217,255,.07);
  border: 1px solid rgba(0,217,255,.16);
  font-family: "Space Grotesk", sans-serif;
  font-size: .72rem;
  font-weight: 800;
}
.value-card h3 { font-family: "Space Grotesk", sans-serif; margin: 22px 0 9px; }
.value-card p { color: var(--muted); line-height: 1.7; font-size: .88rem; margin: 0; }

.services-section {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,.01), transparent);
}
.services-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}
.service-card { padding: 0; }
.service-card--large {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  min-height: 520px;
}
.service-body { padding: 30px; }
.service-card--large .service-body { display: flex; flex-direction: column; justify-content: center; padding: 44px; }
.service-card .service-body h3 { margin-top: 22px; }
.service-picture {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 18%, rgba(0,217,255,.15), transparent 30%),
    radial-gradient(circle at 83% 80%, rgba(138,56,255,.18), transparent 36%),
    #080b19;
  border-bottom: 1px solid rgba(111,127,255,.14);
}
.service-card--large .service-picture { min-height: 100%; border-bottom: 0; border-right: 1px solid rgba(111,127,255,.14); }
.service-picture::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .28;
  background-image:
    linear-gradient(rgba(67,97,204,.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(67,97,204,.18) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom right, #000, transparent 88%);
}

/* Service-Bild 1: Dashboard */
.picture-browser {
  position: absolute;
  inset: 46px 34px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(113,145,255,.24);
  background: #090c1b;
  box-shadow: 0 30px 70px rgba(0,0,0,.42), 0 0 60px rgba(61,93,255,.13);
  transform: perspective(1000px) rotateY(-4deg) rotateX(2deg);
}
.picture-topbar { height: 42px; display: flex; align-items: center; gap: 7px; padding: 0 14px; border-bottom: 1px solid rgba(114,133,255,.12); color: #69769d; font-size: .62rem; }
.picture-topbar i { width: 8px; height: 8px; border-radius: 50%; background: #273251; }
.picture-topbar span { margin-left: 8px; }
.picture-dashboard { display: grid; grid-template-columns: 64px 1fr; min-height: 330px; }
.picture-dashboard aside { border-right: 1px solid rgba(114,133,255,.1); padding: 18px 10px; display: flex; align-items: center; flex-direction: column; gap: 18px; }
.picture-dashboard aside b { font-family: "Space Grotesk"; color: var(--cyan); }
.picture-dashboard aside span { width: 28px; height: 8px; border-radius: 6px; background: #1d2644; }
.picture-content { padding: 28px; }
.picture-content h4 { margin: 0 0 24px; font-family: "Space Grotesk"; font-size: 1rem; }
.picture-kpis { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.picture-kpis i { height: 66px; border-radius: 12px; border: 1px solid rgba(111,127,255,.12); background: linear-gradient(145deg, rgba(36,48,95,.5), rgba(13,15,34,.62)); }
.picture-chart { height: 105px; margin-top: 12px; padding: 16px; border-radius: 13px; border: 1px solid rgba(111,127,255,.12); overflow: hidden; }
.picture-chart span { display: block; width: 100%; height: 100%; border-bottom: 2px solid rgba(0,217,255,.7); clip-path: polygon(0 83%,10% 72%,20% 79%,32% 47%,45% 56%,58% 25%,70% 38%,81% 15%,100% 28%,100% 100%,0 100%); background: linear-gradient(180deg, rgba(0,217,255,.14), transparent); }
.picture-rows { margin-top: 12px; display: grid; gap: 8px; }
.picture-rows i { height: 8px; border-radius: 999px; background: #1b2442; }
.picture-rows i:nth-child(2) { width: 86%; }
.picture-rows i:nth-child(3) { width: 68%; }

/* Service-Bild 2: Datenbank */
.db-scene { position: absolute; inset: 0; display: grid; place-items: center; }
.db-stack { position: absolute; left: 14%; top: 23%; width: 115px; height: 140px; }
.db-stack i { position: absolute; left: 0; width: 115px; height: 48px; border-radius: 50%; border: 1px solid rgba(0,217,255,.5); background: linear-gradient(180deg, rgba(0,217,255,.22), rgba(20,41,82,.55)); box-shadow: 0 0 28px rgba(0,217,255,.1); }
.db-stack i:nth-child(1) { top: 0; }
.db-stack i:nth-child(2) { top: 39px; }
.db-stack i:nth-child(3) { top: 78px; }
.db-panel { position: absolute; right: 10%; bottom: 16%; width: 48%; min-width: 165px; padding: 20px; border-radius: 17px; border: 1px solid rgba(126,108,255,.28); background: rgba(10,12,31,.82); box-shadow: 0 24px 55px rgba(0,0,0,.38); }
.db-panel > span { color: #828db2; font-size: .58rem; letter-spacing: .2em; }
.db-panel > b { display: block; margin: 7px 0 15px; color: #fff; font-family: "Space Grotesk"; font-size: 1.3rem; }
.db-panel > div { display: grid; gap: 8px; }
.db-panel i { display: block; height: 8px; border-radius: 999px; background: linear-gradient(90deg, rgba(0,217,255,.4), rgba(138,56,255,.16)); }
.db-panel i:nth-child(2) { width: 82%; }
.db-panel i:nth-child(3) { width: 64%; }
.db-lines i { position: absolute; height: 1px; background: linear-gradient(90deg, rgba(0,217,255,.55), rgba(138,56,255,.25)); transform-origin: left; }
.db-lines i:nth-child(1) { width: 105px; left: 40%; top: 39%; transform: rotate(10deg); }
.db-lines i:nth-child(2) { width: 95px; left: 38%; top: 52%; transform: rotate(2deg); }
.db-lines i:nth-child(3) { width: 90px; left: 39%; top: 63%; transform: rotate(-8deg); }

/* Service-Bild 3: API-Netzwerk */
.api-scene { position: absolute; inset: 0; }
.api-node { position: absolute; width: 64px; height: 64px; display: grid; place-items: center; border-radius: 18px; font-family: "Space Grotesk"; font-size: .75rem; font-weight: 800; color: white; border: 1px solid rgba(118,138,255,.28); background: rgba(12,16,39,.88); box-shadow: 0 18px 40px rgba(0,0,0,.36); z-index: 2; }
.api-node--center { width: 78px; height: 78px; left: 50%; top: 50%; transform: translate(-50%,-50%); color: var(--cyan); border-color: rgba(0,217,255,.4); box-shadow: 0 0 45px rgba(0,217,255,.12), 0 18px 40px rgba(0,0,0,.35); }
.api-node--one { left: 13%; top: 20%; }
.api-node--two { right: 12%; top: 18%; color: #b794ff; }
.api-node--three { right: 17%; bottom: 13%; color: #d697ff; }
.api-link { position: absolute; height: 2px; background: linear-gradient(90deg, rgba(0,217,255,.2), rgba(89,111,255,.75), rgba(138,56,255,.25)); transform-origin: left center; z-index: 1; }
.api-link--one { width: 38%; left: 25%; top: 38%; transform: rotate(22deg); }
.api-link--two { width: 31%; left: 55%; top: 47%; transform: rotate(-25deg); }
.api-link--three { width: 30%; left: 55%; top: 58%; transform: rotate(27deg); }

.solutions-section { background: rgba(255,255,255,.008); border-top: 1px solid rgba(111,127,255,.07); border-bottom: 1px solid rgba(111,127,255,.07); }
.solutions-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.solution-card { min-height: 245px; padding: 28px; border-radius: 22px; border: 1px solid rgba(111,127,255,.14); background: linear-gradient(180deg, rgba(15,18,40,.72), rgba(9,11,27,.66)); transition: transform .25s ease, border-color .25s ease; }
.solution-card:hover { transform: translateY(-4px); border-color: rgba(111,127,255,.3); }
.solution-icon { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 15px; background: linear-gradient(135deg, rgba(0,217,255,.09), rgba(138,56,255,.14)); border: 1px solid rgba(91,140,255,.2); color: var(--cyan); font-weight: 800; font-size: 1.15rem; }
.solution-card h3 { margin: 24px 0 10px; font-family: "Space Grotesk", sans-serif; }
.solution-card p { margin: 0; color: var(--muted); line-height: 1.72; font-size: .9rem; }

.why-section { padding-top: 95px; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 68px; align-items: center; }
.terminal-card { overflow: hidden; border-radius: 24px; border: 1px solid rgba(113,135,255,.2); background: #080a16; box-shadow: 0 34px 80px rgba(0,0,0,.4); }
.terminal-head { min-height: 48px; display: flex; align-items: center; gap: 8px; padding: 0 17px; border-bottom: 1px solid rgba(113,135,255,.12); }
.terminal-head span { width: 9px; height: 9px; border-radius: 50%; background: #26304f; }
.terminal-head b { margin-left: 8px; color: #697493; font-size: .68rem; font-weight: 600; }
.terminal-code { padding: 30px 24px 34px; overflow-x: auto; }
.terminal-code p { margin: 0 0 11px; white-space: nowrap; color: #d5dcf4; font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace; font-size: .82rem; }
.terminal-code em { display: inline-block; width: 30px; color: #3e4867; font-style: normal; user-select: none; }
.code-purple { color: #a679ff; }
.code-green { color: #69efb0; }
.code-cyan { color: #38dfff; }
.code-comment { color: #53607e; }
.why-copy > p { color: var(--muted); line-height: 1.8; }
.why-points { display: grid; gap: 14px; margin-top: 28px; }
.why-points > div { display: grid; grid-template-columns: 46px 1fr; gap: 15px; padding: 16px 0; border-top: 1px solid var(--line); }
.why-points > div > b { color: var(--cyan); font-family: "Space Grotesk"; }
.why-points span { display: grid; gap: 5px; }
.why-points strong { font-size: .92rem; }
.why-points small { color: var(--muted); line-height: 1.6; font-size: .8rem; }

.faq-section { padding-top: 80px; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.faq-item { border-radius: 18px; border: 1px solid rgba(111,127,255,.14); background: rgba(15,18,40,.62); overflow: hidden; }
.faq-item summary { cursor: pointer; list-style: none; padding: 21px 54px 21px 22px; position: relative; font-weight: 700; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; position: absolute; right: 22px; top: 50%; transform: translateY(-50%); color: var(--cyan); font-size: 1.35rem; font-weight: 400; }
.faq-item[open] summary::after { content: "−"; }
.faq-item p { padding: 0 22px 22px; margin: 0; color: var(--muted); line-height: 1.7; font-size: .88rem; }

.footer-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-links a { color: #c7cfee; text-decoration: none; font-size: .79rem; }
.footer-links a:hover { color: #fff; }

@media (max-width: 1060px) {
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .solutions-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card--large { grid-template-columns: 1fr; }
  .service-card--large .service-picture { min-height: 420px; border-right: 0; border-bottom: 1px solid rgba(111,127,255,.14); }
}

@media (max-width: 980px) {
  .intro-grid, .why-grid { grid-template-columns: 1fr; gap: 38px; }
  .why-visual { order: 2; }
  .why-copy { order: 1; }
}

@media (max-width: 760px) {
  .main-nav.is-open { display: flex; }
  .main-nav a.is-active:not(.nav-cta)::after { display: none; }
  .services-grid, .solutions-grid, .faq-grid { grid-template-columns: 1fr; }
  .service-card--large { grid-column: auto; }
  .service-card--large .service-picture { min-height: 320px; }
  .picture-browser { inset: 28px 18px; }
  .picture-dashboard { min-height: 260px; }
  .picture-content { padding: 20px 14px; }
  .service-card--large .service-body { padding: 30px; }
  .value-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 520px) {
  .value-grid { grid-template-columns: 1fr; }
  .service-picture { min-height: 245px; }
  .service-card--large .service-picture { min-height: 280px; }
  .picture-browser { inset: 22px 12px; }
  .picture-dashboard { grid-template-columns: 48px 1fr; min-height: 230px; }
  .picture-dashboard aside { padding: 14px 8px; }
  .picture-content { padding: 16px 10px; }
  .picture-kpis i { height: 45px; }
  .picture-chart { height: 78px; }
  .db-stack { transform: scale(.82); transform-origin: left top; }
  .db-panel { right: 7%; width: 56%; }
  .terminal-code { padding: 22px 15px 26px; }
  .terminal-code p { font-size: .72rem; }
  .footer-inner { align-items: flex-start; }
  .footer-links { width: 100%; }
}
