:root{
  --bg:#3f6694;
  --bg-2:#5278a8;
  --bg-3:#f2f7ff;
  --surface:rgba(255,255,255,.12);
  --surface-strong:rgba(255,255,255,.18);
  --surface-solid:rgba(30,50,84,.68);
  --surface-solid-2:rgba(20,36,64,.82);
  --line:rgba(195,217,255,.22);
  --line-strong:rgba(223,236,255,.38);
  --text:#f8fbff;
  --muted:#deebfb;
  --muted-2:#bdd2ee;
  --heading:#ffffff;
  --primary:#96c5ff;
  --primary-2:#9feeff;
  --primary-3:#d6dcff;
  --success:#9ff4cb;
  --warning:#ffdca2;
  --danger:#ffb8cb;
  --shadow:0 22px 60px rgba(5,16,34,.26);
  --shadow-strong:0 32px 80px rgba(5,16,34,.36);
  --radius:28px;
  --radius-md:22px;
  --radius-sm:16px;
  --container:1220px;
  --transition:240ms cubic-bezier(.2,.8,.2,1);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  color:var(--text);
  font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  background:
    radial-gradient(circle at 10% -5%, rgba(168,243,255,.18), transparent 0 24%),
    radial-gradient(circle at 88% 0%, rgba(154,200,255,.16), transparent 0 24%),
    radial-gradient(circle at 50% 28%, rgba(212,220,255,.11), transparent 0 26%),
    linear-gradient(180deg, #5f85b7 0%, #4f74a2 18%, #456894 52%, #38567f 100%);
  min-height:100vh;
  overflow-x:hidden;
}
body::before,
body::after{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  z-index:-2;
}
body::before{
  background-image:linear-gradient(rgba(220,234,255,.055) 1px, transparent 1px),linear-gradient(90deg, rgba(220,234,255,.055) 1px, transparent 1px);
  background-size:56px 56px;
  mask-image:linear-gradient(180deg, rgba(0,0,0,.72), rgba(0,0,0,.08));
}
body::after{
  z-index:-1;
  background:
    radial-gradient(circle at 25% 14%, rgba(255,255,255,.08), transparent 0 18%),
    radial-gradient(circle at 75% 12%, rgba(143,240,255,.08), transparent 0 20%),
    radial-gradient(circle at 48% 58%, rgba(125,182,255,.08), transparent 0 22%);
  animation:drift 16s ease-in-out infinite alternate;
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
button,input,select,textarea{font:inherit}
button{cursor:pointer}
.container{width:min(var(--container),calc(100% - 32px));margin:0 auto}
.section{padding:96px 0;position:relative}
.section-tight{padding:72px 0}
.page-shell{position:relative;isolation:isolate}
.page-shell::before{
  content:"";
  position:fixed;
  right:-10rem;top:6rem;
  width:34rem;aspect-ratio:1;border-radius:50%;
  background:radial-gradient(circle at center, rgba(143,240,255,.12), transparent 70%);
  filter:blur(14px);
  pointer-events:none;
  z-index:-1;
}
.cursor-glow{position:fixed;left:0;top:0;width:26rem;height:26rem;transform:translate(-50%,-50%);border-radius:50%;pointer-events:none;z-index:-1;background:radial-gradient(circle, rgba(143,240,255,.12) 0%, rgba(125,182,255,.07) 30%, rgba(125,182,255,0) 70%);filter:blur(8px);opacity:.7;transition:transform 110ms linear, opacity 180ms ease}
.scroll-progress{position:fixed;inset:0 auto auto 0;height:4px;width:0;background:linear-gradient(90deg,var(--primary),var(--primary-2),var(--primary-3));box-shadow:0 0 28px rgba(143,240,255,.6);z-index:1500}
p{margin:0 0 16px;line-height:1.72;color:var(--muted)}
h1,h2,h3,h4{margin:0 0 14px;color:var(--heading)}
h1{font-size:clamp(2.7rem,4.2vw,4.7rem);line-height:1.02;letter-spacing:-.045em;text-wrap:balance}
h2{font-size:clamp(1.95rem,3.6vw,3rem);line-height:1.06;letter-spacing:-.035em;text-wrap:balance}
h3{font-size:clamp(1.2rem,2vw,1.55rem);line-height:1.18}
.lead{font-size:1.08rem;max-width:760px}
.small{font-size:.96rem}
.note{font-size:.94rem;color:var(--muted-2)}
.eyebrow,.mini-label{
  display:inline-flex;align-items:center;gap:10px;
  padding:10px 16px;border-radius:999px;border:1px solid rgba(222,235,255,.18);
  background:linear-gradient(180deg, rgba(255,255,255,.14), rgba(255,255,255,.06));
  box-shadow:inset 0 1px 0 rgba(255,255,255,.08), 0 10px 30px rgba(8,19,38,.15);
  font-size:13px;color:#edf5ff;letter-spacing:.02em;margin-bottom:18px
}
.eyebrow::before,.mini-label::before{content:"";width:8px;height:8px;border-radius:50%;background:linear-gradient(135deg,var(--primary),var(--primary-2));box-shadow:0 0 22px rgba(143,240,255,.9)}
.mini-label{padding:8px 12px;margin-bottom:14px}
.gradient-text{background:linear-gradient(135deg,#fff 0%,#c6e4ff 35%,#a2f4ff 66%,#ddd8ff 100%);-webkit-background-clip:text;background-clip:text;color:transparent}
.btn-row{display:flex;flex-wrap:wrap;gap:14px;margin-top:28px}
.btn{
  position:relative;display:inline-flex;align-items:center;justify-content:center;gap:10px;
  padding:15px 22px;border-radius:18px;border:1px solid rgba(218,232,255,.24);
  background:linear-gradient(180deg, rgba(136,190,255,.28), rgba(103,157,255,.14));
  color:#fff;font-weight:700;box-shadow:0 16px 36px rgba(6,18,38,.18);
  transition:transform var(--transition), box-shadow var(--transition), border-color var(--transition), background var(--transition)
}
.btn:hover{transform:translateY(-2px);box-shadow:0 22px 46px rgba(6,18,38,.26);border-color:rgba(230,239,255,.42)}
.btn::after{content:"";position:absolute;inset:auto -35% -140% auto;width:140%;height:220%;background:linear-gradient(120deg, rgba(255,255,255,0), rgba(255,255,255,.16), rgba(255,255,255,0));transform:rotate(18deg);transition:transform .65s ease;pointer-events:none}
.btn:hover::after{transform:translateX(26%) rotate(18deg)}
.btn.secondary{background:linear-gradient(180deg, rgba(255,255,255,.16), rgba(255,255,255,.08))}
.btn.ghost{background:rgba(255,255,255,.05)}
.topbar{position:sticky;top:0;z-index:1100;backdrop-filter:blur(18px);background:rgba(41,66,106,.54);border-bottom:1px solid rgba(226,237,255,.16);transition:background var(--transition),border-color var(--transition),box-shadow var(--transition)}
.topbar.scrolled{background:rgba(44,70,112,.78);box-shadow:0 16px 38px rgba(8,20,42,.18);border-color:rgba(232,241,255,.26)}
.nav{display:grid;grid-template-columns:auto 1fr auto;align-items:center;gap:18px;min-height:92px}
.brand{display:inline-flex;align-items:center;gap:14px;min-width:0}
.brand-icon{width:76px;height:56px;object-fit:contain;filter:drop-shadow(0 10px 24px rgba(0,0,0,.16))}
.brand-text{display:grid;gap:2px;min-width:0}
.brand-name{font-size:clamp(1.42rem,2vw,1.95rem);font-weight:800;line-height:1}
.brand-sub{font-size:.84rem;color:var(--muted);letter-spacing:.08em;text-transform:uppercase;white-space:nowrap}
.nav-links{display:flex;align-items:center;justify-content:center;gap:10px;flex-wrap:nowrap;min-width:0}
.nav-links a{padding:12px 14px;border-radius:14px;color:var(--muted);font-weight:600;white-space:nowrap;transition:background var(--transition),color var(--transition),transform var(--transition)}
.nav-links a:hover,.nav-links a.active{background:rgba(255,255,255,.08);color:#fff}
.nav-actions{display:flex;align-items:center;gap:12px}
.mobile-toggle{display:none;align-items:center;justify-content:center;width:48px;height:48px;border-radius:14px;border:1px solid rgba(220,234,255,.18);background:rgba(255,255,255,.07);color:#fff}
.mobile-panel{display:none;padding-bottom:18px}
.mobile-links{display:grid;gap:8px;padding:18px;border-radius:22px;background:rgba(10,20,38,.34);border:1px solid rgba(220,234,255,.12)}
.mobile-links a{padding:12px 14px;border-radius:14px;background:rgba(255,255,255,.05)}
.hero{padding:74px 0 34px}
.hero-grid,.page-hero-grid{display:grid;grid-template-columns:minmax(0,1.24fr) minmax(320px,.76fr);gap:38px;align-items:center}
.page-hero{padding:72px 0 22px}
.hero-copy,.page-copy{position:relative;z-index:1}
.hero-copy .lead{max-width:760px}
.page-hero h1{max-width:14ch}
.hero-notes{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px;margin-top:30px}
.card,.panel,.highlight-box,.quote-box,.search-panel,.workflow-dashboard,.faq-item,.problem-card,.service-card,.usage-card,.compare-card,.contact-card,.contact-form,.cta-panel,.metric-card,.search-result,.timeline-card,.example-meta,.step-card,.system-log,.contact-chip,.footer-card{background:linear-gradient(180deg, rgba(255,255,255,.15), rgba(255,255,255,.08));border:1px solid rgba(220,234,255,.14);box-shadow:var(--shadow);backdrop-filter:blur(14px);border-radius:var(--radius)}
.card,.panel,.highlight-box,.quote-box,.workflow-dashboard,.faq-item,.problem-card,.service-card,.usage-card,.compare-card,.contact-card,.contact-form,.cta-panel,.metric-card,.timeline-card,.example-meta,.step-card,.system-log,.footer-card{padding:24px}
.search-panel{padding:18px;border-radius:24px;position:relative}
.hero-visual{position:relative}
.dashboard-shell{position:relative;padding:28px;border-radius:34px;background:linear-gradient(180deg, rgba(255,255,255,.18), rgba(255,255,255,.09));border:1px solid rgba(236,243,255,.22);box-shadow:var(--shadow-strong);overflow:hidden}
.dashboard-shell::before{content:"";position:absolute;inset:-1px;background:linear-gradient(120deg, rgba(255,255,255,.12), transparent 30%, transparent 70%, rgba(143,240,255,.08));pointer-events:none}
.dashboard-shell::after{content:"";position:absolute;inset:auto -14% -42% auto;width:55%;height:65%;background:radial-gradient(circle, rgba(168,243,255,.18), rgba(168,243,255,0) 70%);pointer-events:none}
.dashboard-head{display:flex;justify-content:space-between;gap:16px;align-items:flex-start;margin-bottom:18px;position:relative;z-index:1}
.status-cluster{display:flex;gap:10px;flex-wrap:wrap;justify-content:flex-end}
.status-pill{padding:8px 12px;border-radius:999px;border:1px solid rgba(230,239,255,.18);background:rgba(255,255,255,.08);font-size:.83rem;color:#edf5ff}
.workflow-layout{display:grid;grid-template-columns:repeat(5,minmax(0,1fr)) 280px;gap:16px;align-items:stretch;position:relative;z-index:1}
.workflow-node{position:relative;min-height:156px;padding:18px 16px;border-radius:22px;background:linear-gradient(180deg, rgba(34,56,92,.44), rgba(28,48,81,.28));border:1px solid rgba(230,239,255,.18);display:flex;flex-direction:column;justify-content:space-between;gap:14px;transition:transform var(--transition),border-color var(--transition),box-shadow var(--transition),background var(--transition)}
.workflow-node strong{display:block;font-size:1rem;margin-bottom:8px}
.workflow-node p{font-size:.95rem;margin:0;color:var(--muted)}
.workflow-node.active{border-color:rgba(143,240,255,.55);box-shadow:0 0 0 1px rgba(143,240,255,.18), 0 18px 38px rgba(4,18,36,.28);background:linear-gradient(180deg, rgba(40,86,132,.55), rgba(22,44,78,.38));transform:translateY(-3px)}
.workflow-node.done{border-color:rgba(159,244,203,.55)}
.node-status{display:inline-flex;align-items:center;gap:8px;font-size:.82rem;color:#eef6ff}
.node-status::before{content:"";width:9px;height:9px;border-radius:50%;background:rgba(255,255,255,.44)}
.workflow-node.active .node-status::before{background:var(--primary-2);box-shadow:0 0 0 6px rgba(143,240,255,.18), 0 0 18px rgba(143,240,255,.6);animation:pulse 1.2s ease infinite}
.workflow-node.done .node-status::before{background:var(--success)}
.workflow-link{position:absolute;top:50%;right:-10px;width:20px;height:2px;background:linear-gradient(90deg, rgba(143,240,255,0), rgba(143,240,255,.7), rgba(143,240,255,0));transform:translateY(-50%)}
.workflow-node:last-child .workflow-link{display:none}
.workflow-side{display:grid;gap:14px;align-content:start}
.system-log{background:linear-gradient(180deg, rgba(29,48,80,.56), rgba(25,43,72,.42));padding:18px;border-radius:22px;min-height:156px}
.log-list{display:grid;gap:10px;margin-top:6px}
.log-entry{display:flex;gap:10px;align-items:flex-start;padding:10px 12px;border-radius:14px;background:rgba(255,255,255,.04);border:1px solid rgba(222,234,255,.08);font-size:.92rem;color:#edf5ff}
.log-entry::before{content:"";width:8px;height:8px;border-radius:50%;margin-top:6px;background:rgba(255,255,255,.3);flex:0 0 auto}
.log-entry.active::before{background:var(--primary-2);box-shadow:0 0 14px rgba(143,240,255,.6)}
.log-entry.done::before{background:var(--success)}
.metric-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px;margin-top:18px}
.metric-card{padding:18px;border-radius:22px}
.metric-number{font-size:2rem;font-weight:800;letter-spacing:-.04em;margin-bottom:8px}
.section-head{max-width:880px;margin-bottom:28px}
.grid-4,.benefit-grid,.service-grid,.usage-grid,.problem-grid,.contact-grid,.compare-grid,.value-grid,.footer-grid,.three-grid,.faq-grid{display:grid;gap:18px}
.grid-4,.benefit-grid{grid-template-columns:repeat(4,minmax(0,1fr))}
.service-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
.usage-grid,.problem-grid,.compare-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
.value-grid,.three-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
.footer-grid{grid-template-columns:1.15fr .7fr .75fr;align-items:start}
.feature-list{display:grid;gap:12px;margin-top:16px}
.feature-item,.list-item{display:flex;gap:12px;align-items:flex-start}
.feature-item .tick,.list-item .tick{width:24px;height:24px;border-radius:50%;display:inline-flex;align-items:center;justify-content:center;background:rgba(143,240,255,.16);color:#fff;flex:0 0 auto;margin-top:2px}
.search-shell{position:relative;max-width:920px}
.search-input{width:100%;padding:18px 18px 18px 54px;border-radius:18px;border:1px solid rgba(222,234,255,.18);background:rgba(255,255,255,.08);color:#fff;outline:none}
.search-input::placeholder{color:#c8daef}
.search-icon{position:absolute;left:18px;top:18px;font-size:1rem;color:#dce9fb}
.search-results{margin-top:14px;display:grid;gap:10px}
.search-result{padding:16px 18px;border-radius:18px;transition:transform var(--transition), border-color var(--transition)}
.search-result:hover{transform:translateY(-2px);border-color:rgba(230,239,255,.36)}
.search-result h3{font-size:1rem;margin-bottom:6px}
.search-result p{font-size:.92rem;margin:0 0 6px}
.search-result small{color:var(--muted-2)}
.hidden{display:none !important}
.callout{display:grid;grid-template-columns:minmax(0,1fr) 360px;gap:22px;align-items:start}
.kicker-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px;margin-top:24px}
.kicker-grid .mini{padding:18px;border-radius:20px;background:rgba(255,255,255,.06);border:1px solid rgba(219,232,255,.1)}
.problem-card{display:grid;gap:16px}
.problem-row{display:grid;grid-template-columns:1fr auto 1fr;gap:14px;align-items:stretch}
.problem-side{padding:18px;border-radius:20px;border:1px solid rgba(220,234,255,.1);background:rgba(255,255,255,.05)}
.problem-side h3{font-size:1.06rem}
.problem-arrow{display:flex;align-items:center;justify-content:center;font-size:1.6rem;color:#edf5ff}
.compare-card{display:grid;gap:16px}
.compare-column{padding:20px;border-radius:20px;background:rgba(255,255,255,.05);border:1px solid rgba(220,234,255,.1)}
.compare-column.bad{background:rgba(255,255,255,.04)}
.compare-column.good{background:linear-gradient(180deg, rgba(82,139,205,.22), rgba(42,80,135,.14))}
.compare-list{display:grid;gap:12px;padding-left:18px;margin:16px 0 0}
.faq-list{display:grid;gap:14px}
.faq-item{padding:0;overflow:hidden}
.faq-question{width:100%;display:flex;justify-content:space-between;align-items:center;gap:14px;padding:22px 24px;background:none;border:0;color:#fff;font-weight:700;text-align:left}
.faq-answer{display:grid;grid-template-rows:0fr;transition:grid-template-rows var(--transition)}
.faq-answer-inner{overflow:hidden;padding:0 24px}
.faq-item.open .faq-answer{grid-template-rows:1fr}
.faq-item.open .faq-answer-inner{padding-bottom:22px}
.page-grid{display:grid;gap:22px}
.step-card{position:relative;padding-top:34px}
.step-number{position:absolute;top:18px;right:18px;font-size:2rem;font-weight:800;color:rgba(255,255,255,.24)}
.workflow-examples{display:grid;gap:24px}
.example-card{display:grid;gap:18px;padding:26px;border-radius:30px;background:linear-gradient(180deg, rgba(255,255,255,.15), rgba(255,255,255,.08));border:1px solid rgba(220,234,255,.14);box-shadow:var(--shadow);position:relative;overflow:hidden}
.example-card::before{content:"";position:absolute;inset:0;background:linear-gradient(135deg, rgba(255,255,255,.06), transparent 32%, transparent 68%, rgba(168,243,255,.06));pointer-events:none}
.example-top{display:flex;justify-content:space-between;gap:18px;align-items:flex-start;flex-wrap:wrap}
.example-meta{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px;padding:0;background:none;border:0;box-shadow:none}
.example-meta > div{padding:16px;border-radius:18px;background:rgba(255,255,255,.05);border:1px solid rgba(220,234,255,.08)}
.example-dashboard{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px;align-items:stretch;counter-reset:flowstep}
.example-actions{display:flex;gap:12px;flex-wrap:wrap;align-items:center}
.example-dashboard .workflow-link{display:none}
.example-dashboard .workflow-node{min-height:176px}
.example-dashboard .workflow-node::after{counter-increment:flowstep;content:counter(flowstep);position:absolute;top:14px;right:14px;width:28px;height:28px;border-radius:50%;display:inline-flex;align-items:center;justify-content:center;background:rgba(255,255,255,.08);border:1px solid rgba(222,234,255,.14);font-size:.82rem;font-weight:700;color:#eef5ff}
.workflow-current{position:relative;display:flex;flex-direction:column;justify-content:space-between;gap:12px;min-height:176px;overflow:hidden;border-color:rgba(220,234,255,.16)}
.workflow-current::before{content:"";position:absolute;left:0;top:0;bottom:0;width:4px;background:linear-gradient(180deg, rgba(168,243,255,.18), rgba(168,243,255,.7), rgba(168,243,255,.18));box-shadow:0 0 24px rgba(168,243,255,.24)}
.workflow-current h3{font-size:1.32rem;max-width:14ch;margin-bottom:6px}
.workflow-inline-action{display:none}
.workflow-running .workflow-current{border-color:rgba(168,243,255,.4);box-shadow:0 0 0 1px rgba(168,243,255,.12), var(--shadow)}
.workflow-complete .workflow-current{border-color:rgba(159,244,203,.45)}
.tag-row{display:flex;gap:10px;flex-wrap:wrap}
.tag{padding:8px 12px;border-radius:999px;background:rgba(255,255,255,.07);border:1px solid rgba(219,232,255,.12);font-size:.86rem;color:#eef5ff}
.contact-layout{display:grid;grid-template-columns:minmax(0,.9fr) minmax(0,1.1fr);gap:22px}
.contact-points,.contact-fields,.summary-list{display:grid;gap:12px}
.contact-chip{padding:14px 16px;border-radius:16px;background:rgba(255,255,255,.05)}
.input,.select,textarea{width:100%;padding:15px 16px;border-radius:16px;border:1px solid rgba(220,234,255,.16);background:rgba(255,255,255,.06);color:#fff;outline:none}
textarea{min-height:148px;resize:vertical}
.form-row{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px}
.footer{padding:34px 0 44px;border-top:1px solid rgba(228,238,255,.14);background:rgba(34,56,92,.24);backdrop-filter:blur(12px)}
.footer-brand{display:inline-flex;align-items:center;gap:14px;margin-bottom:14px}
.footer-links{display:grid;gap:10px}
.footer-links a,.footer-links span{color:var(--muted)}
.legal p,.legal li{color:var(--muted)}
.legal h2{margin-top:38px}
.reveal{opacity:0;transform:translateY(18px);transition:opacity .6s ease, transform .6s ease}
.reveal.visible{opacity:1;transform:none}
.magnetic-ready,.tilt-ready{will-change:transform}
.contact-response{display:flex;gap:12px;flex-wrap:wrap;align-items:center;margin-top:12px}
.anchor-offset{scroll-margin-top:120px}
.workflow-node.is-hidden,.log-entry.is-hidden{display:none}
@keyframes drift{from{transform:translate3d(0,0,0)}to{transform:translate3d(0,-18px,0)}}
@keyframes pulse{0%,100%{transform:scale(1);opacity:1}50%{transform:scale(1.08);opacity:.8}}
@media (max-width: 1180px){
  .workflow-layout,.example-dashboard{grid-template-columns:repeat(3,minmax(0,1fr))}
  .workflow-side,.example-dashboard .workflow-side,.dashboard-shell[data-workflow="hero"] .workflow-side{grid-column:1/-1;grid-area:auto}
  .dashboard-shell[data-workflow="hero"] .workflow-layout{grid-template-columns:repeat(3,minmax(0,1fr));grid-template-areas:none}
}
@media (max-width: 1024px){
  .nav{grid-template-columns:auto auto}
  .nav-links{display:none}
  .mobile-toggle{display:inline-flex}
  .mobile-panel.open{display:block}
  .hero-grid,.page-hero-grid,.callout,.contact-layout,.usage-grid,.problem-grid,.compare-grid,.service-grid,.grid-4,.benefit-grid,.value-grid,.three-grid,.footer-grid,.kicker-grid{grid-template-columns:1fr}
  .hero-notes,.metric-grid,.example-meta,.form-row{grid-template-columns:1fr 1fr}
}
@media (max-width: 760px){
  .section{padding:74px 0}
  .section-tight{padding:56px 0}
  .container{width:min(var(--container),calc(100% - 20px))}
  .hero{padding-top:44px}
  .dashboard-shell,.example-card,.card,.panel,.workflow-dashboard,.faq-item,.problem-card,.service-card,.usage-card,.compare-card,.contact-card,.contact-form,.cta-panel,.metric-card,.timeline-card,.step-card,.system-log,.footer-card,.highlight-box,.quote-box{padding:20px}
  .workflow-layout,.example-dashboard,.hero-notes,.metric-grid,.example-meta,.form-row{grid-template-columns:1fr}
  .workflow-toolbar .btn{min-width:0;width:100%}
  .workflow-node,.system-log{min-height:auto}
  .problem-row{grid-template-columns:1fr;gap:10px}
  .problem-arrow{transform:rotate(90deg)}
  .btn{width:100%}
  .btn-row{display:grid}
  .brand-icon{width:66px;height:50px}
  .search-input{padding-left:48px}
}
@media (prefers-reduced-motion: reduce){
  *,*::before,*::after{animation:none !important;transition:none !important;scroll-behavior:auto !important}
  .cursor-glow{display:none}
}

.hero-system-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px;align-items:stretch}
.hero-system-card,.hero-system-summary{padding:20px;border-radius:24px;background:linear-gradient(180deg, rgba(29,48,80,.44), rgba(22,39,66,.24));border:1px solid rgba(230,239,255,.14);min-height:176px;position:relative;overflow:hidden}
.hero-system-card::after,.hero-system-summary::after{content:"";position:absolute;inset:auto -12% -24% auto;width:44%;height:44%;background:radial-gradient(circle, rgba(168,243,255,.12), rgba(168,243,255,0) 70%);pointer-events:none}
.hero-system-summary{display:flex;flex-direction:column;justify-content:center}
.clean-list{list-style:none;padding:0;margin:0;display:grid;gap:10px}
.clean-list li{display:flex;gap:10px;align-items:flex-start;color:#eef5ff}
.clean-list li::before{content:"";width:8px;height:8px;border-radius:50%;margin-top:8px;background:var(--primary-2);box-shadow:0 0 12px rgba(143,240,255,.6);flex:0 0 auto}
.workflow-toolbar{display:flex;justify-content:flex-start;align-items:center;gap:12px;grid-column:1 / -1;margin-bottom:2px}
.workflow-toolbar .btn-row{margin:0}
.workflow-toolbar .btn{min-width:220px}
@media (max-width: 1180px){
  .workflow-layout{grid-template-columns:repeat(3,minmax(0,1fr))}
  .workflow-side,.dashboard-shell[data-workflow="hero"] .workflow-side{grid-column:1/-1;grid-area:auto}
  .dashboard-shell[data-workflow="hero"] .workflow-layout{grid-template-columns:repeat(3,minmax(0,1fr));grid-template-areas:none}
}
@media (max-width: 1024px){
  .hero-grid,.page-hero-grid{grid-template-columns:1fr}
  .hero-system-grid,.example-dashboard{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media (max-width: 760px){
  .page-hero h1{max-width:none}
  .hero-system-grid,.example-dashboard{grid-template-columns:1fr}
  .workflow-toolbar .btn{min-width:0;width:100%}
}


.hero{padding-top:56px}
.page-hero{padding:64px 0 28px}
.hero-grid > *, .page-hero-grid > *{max-width:1040px}
.hero-copy .lead{max-width:62ch}
.hero-visual{display:none}
.hero-notes{margin-top:30px}
.overview-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:16px}
.overview-card{position:relative;padding:22px;border-radius:24px;background:linear-gradient(180deg, rgba(255,255,255,.1), rgba(255,255,255,.05));border:1px solid rgba(226,237,255,.14);overflow:hidden;box-shadow:var(--shadow)}
.overview-card::after{content:"";position:absolute;inset:auto -14% -30% auto;width:42%;height:42%;background:radial-gradient(circle, rgba(159,238,255,.14), rgba(159,238,255,0) 70%);pointer-events:none}
.overview-card h3{font-size:1.24rem;max-width:16ch}
.page-hero-grid .highlight-box{max-width:760px}
.hero-inline-points{display:flex;gap:12px;flex-wrap:wrap;margin-top:24px}
.hero-inline-points .status-pill{background:rgba(255,255,255,.1)}
.example-dashboard{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px;align-items:stretch;counter-reset:flowstep}
.example-dashboard .workflow-node{min-height:158px}
.example-dashboard .workflow-current{grid-column:1 / -1;min-height:auto;padding:22px 24px}
.example-dashboard .workflow-current h3{max-width:none;font-size:1.5rem}
.workflow-current-copy{display:grid;grid-template-columns:minmax(0,1fr) auto;gap:18px;align-items:end}
.workflow-current-copy p{margin:0}
.workflow-current-side{display:flex;flex-wrap:wrap;gap:10px;justify-content:flex-end}
.workflow-current-side .status-pill{white-space:nowrap}
.example-actions{justify-content:flex-start}
.workflow-toolbar{display:flex;justify-content:flex-start;align-items:center;gap:12px;grid-column:1 / -1;margin-bottom:6px}
.workflow-toolbar .btn{min-width:230px}
.workflow-node,.service-card,.usage-card,.metric-card,.overview-card,.workflow-current,.contact-card,.contact-form,.problem-card,.step-card,.quote-box,.cta-panel{position:relative;overflow:hidden}
.workflow-node::before,.service-card::before,.usage-card::before,.metric-card::before,.overview-card::before,.contact-card::before,.contact-form::before,.problem-card::before,.step-card::before,.quote-box::before,.cta-panel::before{content:"";position:absolute;inset:0;pointer-events:none;background:radial-gradient(240px circle at var(--mx,50%) var(--my,50%), rgba(168,243,255,.18), transparent 45%);opacity:.72}
.workflow-current::after{content:"";position:absolute;inset:auto 0 0 0;height:2px;background:linear-gradient(90deg, transparent, rgba(168,243,255,.75), transparent);animation:statusScan 2.8s linear infinite;pointer-events:none}
.status-pill{position:relative;overflow:hidden}
.status-pill::after{content:"";position:absolute;inset:0;transform:translateX(-120%);background:linear-gradient(110deg, transparent, rgba(255,255,255,.18), transparent);animation:pillShimmer 5.2s ease-in-out infinite}
.section-head h2{max-width:24ch}
.page-hero .eyebrow + h1, .hero .eyebrow + h1{max-width:18ch}
.callout h2,.cta-panel h2{max-width:24ch}
@keyframes statusScan{0%{transform:translateX(-100%)}100%{transform:translateX(100%)}}
@keyframes pillShimmer{0%,75%,100%{transform:translateX(-120%)}25%{transform:translateX(120%)}}
@media (max-width: 1180px){
  .overview-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media (max-width: 1024px){
  .page-hero h1,.hero h1,.section-head h2,.callout h2,.cta-panel h2{max-width:none}
  .overview-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media (max-width: 760px){
  .overview-grid,.example-dashboard{grid-template-columns:1fr}
  .workflow-current-copy{grid-template-columns:1fr}
  .workflow-current-side{justify-content:flex-start}
}

/* v5 header search, homepage density, and polish */
.topbar::after{content:"";position:absolute;left:0;right:0;bottom:-1px;height:1px;background:linear-gradient(90deg, transparent, rgba(168,243,255,.42), transparent);opacity:.85}
.nav{position:relative}
.nav-actions{justify-self:end}
.header-search,.mobile-search{position:relative;z-index:20}
.header-search{display:block;width:min(320px,31vw);padding:10px 12px;border-radius:18px;background:linear-gradient(180deg, rgba(255,255,255,.14), rgba(255,255,255,.07));border:1px solid rgba(220,234,255,.14);box-shadow:0 16px 36px rgba(5,16,34,.16)}
.header-search .search-icon{left:14px;top:50%;transform:translateY(-50%)}
.header-search .search-input{padding:12px 14px 12px 40px;border-radius:14px;background:rgba(255,255,255,.08)}
.header-search .search-input:focus,.mobile-search .search-input:focus,.input:focus,.select:focus,textarea:focus{border-color:rgba(168,243,255,.42);box-shadow:0 0 0 1px rgba(168,243,255,.18),0 0 0 8px rgba(168,243,255,.06)}
.header-search .search-results{position:absolute;left:0;right:0;top:calc(100% + 10px);margin-top:0;display:grid;gap:10px}
.mobile-search{display:none;margin-bottom:12px}
.mobile-search .search-icon{left:16px;top:18px}
.mobile-search .search-input{padding-left:44px}
.mobile-search .search-results{margin-top:10px}
textarea::placeholder,.input::placeholder,.select::placeholder{color:#eef6ff;opacity:.78}
textarea{background:rgba(17,29,52,.22)}

.hero-grid{grid-template-columns:minmax(0,1.04fr) minmax(360px,.96fr);align-items:start;gap:30px}
.page-hero-grid{grid-template-columns:minmax(0,1fr) !important;align-items:start}
.page-hero h1{max-width:24ch}
.page-hero .lead{max-width:68ch}
.hero .eyebrow + h1{max-width:13ch}
.hero-visual{display:block;position:relative}
.hero-loop-card{padding:24px;min-height:100%;position:relative}
.hero-loop-head h2{font-size:clamp(1.8rem,2.2vw,2.5rem);max-width:12ch}
.hero-loop-head p{max-width:44ch}
.tech-loop{position:relative;min-height:360px;margin-top:8px;border-radius:30px;background:linear-gradient(180deg, rgba(17,29,52,.16), rgba(9,18,34,.12));border:1px solid rgba(220,234,255,.12);overflow:hidden}
.tech-loop::before{content:"";position:absolute;inset:34px;border-radius:36px;border:1px solid rgba(220,234,255,.14);box-shadow:inset 0 0 0 1px rgba(143,240,255,.04)}
.tech-loop::after{content:"";position:absolute;inset:auto 12% 14% 12%;height:1px;background:linear-gradient(90deg, transparent, rgba(168,243,255,.55), transparent);animation:heroScan 4.8s linear infinite}
.loop-connector{position:absolute;background:linear-gradient(90deg, rgba(168,243,255,.08), rgba(168,243,255,.38), rgba(168,243,255,.08));box-shadow:0 0 18px rgba(168,243,255,.16)}
.connector-top,.connector-bottom{left:18%;width:64%;height:1px}
.connector-top{top:72px}
.connector-bottom{bottom:72px}
.connector-left,.connector-right{top:20%;height:60%;width:1px;background:linear-gradient(180deg, rgba(168,243,255,.08), rgba(168,243,255,.38), rgba(168,243,255,.08))}
.connector-left{left:72px}
.connector-right{right:72px}
.loop-node-badge{position:absolute;padding:12px 16px;border-radius:18px;border:1px solid rgba(220,234,255,.14);background:linear-gradient(180deg, rgba(255,255,255,.13), rgba(255,255,255,.05));box-shadow:0 14px 28px rgba(5,16,34,.14);font-weight:700;color:#f3f8ff;backdrop-filter:blur(10px)}
.loop-top{left:50%;top:22px;transform:translateX(-50%)}
.loop-right{right:22px;top:50%;transform:translateY(-50%)}
.loop-bottom{left:50%;bottom:22px;transform:translateX(-50%)}
.loop-left{left:22px;top:50%;transform:translateY(-50%)}
.loop-center{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);width:164px;height:164px;border-radius:50%;display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;background:radial-gradient(circle at center, rgba(255,255,255,.16), rgba(255,255,255,.05));border:1px solid rgba(223,236,255,.16);box-shadow:0 18px 40px rgba(5,16,34,.16)}
.loop-center strong{font-size:1.2rem;margin-bottom:6px}
.loop-center small{font-size:.85rem;color:var(--muted)}
.loop-core-ring{position:absolute;inset:-12px;border-radius:50%;border:1px solid rgba(168,243,255,.22);animation:coreSpin 10s linear infinite}
.loop-core-ring.second{inset:-24px;border-style:dashed;opacity:.66;animation-direction:reverse;animation-duration:14s}
.flow-particle{position:absolute;width:12px;height:12px;border-radius:50%;background:radial-gradient(circle at 35% 35%, #ffffff, var(--primary-2));box-shadow:0 0 0 6px rgba(168,243,255,.12),0 0 18px rgba(168,243,255,.6);animation:heroLoop 10s linear infinite}
.particle-2{animation-delay:-2s}
.particle-3{animation-delay:-4s}
.particle-4{animation-delay:-6s}
.particle-5{animation-delay:-8s}
.hero-loop-metrics{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px;margin-top:18px}
.hero-loop-stat{padding:16px 18px;border-radius:20px;background:linear-gradient(180deg, rgba(255,255,255,.11), rgba(255,255,255,.05));border:1px solid rgba(220,234,255,.12)}
.hero-loop-stat strong{display:block;font-size:1rem;margin-bottom:8px;color:#fff}
.hero-loop-stat span{display:block;color:var(--muted);font-size:.92rem;line-height:1.6}
.hero-copy::after{content:"";position:absolute;right:-24px;bottom:-18px;width:220px;height:130px;background:linear-gradient(135deg, rgba(255,255,255,.07), rgba(255,255,255,0));clip-path:polygon(0 0,100% 100%,0 100%);pointer-events:none;opacity:.75}
.metric-card{min-height:100%}
.metric-card::after{content:"";position:absolute;right:-8%;bottom:-18%;width:42%;height:42%;background:radial-gradient(circle, rgba(168,243,255,.12), rgba(168,243,255,0) 70%);pointer-events:none}

.section-head h2{max-width:28ch}
.callout h2,.cta-panel h2{max-width:28ch}

@keyframes heroLoop{
  0%{top:72px;left:50%;transform:translateX(-50%)}
  24.5%{top:50%;left:calc(100% - 72px);transform:translateY(-50%)}
  25%{top:50%;left:calc(100% - 72px);transform:translateY(-50%)}
  49.5%{top:calc(100% - 72px);left:50%;transform:translateX(-50%)}
  50%{top:calc(100% - 72px);left:50%;transform:translateX(-50%)}
  74.5%{top:50%;left:72px;transform:translateY(-50%)}
  75%{top:50%;left:72px;transform:translateY(-50%)}
  100%{top:72px;left:50%;transform:translateX(-50%)}
}
@keyframes coreSpin{from{transform:rotate(0deg)}to{transform:rotate(360deg)}}
@keyframes heroScan{0%{transform:translateX(-24%)}50%{transform:translateX(24%)}100%{transform:translateX(-24%)}}

@media (max-width: 1180px){
  .header-search{width:min(260px,28vw)}
  .hero-grid{grid-template-columns:minmax(0,1fr) minmax(320px,.9fr)}
}
@media (max-width: 1024px){
  .header-search{display:none}
  .mobile-search{display:block}
  .hero-grid{grid-template-columns:1fr}
  .hero-visual{max-width:760px}
}
@media (max-width: 760px){
  .hero .eyebrow + h1{max-width:none}
  .page-hero h1{max-width:none}
  .hero-loop-metrics{grid-template-columns:1fr}
  .loop-node-badge{padding:10px 13px;font-size:.9rem}
  .tech-loop{min-height:320px}
  .connector-top,.connector-bottom{left:20%;width:60%}
  .connector-left{left:58px}
  .connector-right{right:58px}
  .loop-center{width:136px;height:136px}
  .flow-particle{width:10px;height:10px}
}


/* v6 refinements */
body{
  background:
    radial-gradient(circle at 12% -8%, rgba(168,243,255,.16), transparent 0 22%),
    radial-gradient(circle at 84% 4%, rgba(154,200,255,.12), transparent 0 24%),
    radial-gradient(circle at 50% 32%, rgba(212,220,255,.08), transparent 0 28%),
    linear-gradient(180deg, #314d76 0%, #395981 26%, #476b98 64%, #597fb0 100%);
}
body::after{
  background:
    linear-gradient(180deg, rgba(5,16,34,.10) 0%, rgba(5,16,34,.03) 28%, rgba(168,243,255,.02) 70%, rgba(255,255,255,.04) 100%);
  opacity:1;
}
.scroll-progress{height:5px;background:linear-gradient(90deg, rgba(159,238,255,.95), rgba(149,197,255,.98), rgba(221,216,255,.96));box-shadow:0 0 32px rgba(143,240,255,.72)}
.nav{grid-template-columns:max-content minmax(0,1fr) auto;gap:28px;min-height:96px}
.brand{margin-right:8px}
.nav-links{justify-content:flex-start;gap:12px;margin-left:4px}
.nav-links a{position:relative;padding:12px 14px}
.nav-links a.active{box-shadow:inset 0 0 0 1px rgba(220,234,255,.12)}
.nav-links a.active::after{content:"";position:absolute;left:14px;right:14px;bottom:6px;height:2px;border-radius:999px;background:linear-gradient(90deg, rgba(168,243,255,.05), rgba(168,243,255,.88), rgba(168,243,255,.05))}
.header-search{display:block;width:min(292px,25vw);padding:0;background:transparent;border:0;box-shadow:none}
.header-search .search-input{padding:12px 14px 12px 40px;border-radius:18px;background:rgba(255,255,255,.09);border:1px solid rgba(220,234,255,.22);box-shadow:0 14px 28px rgba(5,16,34,.12)}
.header-search .search-input:hover{border-color:rgba(220,234,255,.34)}
.header-search .search-results{top:calc(100% + 8px)}
.mobile-search .search-input{border:1px solid rgba(220,234,255,.22)}
.search-input::placeholder{color:#edf5ff;opacity:.95}
.hero-grid{grid-template-columns:minmax(0,1.16fr) minmax(300px,.84fr);align-items:start;gap:26px}
.hero-copy .lead{max-width:52rem}
.hero-loop-card{max-width:458px;margin-left:auto;padding:22px 22px 20px}
.hero-loop-head{margin-bottom:16px}
.hero-loop-head h2{max-width:11ch;font-size:clamp(1.58rem,2vw,2.24rem)}
.hero-loop-head p{max-width:34ch}
.hero .eyebrow + h1{max-width:13.2ch}
.hero-notes{gap:14px;margin-top:26px}
.metric-card,.overview-card,.service-card,.usage-card,.problem-card,.step-card,.quote-box,.cta-panel,.workflow-current,.workflow-node,.footer-card,.contact-card,.contact-form{border-color:rgba(220,234,255,.16)}
.page-hero h1{max-width:30ch;font-size:clamp(2.7rem,4.8vw,4.7rem);line-height:.98}
.section-head h2,.callout h2,.cta-panel h2{max-width:34ch}
.contact-layout,.callout{align-items:start}
textarea,.input,.select{color:#fff}
textarea::placeholder,.input::placeholder,.select::placeholder{color:#f0f6ff;opacity:.92}
.section-back-home .cta-panel{padding:22px 24px}
.section-back-home .btn-row{margin-top:20px}
.sector-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
#technischer-ueberblick .section-head{max-width:760px}
#technischer-ueberblick .overview-grid{margin-top:8px}
@media (max-width: 1180px){
  .nav{gap:20px}
  .header-search{width:min(256px,24vw)}
  .hero-grid{grid-template-columns:minmax(0,1.08fr) minmax(290px,.92fr)}
  .sector-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media (max-width: 1024px){
  .nav{grid-template-columns:max-content 1fr auto;gap:14px}
  .nav-links{gap:6px;margin-left:0}
  .nav-links a{padding:11px 11px;font-size:.96rem}
  .page-hero h1{max-width:none}
}
@media (max-width: 760px){
  .hero-loop-card{max-width:none;margin-left:0}
  .section-head h2,.callout h2,.cta-panel h2{max-width:none}
  .sector-grid{grid-template-columns:1fr}
}


/* v7 search spacing and solid dropdown */
.nav-actions{margin-left:28px;flex-shrink:0}
.header-search{width:min(248px,21vw);margin-left:6px}
.header-search .search-results,
.mobile-search .search-results{
  z-index:60;
  padding:10px;
  border-radius:20px;
  background:linear-gradient(180deg, rgba(51,77,118,.98), rgba(42,65,100,.98));
  border:1px solid rgba(220,234,255,.2);
  box-shadow:0 20px 48px rgba(5,16,34,.34);
  backdrop-filter:none;
  max-height:min(70vh, 520px);
  overflow-y:auto;
  overflow-x:hidden;
  overscroll-behavior:contain;
  scrollbar-width:thin;
  scrollbar-color:rgba(93,159,255,.55) transparent;
}
.header-search .search-results{
  width:clamp(360px, 34vw, 520px);
  left:auto;
  right:0;
}
.mobile-search .search-results{
  width:100%;
}
.header-search .search-results::-webkit-scrollbar,
.mobile-search .search-results::-webkit-scrollbar{width:10px}
.header-search .search-results::-webkit-scrollbar-track,
.mobile-search .search-results::-webkit-scrollbar-track{background:transparent}
.header-search .search-results::-webkit-scrollbar-thumb,
.mobile-search .search-results::-webkit-scrollbar-thumb{background:rgba(93,159,255,.45);border-radius:999px;border:2px solid transparent;background-clip:padding-box}
.search-result{
  background:linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  border:1px solid rgba(220,234,255,.12);
  padding:12px 14px;
  border-radius:16px;
}
.search-result h3{font-size:.98rem;line-height:1.25;margin-bottom:4px}
.search-result p{font-size:.9rem;line-height:1.45;margin-bottom:4px}
.search-result small{font-size:.82rem;line-height:1.35}
.search-result p,
.search-result h3,
.search-result small{position:relative;z-index:1}
@media (max-width: 1180px){
  .nav-actions{margin-left:22px}
  .header-search{width:min(228px,20vw)}
  .header-search .search-results{width:clamp(320px, 40vw, 460px)}
}

@media (max-width: 1024px){
  .nav-actions{margin-left:0}
}


/* v7.1 FAQ expansion and contact select polish */
.faq-grid{grid-template-columns:repeat(2,minmax(0,1fr));align-items:start}
.select{
  appearance:none;
  -webkit-appearance:none;
  -moz-appearance:none;
  padding-right:52px;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9' fill='none'%3E%3Cpath d='M1 1.5L7 7.5L13 1.5' stroke='%23F4FAFF' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat:no-repeat;
  background-position:right 18px center;
  background-size:14px 9px;
}
.select option{
  background:#324f78;
  color:#f7fbff;
}
.section-back-home .cta-panel p{max-width:58ch}
@media (max-width: 860px){
  .faq-grid{grid-template-columns:1fr}
}


/* v8.1 contact email validation */
.field-help{margin-top:8px;font-size:.92rem;line-height:1.45;color:var(--muted)}
.field-help.is-valid{color:#adf3cb}
.field-help.is-invalid{color:#ffd2d2}
.input.is-valid{border-color:rgba(173,243,203,.5);box-shadow:0 0 0 1px rgba(173,243,203,.18),0 0 18px rgba(173,243,203,.08)}
.input.is-invalid{border-color:rgba(255,176,176,.55);box-shadow:0 0 0 1px rgba(255,176,176,.18),0 0 18px rgba(255,176,176,.08)}
.btn.is-disabled,.btn[aria-disabled="true"]{opacity:.55;pointer-events:none;filter:saturate(.75)}


/* v10 mobile stabilization */
html,body{max-width:100%;overflow-x:hidden}
main,section,article,div,form,nav{min-width:0}
summary,small,span,strong,p,h1,h2,h3,h4,a,button,input,select,textarea{overflow-wrap:anywhere}
.summary-list div,.footer-links a,.footer-links span,.contact-response,.hero-inline-points{min-width:0}

@media (hover: none), (pointer: coarse){
  .cursor-glow{display:none !important}
}

@media (max-width: 1024px){
  body{background-attachment:scroll}
  .topbar{backdrop-filter:blur(14px)}
  .nav{grid-template-columns:minmax(0,1fr) auto;gap:12px;min-height:78px;padding:12px 0}
  .brand{gap:10px;margin-right:0;min-width:0}
  .brand-icon{width:62px;height:46px}
  .brand-name{font-size:1.18rem}
  .brand-sub{font-size:.7rem;line-height:1.15;white-space:normal;letter-spacing:.06em}
  .nav-actions{justify-self:end;align-self:start;margin-left:0}
  .mobile-toggle{display:inline-flex}
  .mobile-panel.open{display:block}
  .mobile-panel{padding:0 0 14px}
  .mobile-search{display:block}
  .mobile-search .search-results{position:static;left:auto;right:auto;top:auto;margin-top:10px}
  .mobile-links{padding:14px;border-radius:18px}
  .mobile-links a{padding:13px 14px}

  h1{font-size:clamp(2rem,8vw,2.8rem);line-height:1.02;letter-spacing:-.035em}
  h2{font-size:clamp(1.6rem,6.2vw,2.2rem);line-height:1.06}
  h3{font-size:clamp(1.08rem,4.8vw,1.32rem)}
  .lead{font-size:1rem}
  .section{padding:66px 0}
  .section-tight{padding:50px 0}
  .hero,.page-hero{padding:36px 0 20px}
  .hero-grid,.page-hero-grid,.callout,.contact-layout,.usage-grid,.problem-grid,.compare-grid,.service-grid,.grid-4,.benefit-grid,.value-grid,.three-grid,.footer-grid,.kicker-grid,.hero-notes,.metric-grid,.example-meta,.form-row,.overview-grid,.sector-grid,.faq-grid,.workflow-layout,.example-dashboard,.hero-system-grid{grid-template-columns:1fr !important;gap:16px}
  .section-head,.hero-copy,.page-copy,.hero-visual,.hero-loop-card,.contact-card,.contact-form,.cta-panel,.quote-box,.workflow-current,.dashboard-shell{max-width:none !important;width:100%}
  .hero-copy .lead,.page-hero .lead,.section-head h2,.callout h2,.cta-panel h2,.page-hero h1,.hero h1{max-width:none !important}
  .hero-copy::after,.page-shell::before{display:none}

  .dashboard-shell,.example-card,.card,.panel,.workflow-dashboard,.faq-item,.problem-card,.service-card,.usage-card,.compare-card,.contact-card,.contact-form,.cta-panel,.metric-card,.timeline-card,.step-card,.system-log,.footer-card,.highlight-box,.quote-box,.workflow-current,.overview-card{padding:18px}
  .workflow-toolbar{grid-column:auto;order:-1;margin-bottom:4px}
  .workflow-toolbar .btn-row,.workflow-inline-action,.contact-response,.btn-row{width:100%}
  .workflow-toolbar .btn,.btn{width:100%;min-width:0}
  .workflow-node,.system-log,.workflow-current{min-height:auto}
  .workflow-link{display:none}
  .workflow-current-copy{grid-template-columns:1fr;gap:12px;align-items:start}
  .workflow-current-side{justify-content:flex-start}
  .workflow-current-side .status-pill,.contact-response .status-pill,.hero-inline-points .status-pill{white-space:normal}
  .status-pill{max-width:100%}
  .example-top{gap:14px}
  .tag-row{gap:8px}
  .tag{max-width:100%}

  .hero-visual{display:block}
  .hero-loop-card{margin-left:0;padding:18px 18px 16px}
  .hero-loop-head{margin-bottom:12px}
  .hero-loop-head h2{max-width:none;font-size:1.35rem}
  .hero-loop-head p{max-width:none}
  .tech-loop{min-height:300px;padding:16px}
  .connector-top,.connector-bottom{left:26%;width:48%}
  .connector-left{left:42px}
  .connector-right{right:42px}
  .loop-node-badge{padding:8px 11px;font-size:.82rem;border-radius:14px}
  .loop-top{top:14px}
  .loop-right{right:14px}
  .loop-bottom{bottom:14px}
  .loop-left{left:14px}
  .loop-center{width:118px;height:118px;padding:12px}
  .loop-center strong{font-size:1rem}
  .loop-center small{font-size:.76rem}
  .flow-particle{width:10px;height:10px}
  .hero-loop-metrics{grid-template-columns:1fr}

  .problem-row{grid-template-columns:1fr;gap:10px}
  .problem-arrow{transform:rotate(90deg)}
  .overview-card h3{max-width:none}
  .step-number{top:14px;right:14px}

  .search-shell{max-width:none}
  .search-input{width:100%;padding-left:44px}
  .search-results{position:static;max-width:none}
  .search-result{padding:14px 15px}

  .input,.select,textarea{min-height:52px}
  textarea{min-height:168px}
  .form-row > div,.contact-fields > div{min-width:0}
  .summary-list div{word-break:break-word}

  .footer{padding:24px 0 32px}
  .footer-grid{gap:20px}
}

@media (max-width: 640px){
  .container{width:min(var(--container),calc(100% - 16px))}
  .nav{gap:10px;min-height:72px;padding:10px 0}
  .brand-icon{width:56px;height:42px}
  .brand-name{font-size:1.08rem}
  .brand-sub{font-size:.64rem}
  .mobile-toggle{width:44px;height:44px;border-radius:12px}
  .eyebrow,.mini-label{padding:8px 12px;font-size:12px}
  .hero-inline-points,.contact-response,.btn-row,.tag-row{gap:10px}
  .hero-notes{margin-top:22px}
  .tech-loop{min-height:264px}
  .connector-top,.connector-bottom{left:28%;width:44%}
  .connector-left{left:36px}
  .connector-right{right:36px}
  .loop-node-badge{padding:7px 9px;font-size:.75rem}
  .loop-center{width:104px;height:104px}
  .loop-center strong{font-size:.92rem}
  .loop-center small{font-size:.72rem}
  .contact-chip,.tag{font-size:.82rem}
}

@media (max-width: 420px){
  .brand{gap:8px}
  .brand-icon{width:52px;height:40px}
  .brand-name{font-size:1rem}
  .brand-sub{font-size:.6rem}
  h1{font-size:1.86rem}
  h2{font-size:1.48rem}
  .dashboard-shell,.example-card,.card,.panel,.workflow-dashboard,.faq-item,.problem-card,.service-card,.usage-card,.compare-card,.contact-card,.contact-form,.cta-panel,.metric-card,.timeline-card,.step-card,.system-log,.footer-card,.highlight-box,.quote-box,.workflow-current,.overview-card{padding:16px}
  .tech-loop{min-height:244px}
  .connector-left{left:30px}
  .connector-right{right:30px}
  .loop-top{top:12px}
  .loop-right{right:12px}
  .loop-bottom{bottom:12px}
  .loop-left{left:12px}
}

/* v11 premium-minimal accordions and polish */
.accordion-grid{align-items:start}
.accordion-card,.faq-more,.example-meta-toggle{padding:0;overflow:hidden;transition:border-color var(--transition), box-shadow var(--transition), background var(--transition), transform var(--transition)}
.accordion-card::after,.faq-more::after,.example-meta-toggle::after{content:"";position:absolute;inset:auto -24% -34% auto;width:52%;height:52%;background:radial-gradient(circle, rgba(168,243,255,.14), rgba(168,243,255,0) 72%);pointer-events:none;opacity:.72;transition:opacity var(--transition), transform var(--transition)}
.accordion-card[open],.faq-more[open],.example-meta-toggle[open]{border-color:rgba(168,243,255,.34);box-shadow:0 0 0 1px rgba(168,243,255,.12), var(--shadow-strong);background:linear-gradient(180deg, rgba(255,255,255,.17), rgba(255,255,255,.08))}
.accordion-card[open]::after,.faq-more[open]::after,.example-meta-toggle[open]::after{opacity:1;transform:scale(1.08)}
.accordion-summary{list-style:none;display:grid;grid-template-columns:auto minmax(0,1fr) auto;gap:16px;align-items:start;padding:22px 24px;cursor:pointer}
.accordion-summary::-webkit-details-marker{display:none}
.accordion-summary::marker{display:none}
.accordion-summary .mini-label{margin:0}
.accordion-text h3{margin:2px 0 8px;font-size:1.14rem;max-width:none}
.accordion-preview{margin:0;color:var(--muted);font-size:.96rem;line-height:1.65;max-width:52ch}
.accordion-action{display:inline-flex;align-items:center;justify-content:center;gap:8px;min-width:92px;padding:10px 14px;border-radius:999px;border:1px solid rgba(220,234,255,.14);background:rgba(255,255,255,.06);font-size:.84rem;font-weight:700;color:#eef6ff;white-space:nowrap;transition:background var(--transition), border-color var(--transition), transform var(--transition)}
.accordion-action::before{content:"+";font-size:1rem;line-height:1;transition:transform var(--transition)}
.accordion-card[open] .accordion-action,.faq-more[open] .accordion-action,.example-meta-toggle[open] .accordion-action{background:rgba(168,243,255,.12);border-color:rgba(168,243,255,.28)}
.accordion-card[open] .accordion-action::before,.faq-more[open] .accordion-action::before,.example-meta-toggle[open] .accordion-action::before{content:"–";transform:translateY(-1px)}
.accordion-content{padding:0 24px 24px;color:var(--muted)}
.accordion-content > :last-child{margin-bottom:0}
.accordion-content p{margin:0;color:var(--muted)}
.accordion-content .example-meta{padding-top:4px}
.accordion-split{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px}
.accordion-split > div{padding:16px 18px;border-radius:18px;background:rgba(255,255,255,.04);border:1px solid rgba(220,234,255,.08)}
.faq-more{grid-column:1/-1}
.faq-more-grid{padding-top:4px}
.faq-more .faq-item{margin-bottom:14px}
.faq-more .faq-item:last-child{margin-bottom:0}
.faq-item .faq-question{padding:20px 22px}
.faq-item .faq-answer-inner{padding:0 22px}
.example-meta-toggle .accordion-summary{padding:18px 20px}
.example-meta-toggle .accordion-content{padding:0 20px 20px}
.example-meta-toggle .example-meta{margin-top:0}
.example-meta-toggle .example-meta > div{background:rgba(255,255,255,.05)}
.kicker-grid .mini{position:relative;overflow:hidden}
.kicker-grid .mini::after{content:"";position:absolute;inset:auto 12% 0 12%;height:1px;background:linear-gradient(90deg, transparent, rgba(168,243,255,.6), transparent);animation:miniScan 4.8s linear infinite}
.section-head{position:relative}
.section-head::after{content:"";display:block;width:min(180px,38vw);height:2px;margin-top:18px;border-radius:999px;background:linear-gradient(90deg, rgba(168,243,255,.78), rgba(168,243,255,.08));box-shadow:0 0 22px rgba(168,243,255,.24)}
.callout,.cta-panel,.quote-box,.overview-card,.metric-card,.accordion-card,.faq-more,.example-meta-toggle{backdrop-filter:blur(16px)}
.compare-card .compare-column{min-height:100%}
.hero-inline-points .status-pill,.workflow-current-side .status-pill,.contact-response .status-pill{backdrop-filter:blur(10px)}
.workflow-current{background:linear-gradient(180deg, rgba(31,54,90,.62), rgba(22,39,67,.44))}
.workflow-current::before{opacity:.88}
.hero-loop-card::after{animation:loopGlow 6.5s ease-in-out infinite alternate}
@keyframes miniScan{0%{transform:translateX(-50%);opacity:.15}35%{opacity:.8}100%{transform:translateX(50%);opacity:.15}}
@keyframes loopGlow{from{transform:translateY(0) scale(1)}to{transform:translateY(-6px) scale(1.02)}}

@media (max-width: 960px){
  .accordion-summary{grid-template-columns:1fr auto;gap:14px}
  .accordion-summary .mini-label{grid-column:1/2}
  .accordion-text{grid-column:1/2}
  .accordion-action{align-self:center}
}
@media (max-width: 760px){
  .accordion-summary{padding:18px}
  .accordion-content{padding:0 18px 18px}
  .accordion-split{grid-template-columns:1fr}
  .section-head::after{margin-top:16px}
  .accordion-action{min-width:84px;padding:9px 12px}
  .example-meta-toggle .accordion-summary{padding:16px}
  .example-meta-toggle .accordion-content{padding:0 16px 16px}
}


/* v12 mobile header search + clearer hero hook */
.hero-simple-benefits{display:grid;gap:12px;margin-top:18px}
.hero-simple-title{font-size:.96rem;font-weight:700;color:#f2f8ff}
.hero-simple-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:10px}
.hero-simple-item{padding:12px 14px;border-radius:16px;background:linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.05));border:1px solid rgba(220,234,255,.14);box-shadow:0 14px 28px rgba(6,18,38,.10);font-weight:600;color:#f5fbff}
@media (min-width: 1025px){
  .hero-grid{grid-template-columns:minmax(0,1.22fr) minmax(280px,.78fr);gap:24px}
  .hero-loop-card{max-width:420px}
}
@media (max-width: 1024px){
  .nav{grid-template-columns:minmax(0,1fr);align-items:start}
  .brand{grid-column:1/-1}
  .nav-actions{grid-column:1/-1;display:grid;grid-template-columns:minmax(0,1fr) auto;gap:10px;width:100%;margin-top:10px;align-items:center}
  .header-search{display:block !important;width:100%;min-width:0;margin-left:0;grid-column:1/2}
  .header-search .search-input{min-width:0;width:100%;font-size:16px}
  .header-search .search-results{left:0;right:0;max-width:none}
  .mobile-toggle{grid-column:2/3;justify-self:end}
  .mobile-search{display:none !important}
  .hero-simple-grid{grid-template-columns:1fr}
}
@media (max-width: 640px){
  .hero-simple-item{padding:11px 13px;border-radius:14px;font-size:.95rem}
}


/* v13 layout cleanup */
.hero-loop-head .status-cluster{display:none}
.contact-layout-single{grid-template-columns:1fr;max-width:900px;margin:0 auto}
.service-grid,.three-grid,.sector-grid,.value-grid{grid-auto-rows:1fr}
.service-grid > .accordion-card,.three-grid > .accordion-card,.sector-grid > .accordion-card,.value-grid > .accordion-card{height:100%}
.service-grid > .accordion-card > .accordion-summary,.three-grid > .accordion-card > .accordion-summary,.sector-grid > .accordion-card > .accordion-summary,.value-grid > .accordion-card > .accordion-summary{min-height:100%}
.section-back-home .cta-panel h2{max-width:22ch}
.section-back-home .cta-panel p{max-width:44ch}
@media (max-width: 760px){
  .contact-layout-single{max-width:none}
}

/* === Alt theme v14: Graphit / Indigo / Teal === */
:root{
  --bg:#171c30;
  --bg-2:#242b45;
  --bg-3:#f7fbff;
  --surface:rgba(255,255,255,.10);
  --surface-strong:rgba(255,255,255,.16);
  --surface-solid:rgba(20,24,40,.72);
  --surface-solid-2:rgba(12,16,30,.86);
  --line:rgba(187,210,255,.16);
  --line-strong:rgba(207,224,255,.28);
  --text:#f7fbff;
  --muted:#d9e6fb;
  --muted-2:#aab7d8;
  --heading:#ffffff;
  --primary:#8c97ff;
  --primary-2:#58e8d8;
  --primary-3:#cab4ff;
  --success:#9bf0cc;
  --warning:#ffd19e;
  --danger:#ffb2c7;
  --shadow:0 22px 60px rgba(2,7,18,.36);
  --shadow-strong:0 34px 88px rgba(2,7,18,.48);
}
body{
  background:
    radial-gradient(circle at 10% -5%, rgba(88,232,216,.14), transparent 0 24%),
    radial-gradient(circle at 90% 2%, rgba(140,151,255,.16), transparent 0 24%),
    radial-gradient(circle at 50% 34%, rgba(202,180,255,.10), transparent 0 28%),
    linear-gradient(180deg, #232946 0%, #1d2440 22%, #17263c 58%, #121a2d 100%);
}
body::before{
  background-image:
    linear-gradient(rgba(201,219,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,219,255,.035) 1px, transparent 1px);
}
body::after{
  background:
    radial-gradient(circle at 24% 14%, rgba(255,255,255,.06), transparent 0 18%),
    radial-gradient(circle at 76% 12%, rgba(88,232,216,.09), transparent 0 22%),
    radial-gradient(circle at 48% 58%, rgba(140,151,255,.10), transparent 0 24%);
}
.page-shell::before{
  background:radial-gradient(circle at center, rgba(88,232,216,.12), transparent 72%);
}
.cursor-glow{
  background:radial-gradient(circle, rgba(88,232,216,.12) 0%, rgba(140,151,255,.09) 34%, rgba(140,151,255,0) 72%);
}
.eyebrow,.mini-label,.status-pill,.accordion-action,.tag,
.hero-simple-item,.hero-loop-stat,.contact-chip{
  border-color:rgba(209,223,255,.14);
  background:linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.045));
}
.gradient-text{
  background:linear-gradient(135deg,#fff 0%,#cfd8ff 30%,#8ff3ea 64%,#d8ccff 100%);
  -webkit-background-clip:text;background-clip:text;color:transparent;
}
.btn{
  border-color:rgba(201,219,255,.18);
  background:linear-gradient(180deg, rgba(140,151,255,.28), rgba(88,232,216,.12));
  box-shadow:0 18px 40px rgba(3,10,24,.26);
}
.btn.secondary{background:linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.045));}
.btn.ghost{background:rgba(255,255,255,.04);}
.topbar{background:rgba(20,26,44,.68);border-bottom-color:rgba(210,223,255,.12);}
.topbar.scrolled{background:rgba(16,22,38,.84);border-bottom-color:rgba(210,223,255,.16);box-shadow:0 18px 44px rgba(2,8,18,.34);}
.topbar::after{background:linear-gradient(90deg, transparent, rgba(88,232,216,.46), rgba(140,151,255,.4), transparent);}
.mobile-links{background:rgba(10,14,26,.64);}
.card,.panel,.highlight-box,.quote-box,.search-panel,.workflow-dashboard,.faq-item,.problem-card,.service-card,.usage-card,.compare-card,.contact-card,.contact-form,.cta-panel,.metric-card,.search-result,.timeline-card,.example-meta,.step-card,.system-log,.contact-chip,.footer-card,.example-card,.overview-card{
  background:linear-gradient(180deg, rgba(255,255,255,.11), rgba(255,255,255,.045));
  border-color:rgba(201,219,255,.12);
  box-shadow:var(--shadow);
}
.dashboard-shell{
  background:linear-gradient(180deg, rgba(255,255,255,.13), rgba(255,255,255,.05));
  border-color:rgba(205,221,255,.16);
}
.dashboard-shell::before,.example-card::before{
  background:linear-gradient(120deg, rgba(255,255,255,.08), transparent 30%, transparent 70%, rgba(88,232,216,.08));
}
.dashboard-shell::after,.overview-card::after,.metric-card::after,.accordion-card::after,.faq-more::after,.example-meta-toggle::after{
  background:radial-gradient(circle, rgba(88,232,216,.12), rgba(88,232,216,0) 72%);
}
.workflow-node{
  background:linear-gradient(180deg, rgba(28,36,62,.62), rgba(18,25,44,.42));
  border-color:rgba(205,221,255,.14);
}
.workflow-node.active{
  background:linear-gradient(180deg, rgba(46,59,102,.76), rgba(23,66,72,.44));
  border-color:rgba(88,232,216,.5);
  box-shadow:0 0 0 1px rgba(88,232,216,.14), 0 18px 38px rgba(2,9,18,.3);
}
.workflow-link,.loop-connector,.workflow-current::after,.section-head::after,.kicker-grid .mini::after{
  background:linear-gradient(90deg, transparent, rgba(88,232,216,.68), rgba(140,151,255,.52), transparent);
}
.system-log,.workflow-current{
  background:linear-gradient(180deg, rgba(21,28,49,.72), rgba(13,18,33,.52));
}
.compare-column.good{
  background:linear-gradient(180deg, rgba(140,151,255,.18), rgba(88,232,216,.10));
}
.search-input,.input,.select,textarea,.header-search{
  border-color:rgba(201,219,255,.16);
  background:linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.05));
}
.header-search .search-input{background:rgba(255,255,255,.06);}
.tech-loop{
  background:linear-gradient(180deg, rgba(13,18,33,.26), rgba(9,14,26,.16));
  border-color:rgba(201,219,255,.12);
}
.tech-loop::before{border-color:rgba(201,219,255,.12);}
.loop-center{
  background:radial-gradient(circle at center, rgba(255,255,255,.12), rgba(255,255,255,.035));
  border-color:rgba(205,221,255,.14);
}
.flow-particle{
  background:radial-gradient(circle at 35% 35%, #ffffff, var(--primary-2));
  box-shadow:0 0 0 6px rgba(88,232,216,.10), 0 0 20px rgba(88,232,216,.48);
}
.scroll-progress{box-shadow:0 0 30px rgba(88,232,216,.5);}
.footer{background:rgba(16,22,38,.28);border-top-color:rgba(209,223,255,.12);}
@media (prefers-color-scheme: dark){
  body{color-scheme:dark;}
}


/* === v14 light blue / white / neon blue theme override === */
:root{
  --bg:#dceaf9;
  --bg-2:#eef6ff;
  --bg-3:#ffffff;
  --surface:rgba(255,255,255,.78);
  --surface-strong:rgba(255,255,255,.9);
  --surface-solid:rgba(244,249,255,.96);
  --surface-solid-2:rgba(230,241,255,.98);
  --line:rgba(61,105,171,.16);
  --line-strong:rgba(50,105,186,.26);
  --text:#17304f;
  --muted:#365577;
  --muted-2:#547398;
  --heading:#102746;
  --primary:#2f7cff;
  --primary-2:#25cfff;
  --primary-3:#79a7ff;
  --success:#1fb980;
  --warning:#d68b10;
  --danger:#d45370;
  --shadow:0 20px 56px rgba(33,72,126,.14);
  --shadow-strong:0 28px 72px rgba(33,72,126,.18);
}
html{color-scheme:light}
body{
  color:var(--text);
  background:
    radial-gradient(circle at 10% -5%, rgba(37,207,255,.18), transparent 0 20%),
    radial-gradient(circle at 88% 0%, rgba(47,124,255,.16), transparent 0 22%),
    radial-gradient(circle at 50% 38%, rgba(255,255,255,.48), transparent 0 24%),
    linear-gradient(180deg, #f6fbff 0%, #eaf4ff 18%, #d8eafd 54%, #c6def8 100%);
}
body::before{
  background-image:
    linear-gradient(rgba(52,104,172,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(52,104,172,.045) 1px, transparent 1px);
}
body::after{
  background:
    radial-gradient(circle at 18% 14%, rgba(255,255,255,.62), transparent 0 20%),
    radial-gradient(circle at 80% 12%, rgba(37,207,255,.10), transparent 0 18%),
    radial-gradient(circle at 48% 58%, rgba(47,124,255,.08), transparent 0 22%);
}
.page-shell::before{background:radial-gradient(circle at center, rgba(37,207,255,.10), transparent 72%)}
a{color:inherit}
p,li,.lead,.small,.workflow-node p,.search-result p,.faq-answer-inner,.note,.field-help,.hero-simple-item,.hero-loop-card p,.problem-side p,.compare-list,.compare-column,.feature-item,.list-item,.footer p{color:var(--muted)}
h1,h2,h3,h4,strong,.brand-name,.faq-question,.workflow-node strong,.metric-number,.search-result h3,.btn,.nav-links a,.mobile-links a{color:var(--heading)}
.brand-sub,.search-result small,.step-number{color:var(--muted-2)}
.eyebrow,.mini-label,.status-pill,.accordion-action,.tag,.hero-simple-item,.hero-loop-stat,.contact-chip{
  color:#1f4773;
  border-color:rgba(69,121,189,.18);
  background:linear-gradient(180deg, rgba(255,255,255,.9), rgba(233,243,255,.82));
  box-shadow:0 10px 24px rgba(44,95,161,.10);
}
.gradient-text{background:linear-gradient(135deg, #103766 0%, #2674ff 38%, #25cfff 76%, #5f7fff 100%);-webkit-background-clip:text;background-clip:text;color:transparent}
.topbar{
  background:rgba(247,251,255,.86);
  border-bottom-color:rgba(58,110,179,.14);
  box-shadow:0 6px 26px rgba(50,93,156,.08);
}
.topbar.scrolled{
  background:rgba(243,249,255,.94);
  border-bottom-color:rgba(58,110,179,.18);
  box-shadow:0 14px 36px rgba(40,84,145,.12);
}
.topbar::after{background:linear-gradient(90deg, transparent, rgba(37,207,255,.48), rgba(47,124,255,.42), transparent)}
.nav-links a:hover,.nav-links a.active,.mobile-links a:hover,.mobile-links a.active{background:rgba(47,124,255,.10);color:var(--heading)}
.mobile-links{background:rgba(247,251,255,.96);border-color:rgba(58,110,179,.14)}
.mobile-toggle{border-color:rgba(58,110,179,.16);background:rgba(255,255,255,.82);color:var(--heading)}
.card,.panel,.highlight-box,.quote-box,.search-panel,.workflow-dashboard,.faq-item,.problem-card,.service-card,.usage-card,.compare-card,.contact-card,.contact-form,.cta-panel,.metric-card,.search-result,.timeline-card,.example-meta,.step-card,.system-log,.contact-chip,.footer-card,.example-card,.overview-card{
  background:linear-gradient(180deg, rgba(255,255,255,.86), rgba(240,247,255,.76));
  border-color:rgba(61,105,171,.14);
  box-shadow:var(--shadow);
}
.dashboard-shell{
  background:linear-gradient(180deg, rgba(255,255,255,.78), rgba(237,246,255,.70));
  border-color:rgba(61,105,171,.18);
}
.dashboard-shell::before,.example-card::before{background:linear-gradient(120deg, rgba(255,255,255,.65), transparent 32%, transparent 68%, rgba(37,207,255,.10))}
.workflow-node{
  color:var(--text);
  background:linear-gradient(180deg, rgba(255,255,255,.88), rgba(233,243,255,.78));
  border-color:rgba(67,121,197,.18);
}
.workflow-node.active{
  background:linear-gradient(180deg, rgba(227,245,255,.96), rgba(214,238,255,.84));
  border-color:rgba(37,207,255,.48);
  box-shadow:0 0 0 1px rgba(37,207,255,.10), 0 20px 36px rgba(38,103,191,.16);
}
.workflow-node.done{border-color:rgba(31,185,128,.34)}
.node-status{color:#24507f}
.node-status::before{background:rgba(44,106,182,.28)}
.workflow-link,.loop-connector,.workflow-current::after,.section-head::after,.kicker-grid .mini::after{background:linear-gradient(90deg, transparent, rgba(37,207,255,.78), rgba(47,124,255,.62), transparent)}
.system-log,.workflow-current,.hero-loop-card,.tech-loop{background:linear-gradient(180deg, rgba(255,255,255,.86), rgba(234,244,255,.74));border-color:rgba(61,105,171,.16)}
.workflow-current::before{background:linear-gradient(180deg, rgba(37,207,255,.18), rgba(37,207,255,.8), rgba(47,124,255,.20));box-shadow:0 0 24px rgba(37,207,255,.24)}
.compare-column.good{background:linear-gradient(180deg, rgba(216,240,255,.82), rgba(233,246,255,.74))}
.compare-column.bad,.compare-column,.problem-side,.kicker-grid .mini{background:rgba(255,255,255,.64);border-color:rgba(61,105,171,.12)}
.search-input,.input,.select,textarea,.header-search{
  color:var(--heading);
  border-color:rgba(67,121,197,.18);
  background:linear-gradient(180deg, rgba(255,255,255,.96), rgba(236,245,255,.92));
}
.header-search .search-input{background:linear-gradient(180deg, rgba(255,255,255,.94), rgba(240,247,255,.94))}
.search-input::placeholder,.input::placeholder,textarea::placeholder{color:#6d88aa;opacity:1}
.search-icon{color:#4473ad}
.header-search .search-results,.mobile-search .search-results{
  background:linear-gradient(180deg, rgba(248,252,255,.98), rgba(235,244,255,.98));
  border-color:rgba(67,121,197,.16);
  box-shadow:0 22px 48px rgba(40,84,145,.16);
}
.search-result{background:linear-gradient(180deg, rgba(255,255,255,.92), rgba(241,247,255,.88));border-color:rgba(67,121,197,.12)}
.footer{background:rgba(241,248,255,.58);border-top-color:rgba(58,110,179,.12)}
.footer a:hover{color:#1754a8}
.btn{
  color:#f9fdff;
  border-color:rgba(28,104,204,.18);
  background:linear-gradient(180deg, #3d8dff 0%, #1f6cff 100%);
  box-shadow:0 16px 34px rgba(33,95,194,.24);
}
.btn.secondary{color:var(--heading);background:linear-gradient(180deg, rgba(255,255,255,.92), rgba(232,243,255,.88));border-color:rgba(67,121,197,.18)}
.btn.ghost{color:var(--heading);background:rgba(255,255,255,.74);border-color:rgba(67,121,197,.16)}
.btn:hover{filter:brightness(1.03);transform:translateY(-1px)}
.field-help{color:#58779a}
.field-help.is-valid{color:#1a8b63}
.field-help.is-invalid{color:#c84a64}
.select option{background:#f4f9ff;color:#17304f}
textarea,.input,.select{color:var(--heading)}
.consent-wrap{margin-top:16px}
.consent-check{display:grid;grid-template-columns:22px 1fr;gap:12px;align-items:start;padding:16px 18px;border-radius:18px;border:1px solid rgba(67,121,197,.16);background:linear-gradient(180deg, rgba(255,255,255,.88), rgba(238,246,255,.80));box-shadow:0 12px 24px rgba(40,84,145,.08)}
.consent-check input{margin-top:2px;width:18px;height:18px;accent-color:#1f6cff}
.consent-check span{color:var(--muted);line-height:1.55}
.consent-check a{color:#1657b3;text-decoration:underline;text-underline-offset:2px}
.consent-check a:hover{color:#0e4290}
.btn.is-disabled,.btn[aria-disabled="true"]{opacity:.58;pointer-events:none;filter:saturate(.82)}
.scroll-progress{background:linear-gradient(90deg, #25cfff, #2f7cff);box-shadow:0 0 28px rgba(37,207,255,.42)}
.cursor-glow{background:radial-gradient(circle, rgba(37,207,255,.14) 0%, rgba(47,124,255,.10) 38%, rgba(47,124,255,0) 72%)}
@media (max-width: 1024px){
  .topbar{background:rgba(247,251,255,.94)}
}

/* === v14.2 theme toggle + contrast-safe light/dark modes === */
.theme-toggle{
  display:inline-flex;align-items:center;gap:10px;
  min-height:48px;padding:10px 14px;border-radius:16px;
  border:1px solid transparent;background:transparent;
  font-weight:700;transition:transform var(--transition), background var(--transition), border-color var(--transition), box-shadow var(--transition), color var(--transition);
}
.theme-toggle:hover{transform:translateY(-1px)}
.theme-toggle-icon{display:inline-flex;align-items:center;justify-content:center;width:20px;height:20px;font-size:1rem;line-height:1}
.theme-toggle-text{white-space:nowrap}

body[data-theme="light"]{color-scheme:light}
body[data-theme="dark"]{color-scheme:dark}

body[data-theme="light"]{
  --text:#17304f;
  --muted:#365577;
  --muted-2:#58779a;
  --heading:#102746;
  color:var(--text);
  background:
    radial-gradient(circle at 10% -5%, rgba(37,207,255,.18), transparent 0 20%),
    radial-gradient(circle at 88% 0%, rgba(47,124,255,.16), transparent 0 22%),
    radial-gradient(circle at 50% 38%, rgba(255,255,255,.50), transparent 0 24%),
    linear-gradient(180deg, #f7fbff 0%, #ebf4ff 18%, #dceafd 54%, #cde1f8 100%);
}
body[data-theme="light"] body::before{}
body[data-theme="light"]::before, body[data-theme="light"]::after{}
body[data-theme="light"] p,
body[data-theme="light"] li,
body[data-theme="light"] .lead,
body[data-theme="light"] .small,
body[data-theme="light"] .note,
body[data-theme="light"] .field-help,
body[data-theme="light"] .feature-item,
body[data-theme="light"] .list-item,
body[data-theme="light"] .compare-list,
body[data-theme="light"] .hero-loop-card p,
body[data-theme="light"] .workflow-node p,
body[data-theme="light"] .search-result p,
body[data-theme="light"] .faq-answer-inner,
body[data-theme="light"] .summary-list,
body[data-theme="light"] .footer p,
body[data-theme="light"] .workflow-current p,
body[data-theme="light"] .compare-column,
body[data-theme="light"] .hero-simple-item,
body[data-theme="light"] .hero-loop-stat span,
body[data-theme="light"] .consent-check span,
body[data-theme="light"] .loop-center small{color:var(--muted)}
body[data-theme="light"] h1,
body[data-theme="light"] h2,
body[data-theme="light"] h3,
body[data-theme="light"] h4,
body[data-theme="light"] strong,
body[data-theme="light"] .brand-name,
body[data-theme="light"] .nav-links a,
body[data-theme="light"] .mobile-links a,
body[data-theme="light"] .faq-question,
body[data-theme="light"] .loop-center strong,
body[data-theme="light"] .loop-node-badge,
body[data-theme="light"] .hero-loop-stat strong,
body[data-theme="light"] .hero-simple-title,
body[data-theme="light"] .search-result h3,
body[data-theme="light"] .workflow-node strong,
body[data-theme="light"] .metric-number{color:var(--heading)}
body[data-theme="light"] .brand-sub,
body[data-theme="light"] .search-result small,
body[data-theme="light"] .step-number,
body[data-theme="light"] .node-status{color:#486a91}
body[data-theme="light"] .eyebrow,
body[data-theme="light"] .mini-label,
body[data-theme="light"] .status-pill,
body[data-theme="light"] .accordion-action,
body[data-theme="light"] .tag,
body[data-theme="light"] .hero-simple-item,
body[data-theme="light"] .hero-loop-stat,
body[data-theme="light"] .contact-chip{
  color:#1f4773;
  border-color:rgba(69,121,189,.22);
  background:linear-gradient(180deg, rgba(255,255,255,.96), rgba(234,244,255,.90));
  box-shadow:0 10px 24px rgba(44,95,161,.10);
}
body[data-theme="light"] .gradient-text{background:linear-gradient(135deg, #103766 0%, #2674ff 38%, #25cfff 76%, #5f7fff 100%);-webkit-background-clip:text;background-clip:text;color:transparent}
body[data-theme="light"] .topbar{
  position:sticky;top:0;
  background:rgba(247,251,255,.92);
  border-bottom:1px solid rgba(58,110,179,.16);
  box-shadow:0 8px 28px rgba(50,93,156,.10);
}
body[data-theme="light"] .topbar.scrolled{background:rgba(244,249,255,.97);border-bottom-color:rgba(58,110,179,.22);box-shadow:0 16px 40px rgba(40,84,145,.14)}
body[data-theme="light"] .topbar::after{background:linear-gradient(90deg, transparent, rgba(37,207,255,.48), rgba(47,124,255,.42), transparent)}
body[data-theme="light"] .nav-links a:hover,
body[data-theme="light"] .nav-links a.active,
body[data-theme="light"] .mobile-links a:hover,
body[data-theme="light"] .mobile-links a.active{background:rgba(47,124,255,.10);color:var(--heading)}
body[data-theme="light"] .mobile-links{background:rgba(247,251,255,.98);border-color:rgba(58,110,179,.16)}
body[data-theme="light"] .mobile-toggle{border-color:rgba(58,110,179,.18);background:rgba(255,255,255,.9);color:var(--heading)}
body[data-theme="light"] .theme-toggle{border-color:rgba(67,121,197,.18);background:linear-gradient(180deg, rgba(255,255,255,.96), rgba(236,245,255,.92));color:var(--heading);box-shadow:0 12px 26px rgba(40,84,145,.10)}
body[data-theme="light"] .card,
body[data-theme="light"] .panel,
body[data-theme="light"] .highlight-box,
body[data-theme="light"] .quote-box,
body[data-theme="light"] .search-panel,
body[data-theme="light"] .workflow-dashboard,
body[data-theme="light"] .faq-item,
body[data-theme="light"] .problem-card,
body[data-theme="light"] .service-card,
body[data-theme="light"] .usage-card,
body[data-theme="light"] .compare-card,
body[data-theme="light"] .contact-card,
body[data-theme="light"] .contact-form,
body[data-theme="light"] .cta-panel,
body[data-theme="light"] .metric-card,
body[data-theme="light"] .search-result,
body[data-theme="light"] .timeline-card,
body[data-theme="light"] .example-meta,
body[data-theme="light"] .step-card,
body[data-theme="light"] .system-log,
body[data-theme="light"] .contact-chip,
body[data-theme="light"] .footer-card,
body[data-theme="light"] .example-card,
body[data-theme="light"] .overview-card,
body[data-theme="light"] .workflow-current{
  background:linear-gradient(180deg, rgba(255,255,255,.98), rgba(239,247,255,.93));
  border-color:rgba(67,121,197,.20);
  box-shadow:0 18px 46px rgba(40,84,145,.12);
}
body[data-theme="light"] .dashboard-shell{
  background:linear-gradient(180deg, rgba(255,255,255,.96), rgba(237,246,255,.90));
  border-color:rgba(67,121,197,.24);
}
body[data-theme="light"] .dashboard-shell::before,
body[data-theme="light"] .example-card::before{background:linear-gradient(120deg, rgba(255,255,255,.75), transparent 32%, transparent 68%, rgba(37,207,255,.12))}
body[data-theme="light"] .workflow-node{
  background:linear-gradient(180deg, rgba(255,255,255,.98), rgba(232,243,255,.92));
  border-color:rgba(67,121,197,.22);
  color:var(--text);
}
body[data-theme="light"] .workflow-node.active{background:linear-gradient(180deg, rgba(227,245,255,.98), rgba(214,238,255,.90));border-color:rgba(37,207,255,.50);box-shadow:0 0 0 1px rgba(37,207,255,.14), 0 20px 36px rgba(38,103,191,.16)}
body[data-theme="light"] .workflow-node.done{border-color:rgba(31,185,128,.34)}
body[data-theme="light"] .workflow-link,
body[data-theme="light"] .loop-connector,
body[data-theme="light"] .workflow-current::after,
body[data-theme="light"] .section-head::after,
body[data-theme="light"] .kicker-grid .mini::after{background:linear-gradient(90deg, transparent, rgba(37,207,255,.78), rgba(47,124,255,.62), transparent)}
body[data-theme="light"] .tech-loop{background:linear-gradient(180deg, rgba(255,255,255,.97), rgba(237,246,255,.92));border-color:rgba(67,121,197,.20)}
body[data-theme="light"] .tech-loop::before{border-color:rgba(67,121,197,.18);box-shadow:inset 0 0 0 1px rgba(37,207,255,.06)}
body[data-theme="light"] .loop-node-badge{border-color:rgba(67,121,197,.20);background:linear-gradient(180deg, rgba(255,255,255,.98), rgba(237,246,255,.94));box-shadow:0 12px 28px rgba(40,84,145,.12)}
body[data-theme="light"] .loop-center{background:radial-gradient(circle at center, rgba(255,255,255,.98), rgba(236,245,255,.94));border-color:rgba(67,121,197,.22);box-shadow:0 18px 40px rgba(40,84,145,.14)}
body[data-theme="light"] .loop-core-ring{border-color:rgba(47,124,255,.20)}
body[data-theme="light"] .flow-particle{background:radial-gradient(circle at 35% 35%, #ffffff, #25cfff);box-shadow:0 0 0 6px rgba(37,207,255,.10), 0 0 20px rgba(37,207,255,.34)}
body[data-theme="light"] .hero-loop-stat,
body[data-theme="light"] .hero-simple-item,
body[data-theme="light"] .contact-chip{background:linear-gradient(180deg, rgba(255,255,255,.98), rgba(236,245,255,.92));border-color:rgba(67,121,197,.20)}
body[data-theme="light"] .compare-column.good{background:linear-gradient(180deg, rgba(216,240,255,.84), rgba(233,246,255,.76))}
body[data-theme="light"] .compare-column.bad,
body[data-theme="light"] .compare-column,
body[data-theme="light"] .problem-side,
body[data-theme="light"] .kicker-grid .mini{background:rgba(255,255,255,.86);border-color:rgba(67,121,197,.18)}
body[data-theme="light"] .search-input,
body[data-theme="light"] .input,
body[data-theme="light"] .select,
body[data-theme="light"] textarea,
body[data-theme="light"] .header-search{
  color:var(--heading);
  border-color:rgba(67,121,197,.20);
  background:linear-gradient(180deg, rgba(255,255,255,.98), rgba(236,245,255,.94));
}
body[data-theme="light"] .header-search .search-input{background:linear-gradient(180deg, rgba(255,255,255,.98), rgba(240,247,255,.96))}
body[data-theme="light"] .search-input::placeholder,
body[data-theme="light"] .input::placeholder,
body[data-theme="light"] textarea::placeholder{color:#6d88aa;opacity:1}
body[data-theme="light"] .search-icon{color:#4473ad}
body[data-theme="light"] .header-search .search-results,
body[data-theme="light"] .mobile-search .search-results{background:linear-gradient(180deg, rgba(248,252,255,.99), rgba(235,244,255,.99));border:1px solid rgba(67,121,197,.18);box-shadow:0 22px 48px rgba(40,84,145,.16)}
body[data-theme="light"] .search-result{background:linear-gradient(180deg, rgba(255,255,255,.98), rgba(241,247,255,.94));border-color:rgba(67,121,197,.16)}
body[data-theme="light"] textarea,
body[data-theme="light"] .input,
body[data-theme="light"] .select{color:var(--heading)}
body[data-theme="light"] .consent-check{border-color:rgba(67,121,197,.18);background:linear-gradient(180deg, rgba(255,255,255,.98), rgba(238,246,255,.92));box-shadow:0 12px 24px rgba(40,84,145,.08)}
body[data-theme="light"] .consent-check a{color:#1657b3}
body[data-theme="light"] .field-help.is-valid{color:#1a8b63}
body[data-theme="light"] .field-help.is-invalid{color:#c84a64}
body[data-theme="light"] .select option{background:#f4f9ff;color:#17304f}
body[data-theme="light"] .btn{color:#f9fdff;border-color:rgba(28,104,204,.18);background:linear-gradient(180deg, #3d8dff 0%, #1f6cff 100%);box-shadow:0 16px 34px rgba(33,95,194,.24)}
body[data-theme="light"] .btn.secondary{color:var(--heading);background:linear-gradient(180deg, rgba(255,255,255,.96), rgba(232,243,255,.90));border-color:rgba(67,121,197,.18)}
body[data-theme="light"] .btn.ghost{color:var(--heading);background:rgba(255,255,255,.84);border-color:rgba(67,121,197,.18)}
body[data-theme="light"] .footer{background:rgba(241,248,255,.62);border-top-color:rgba(58,110,179,.14)}
body[data-theme="light"] .scroll-progress{background:linear-gradient(90deg, #25cfff, #2f7cff);box-shadow:0 0 28px rgba(37,207,255,.42)}
body[data-theme="light"] .cursor-glow{background:radial-gradient(circle, rgba(37,207,255,.14) 0%, rgba(47,124,255,.10) 38%, rgba(47,124,255,0) 72%)}

body[data-theme="dark"]{
  --text:#f7fbff;
  --muted:#d9e6fb;
  --muted-2:#aab7d8;
  --heading:#ffffff;
  color:var(--text);
  background:
    radial-gradient(circle at 10% -5%, rgba(88,232,216,.14), transparent 0 24%),
    radial-gradient(circle at 90% 2%, rgba(140,151,255,.16), transparent 0 24%),
    radial-gradient(circle at 50% 34%, rgba(202,180,255,.10), transparent 0 28%),
    linear-gradient(180deg, #232946 0%, #1d2440 22%, #17263c 58%, #121a2d 100%);
}
body[data-theme="dark"] p,
body[data-theme="dark"] li,
body[data-theme="dark"] .lead,
body[data-theme="dark"] .small,
body[data-theme="dark"] .note,
body[data-theme="dark"] .field-help,
body[data-theme="dark"] .feature-item,
body[data-theme="dark"] .list-item,
body[data-theme="dark"] .compare-list,
body[data-theme="dark"] .hero-loop-card p,
body[data-theme="dark"] .workflow-node p,
body[data-theme="dark"] .search-result p,
body[data-theme="dark"] .faq-answer-inner,
body[data-theme="dark"] .summary-list,
body[data-theme="dark"] .footer p,
body[data-theme="dark"] .workflow-current p,
body[data-theme="dark"] .compare-column,
body[data-theme="dark"] .hero-simple-item,
body[data-theme="dark"] .hero-loop-stat span,
body[data-theme="dark"] .consent-check span,
body[data-theme="dark"] .loop-center small{color:var(--muted)}
body[data-theme="dark"] h1,
body[data-theme="dark"] h2,
body[data-theme="dark"] h3,
body[data-theme="dark"] h4,
body[data-theme="dark"] strong,
body[data-theme="dark"] .brand-name,
body[data-theme="dark"] .nav-links a,
body[data-theme="dark"] .mobile-links a,
body[data-theme="dark"] .faq-question,
body[data-theme="dark"] .loop-center strong,
body[data-theme="dark"] .loop-node-badge,
body[data-theme="dark"] .hero-loop-stat strong,
body[data-theme="dark"] .hero-simple-title,
body[data-theme="dark"] .search-result h3,
body[data-theme="dark"] .workflow-node strong,
body[data-theme="dark"] .metric-number{color:var(--heading)}
body[data-theme="dark"] .eyebrow,
body[data-theme="dark"] .mini-label,
body[data-theme="dark"] .status-pill,
body[data-theme="dark"] .accordion-action,
body[data-theme="dark"] .tag,
body[data-theme="dark"] .hero-simple-item,
body[data-theme="dark"] .hero-loop-stat,
body[data-theme="dark"] .contact-chip{color:#edf5ff;border-color:rgba(209,223,255,.14);background:linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.045))}
body[data-theme="dark"] .gradient-text{background:linear-gradient(135deg,#fff 0%,#cfd8ff 30%,#8ff3ea 64%,#d8ccff 100%);-webkit-background-clip:text;background-clip:text;color:transparent}
body[data-theme="dark"] .topbar{position:sticky;top:0;background:rgba(20,26,44,.72);border-bottom:1px solid rgba(210,223,255,.12);box-shadow:none}
body[data-theme="dark"] .topbar.scrolled{background:rgba(16,22,38,.86);border-bottom-color:rgba(210,223,255,.16);box-shadow:0 18px 44px rgba(2,8,18,.34)}
body[data-theme="dark"] .topbar::after{background:linear-gradient(90deg, transparent, rgba(88,232,216,.46), rgba(140,151,255,.4), transparent)}
body[data-theme="dark"] .nav-links a:hover,
body[data-theme="dark"] .nav-links a.active,
body[data-theme="dark"] .mobile-links a:hover,
body[data-theme="dark"] .mobile-links a.active{background:rgba(255,255,255,.08);color:#fff}
body[data-theme="dark"] .mobile-links{background:rgba(10,14,26,.64);border-color:rgba(210,223,255,.12)}
body[data-theme="dark"] .mobile-toggle{border-color:rgba(220,234,255,.18);background:rgba(255,255,255,.07);color:#fff}
body[data-theme="dark"] .theme-toggle{border-color:rgba(201,219,255,.18);background:linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.045));color:#edf5ff;box-shadow:0 12px 26px rgba(3,10,24,.20)}
body[data-theme="dark"] .card,
body[data-theme="dark"] .panel,
body[data-theme="dark"] .highlight-box,
body[data-theme="dark"] .quote-box,
body[data-theme="dark"] .search-panel,
body[data-theme="dark"] .workflow-dashboard,
body[data-theme="dark"] .faq-item,
body[data-theme="dark"] .problem-card,
body[data-theme="dark"] .service-card,
body[data-theme="dark"] .usage-card,
body[data-theme="dark"] .compare-card,
body[data-theme="dark"] .contact-card,
body[data-theme="dark"] .contact-form,
body[data-theme="dark"] .cta-panel,
body[data-theme="dark"] .metric-card,
body[data-theme="dark"] .search-result,
body[data-theme="dark"] .timeline-card,
body[data-theme="dark"] .example-meta,
body[data-theme="dark"] .step-card,
body[data-theme="dark"] .system-log,
body[data-theme="dark"] .contact-chip,
body[data-theme="dark"] .footer-card,
body[data-theme="dark"] .example-card,
body[data-theme="dark"] .overview-card,
body[data-theme="dark"] .workflow-current{background:linear-gradient(180deg, rgba(255,255,255,.11), rgba(255,255,255,.045));border-color:rgba(201,219,255,.12);box-shadow:0 22px 60px rgba(2,7,18,.36)}
body[data-theme="dark"] .dashboard-shell{background:linear-gradient(180deg, rgba(255,255,255,.13), rgba(255,255,255,.05));border-color:rgba(205,221,255,.16)}
body[data-theme="dark"] .workflow-node{background:linear-gradient(180deg, rgba(28,36,62,.62), rgba(18,25,44,.42));border-color:rgba(205,221,255,.14)}
body[data-theme="dark"] .workflow-node.active{background:linear-gradient(180deg, rgba(46,59,102,.76), rgba(23,66,72,.44));border-color:rgba(88,232,216,.5);box-shadow:0 0 0 1px rgba(88,232,216,.14), 0 18px 38px rgba(2,9,18,.3)}
body[data-theme="dark"] .workflow-link,
body[data-theme="dark"] .loop-connector,
body[data-theme="dark"] .workflow-current::after,
body[data-theme="dark"] .section-head::after,
body[data-theme="dark"] .kicker-grid .mini::after{background:linear-gradient(90deg, transparent, rgba(88,232,216,.68), rgba(140,151,255,.52), transparent)}
body[data-theme="dark"] .system-log,
body[data-theme="dark"] .workflow-current,
body[data-theme="dark"] .hero-loop-card,
body[data-theme="dark"] .tech-loop{background:linear-gradient(180deg, rgba(13,18,33,.26), rgba(9,14,26,.16));border-color:rgba(201,219,255,.12)}
body[data-theme="dark"] .tech-loop::before{border-color:rgba(201,219,255,.12)}
body[data-theme="dark"] .loop-node-badge{border-color:rgba(220,234,255,.14);background:linear-gradient(180deg, rgba(255,255,255,.13), rgba(255,255,255,.05))}
body[data-theme="dark"] .loop-center{background:radial-gradient(circle at center, rgba(255,255,255,.12), rgba(255,255,255,.035));border-color:rgba(205,221,255,.14)}
body[data-theme="dark"] .flow-particle{background:radial-gradient(circle at 35% 35%, #ffffff, #58e8d8);box-shadow:0 0 0 6px rgba(88,232,216,.10), 0 0 20px rgba(88,232,216,.48)}
body[data-theme="dark"] .search-input,
body[data-theme="dark"] .input,
body[data-theme="dark"] .select,
body[data-theme="dark"] textarea,
body[data-theme="dark"] .header-search{color:#fff;border-color:rgba(201,219,255,.16);background:linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.05))}
body[data-theme="dark"] .header-search .search-input{background:rgba(255,255,255,.06)}
body[data-theme="dark"] .search-input::placeholder,
body[data-theme="dark"] .input::placeholder,
body[data-theme="dark"] textarea::placeholder{color:#eef6ff;opacity:.84}
body[data-theme="dark"] .header-search .search-results,
body[data-theme="dark"] .mobile-search .search-results{background:linear-gradient(180deg, rgba(18,26,44,.98), rgba(12,18,31,.98));border:1px solid rgba(201,219,255,.16);box-shadow:0 22px 48px rgba(3,10,24,.30)}
body[data-theme="dark"] .search-result{background:linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));border-color:rgba(201,219,255,.10)}
body[data-theme="dark"] .btn{color:#fff;border-color:rgba(201,219,255,.18);background:linear-gradient(180deg, rgba(140,151,255,.28), rgba(88,232,216,.12));box-shadow:0 18px 40px rgba(3,10,24,.26)}
body[data-theme="dark"] .btn.secondary{background:linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.045))}
body[data-theme="dark"] .btn.ghost{background:rgba(255,255,255,.04)}
body[data-theme="dark"] .consent-check{border-color:rgba(201,219,255,.16);background:linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.05));box-shadow:0 12px 24px rgba(3,10,24,.12)}
body[data-theme="dark"] .consent-check a{color:#8ff3ea}
body[data-theme="dark"] .select option{background:#18233a;color:#f1f7ff}
body[data-theme="dark"] .footer{background:rgba(16,22,38,.28);border-top-color:rgba(209,223,255,.12)}
body[data-theme="dark"] .scroll-progress{background:linear-gradient(90deg, #58e8d8, #8c97ff);box-shadow:0 0 30px rgba(88,232,216,.5)}
body[data-theme="dark"] .cursor-glow{background:radial-gradient(circle, rgba(88,232,216,.12) 0%, rgba(140,151,255,.09) 34%, rgba(140,151,255,0) 72%)}

@media (max-width: 1024px){
  .nav-actions{grid-template-columns:minmax(0,1fr) auto auto;align-items:center}
  .header-search{grid-column:1/2}
  .theme-toggle{grid-column:2/3;justify-self:end;min-height:44px;padding:10px 12px}
  .mobile-toggle{grid-column:3/4}
}
@media (max-width: 640px){
  .theme-toggle{padding:10px 11px;min-width:44px}
  .theme-toggle-text{display:none}
}

body[data-theme="light"]::before{
  background-image:
    linear-gradient(rgba(52,104,172,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(52,104,172,.045) 1px, transparent 1px);
}
body[data-theme="light"]::after{
  background:
    radial-gradient(circle at 18% 14%, rgba(255,255,255,.62), transparent 0 20%),
    radial-gradient(circle at 80% 12%, rgba(37,207,255,.10), transparent 0 18%),
    radial-gradient(circle at 48% 58%, rgba(47,124,255,.08), transparent 0 22%);
}
body[data-theme="light"] .page-shell::before{background:radial-gradient(circle at center, rgba(37,207,255,.10), transparent 72%)}

body[data-theme="dark"]::before{
  background-image:
    linear-gradient(rgba(201,219,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,219,255,.035) 1px, transparent 1px);
}
body[data-theme="dark"]::after{
  background:
    radial-gradient(circle at 24% 14%, rgba(255,255,255,.06), transparent 0 18%),
    radial-gradient(circle at 76% 12%, rgba(88,232,216,.09), transparent 0 22%),
    radial-gradient(circle at 48% 58%, rgba(140,151,255,.10), transparent 0 24%);
}
body[data-theme="dark"] .page-shell::before{background:radial-gradient(circle at center, rgba(88,232,216,.12), transparent 72%)}


/* === v14 final usability, sticky header, contrast, responsive cards === */
:root{
  --topbar-offset: 108px;
}
body{
  padding-top: var(--topbar-offset);
}
.anchor-offset{scroll-margin-top:calc(var(--topbar-offset) + 24px)}
.topbar{
  position:fixed !important;
  left:0; right:0; top:0;
  width:100%;
}
body[data-theme="light"] .topbar{
  background:rgba(248,252,255,.92) !important;
}
body[data-theme="dark"] .topbar{
  background:rgba(16,22,38,.78) !important;
}
body[data-theme="light"] .topbar.scrolled,
body[data-theme="dark"] .topbar.scrolled{
  backdrop-filter:blur(18px);
}

.cursor-glow{
  width:18rem;
  height:18rem;
  opacity:.58;
}

/* make global theme toggle clearly visible in banner */
.nav-actions{flex-shrink:0}
.theme-toggle{
  display:inline-flex !important;
  align-items:center;
  justify-content:center;
  min-width:112px;
  min-height:46px;
  font-size:.95rem;
  border-width:1px;
}
.theme-toggle-icon{font-size:1.05rem}
@media (min-width:1025px){
  .header-search{width:220px;min-width:220px}
  .nav{gap:14px}
  .nav-links{gap:4px}
  .nav-links a{padding:10px 12px;font-size:.98rem}
}
@media (max-width:1024px){
  .nav{min-height:auto;padding-top:14px;padding-bottom:14px}
  .nav-actions{grid-template-columns:minmax(0,1fr) auto auto;gap:8px}
  .theme-toggle{min-width:96px}
}
@media (max-width:640px){
  .theme-toggle{min-width:44px;padding:10px 12px}
  .header-search .search-input{padding-right:14px}
}

/* light mode: every text/border darker than background */
body[data-theme="light"] .hero-loop-card,
body[data-theme="light"] .tech-loop,
body[data-theme="light"] .workflow-current,
body[data-theme="light"] .system-log,
body[data-theme="light"] .service-card,
body[data-theme="light"] .usage-card,
body[data-theme="light"] .step-card,
body[data-theme="light"] .quote-box,
body[data-theme="light"] .overview-card,
body[data-theme="light"] .cta-panel,
body[data-theme="light"] .problem-card,
body[data-theme="light"] .contact-form,
body[data-theme="light"] .contact-card,
body[data-theme="light"] .example-card,
body[data-theme="light"] .metric-card{
  border-color:rgba(61,105,171,.20) !important;
}
body[data-theme="light"] .hero-loop-card p,
body[data-theme="light"] .hero-loop-head p,
body[data-theme="light"] .hero-loop-stat span,
body[data-theme="light"] .workflow-current p,
body[data-theme="light"] .hero-simple-item,
body[data-theme="light"] .overview-card p,
body[data-theme="light"] .quote-box p,
body[data-theme="light"] .accordion-preview,
body[data-theme="light"] .accordion-content,
body[data-theme="light"] .accordion-content p,
body[data-theme="light"] .kicker-grid .mini p,
body[data-theme="light"] .compare-column p,
body[data-theme="light"] .compare-list,
body[data-theme="light"] .note,
body[data-theme="light"] .field-help,
body[data-theme="light"] .loop-center small{
  color:#4a678a !important;
}
body[data-theme="light"] .hero-loop-head h2,
body[data-theme="light"] .hero-loop-stat strong,
body[data-theme="light"] .workflow-node strong,
body[data-theme="light"] .loop-center strong,
body[data-theme="light"] .overview-card h3,
body[data-theme="light"] .quote-box h2,
body[data-theme="light"] .kicker-grid .mini strong,
body[data-theme="light"] .accordion-text h3,
body[data-theme="light"] .faq-question,
body[data-theme="light"] .search-result h3{
  color:#16345d !important;
}
body[data-theme="light"] .loop-node-badge{
  color:#1d4473 !important;
  border-color:rgba(61,105,171,.24) !important;
  background:linear-gradient(180deg, rgba(255,255,255,.98), rgba(232,243,255,.96)) !important;
  box-shadow:0 14px 28px rgba(40,84,145,.10) !important;
}
body[data-theme="light"] .hero-loop-stat,
body[data-theme="light"] .hero-simple-item,
body[data-theme="light"] .contact-chip{
  background:linear-gradient(180deg, rgba(255,255,255,.98), rgba(236,245,255,.95)) !important;
  border-color:rgba(61,105,171,.20) !important;
}
body[data-theme="light"] .loop-center{
  background:radial-gradient(circle at center, rgba(255,255,255,.99), rgba(236,245,255,.96)) !important;
}
body[data-theme="light"] .tech-loop::before,
body[data-theme="light"] .loop-core-ring{border-color:rgba(61,105,171,.18) !important}
body[data-theme="light"] .overview-card::after,
body[data-theme="light"] .metric-card::after,
body[data-theme="light"] .accordion-card::after,
body[data-theme="light"] .faq-more::after,
body[data-theme="light"] .example-meta-toggle::after{
  opacity:.45;
}
body[data-theme="light"] .summary-list,
body[data-theme="light"] .contact-response .note{
  color:#4a678a !important;
}
body[data-theme="light"] .accordion-action,
body[data-theme="light"] .theme-toggle,
body[data-theme="light"] .mobile-toggle{
  color:#17355e !important;
}

/* start page kernaussage box */
body[data-page="index.html"] .callout{
  grid-template-columns:minmax(0,1fr) minmax(320px,.82fr);
  align-items:stretch;
}
body[data-page="index.html"] .callout > .quote-box{
  max-width:430px;
  width:100%;
  min-height:100%;
  margin:auto;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:10px;
}
body[data-page="index.html"] .callout > .quote-box .btn-row{margin-top:12px}

/* cleaner detail cards on Leistungen / Einsatzbereiche / Über mich */
body[data-page="leistungen.html"] .service-grid > .accordion-card > .accordion-summary,
body[data-page="leistungen.html"] .three-grid > .accordion-card > .accordion-summary,
body[data-page="einsatzbereiche.html"] .service-grid > .accordion-card > .accordion-summary,
body[data-page="einsatzbereiche.html"] .sector-grid > .accordion-card > .accordion-summary,
body[data-page="ueber-mich.html"] .value-grid > .accordion-card > .accordion-summary{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:12px;
  min-height:auto !important;
  padding:18px 20px;
}
body[data-page="leistungen.html"] .service-grid > .accordion-card,
body[data-page="leistungen.html"] .three-grid > .accordion-card,
body[data-page="einsatzbereiche.html"] .service-grid > .accordion-card,
body[data-page="einsatzbereiche.html"] .sector-grid > .accordion-card,
body[data-page="ueber-mich.html"] .value-grid > .accordion-card{
  min-height:0;
}
body[data-page="leistungen.html"] .service-grid > .accordion-card .mini-label,
body[data-page="leistungen.html"] .three-grid > .accordion-card .mini-label,
body[data-page="einsatzbereiche.html"] .service-grid > .accordion-card .mini-label,
body[data-page="einsatzbereiche.html"] .sector-grid > .accordion-card .mini-label,
body[data-page="ueber-mich.html"] .value-grid > .accordion-card .mini-label{
  margin:0;
}
body[data-page="leistungen.html"] .service-grid > .accordion-card .accordion-text,
body[data-page="leistungen.html"] .three-grid > .accordion-card .accordion-text,
body[data-page="einsatzbereiche.html"] .service-grid > .accordion-card .accordion-text,
body[data-page="einsatzbereiche.html"] .sector-grid > .accordion-card .accordion-text,
body[data-page="ueber-mich.html"] .value-grid > .accordion-card .accordion-text{
  width:100%;
}
body[data-page="leistungen.html"] .service-grid > .accordion-card .accordion-text h3,
body[data-page="leistungen.html"] .three-grid > .accordion-card .accordion-text h3,
body[data-page="einsatzbereiche.html"] .service-grid > .accordion-card .accordion-text h3,
body[data-page="einsatzbereiche.html"] .sector-grid > .accordion-card .accordion-text h3,
body[data-page="ueber-mich.html"] .value-grid > .accordion-card .accordion-text h3{
  margin:0 0 8px;
  font-size:1.08rem;
  line-height:1.24;
  max-width:none;
}
body[data-page="leistungen.html"] .service-grid > .accordion-card .accordion-preview,
body[data-page="leistungen.html"] .three-grid > .accordion-card .accordion-preview,
body[data-page="einsatzbereiche.html"] .service-grid > .accordion-card .accordion-preview,
body[data-page="einsatzbereiche.html"] .sector-grid > .accordion-card .accordion-preview,
body[data-page="ueber-mich.html"] .value-grid > .accordion-card .accordion-preview{
  max-width:none;
  margin:0;
}
body[data-page="leistungen.html"] .service-grid > .accordion-card .accordion-action,
body[data-page="leistungen.html"] .three-grid > .accordion-card .accordion-action,
body[data-page="einsatzbereiche.html"] .service-grid > .accordion-card .accordion-action,
body[data-page="einsatzbereiche.html"] .sector-grid > .accordion-card .accordion-action,
body[data-page="ueber-mich.html"] .value-grid > .accordion-card .accordion-action{
  align-self:flex-start;
  margin-top:2px;
}
body[data-page="leistungen.html"] .service-grid > .accordion-card .accordion-content,
body[data-page="leistungen.html"] .three-grid > .accordion-card .accordion-content,
body[data-page="einsatzbereiche.html"] .service-grid > .accordion-card .accordion-content,
body[data-page="einsatzbereiche.html"] .sector-grid > .accordion-card .accordion-content,
body[data-page="ueber-mich.html"] .value-grid > .accordion-card .accordion-content{
  padding:0 20px 20px;
}

/* responsive tightening across devices */
@media (max-width:1200px){
  body[data-page="leistungen.html"] .service-grid,
  body[data-page="einsatzbereiche.html"] .service-grid,
  body[data-page="einsatzbereiche.html"] .sector-grid,
  body[data-page="ueber-mich.html"] .value-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}
@media (max-width:900px){
  body[data-page="index.html"] .callout{grid-template-columns:1fr}
  body[data-page="index.html"] .callout > .quote-box{max-width:none}
}
@media (max-width:760px){
  body{padding-top:var(--topbar-offset)}
  body[data-page="leistungen.html"] .service-grid,
  body[data-page="leistungen.html"] .three-grid,
  body[data-page="einsatzbereiche.html"] .service-grid,
  body[data-page="einsatzbereiche.html"] .sector-grid,
  body[data-page="ueber-mich.html"] .value-grid{
    grid-template-columns:1fr !important;
  }
  body[data-page="leistungen.html"] .service-grid > .accordion-card > .accordion-summary,
  body[data-page="leistungen.html"] .three-grid > .accordion-card > .accordion-summary,
  body[data-page="einsatzbereiche.html"] .service-grid > .accordion-card > .accordion-summary,
  body[data-page="einsatzbereiche.html"] .sector-grid > .accordion-card > .accordion-summary,
  body[data-page="ueber-mich.html"] .value-grid > .accordion-card > .accordion-summary{
    padding:16px;
  }
  body[data-page="leistungen.html"] .service-grid > .accordion-card .accordion-content,
  body[data-page="leistungen.html"] .three-grid > .accordion-card .accordion-content,
  body[data-page="einsatzbereiche.html"] .service-grid > .accordion-card .accordion-content,
  body[data-page="einsatzbereiche.html"] .sector-grid > .accordion-card .accordion-content,
  body[data-page="ueber-mich.html"] .value-grid > .accordion-card .accordion-content{padding:0 16px 16px}
}


/* === v14.3 targeted cleanup after review === */
.cursor-glow{width:14rem !important;height:14rem !important;opacity:.5}
body[data-page="index.html"] .tech-loop .loop-connector{display:none}
body[data-theme="light"] .hero-loop-metrics .hero-loop-stat strong{color:#17355e !important;opacity:1}
body[data-theme="light"] .hero-loop-metrics .hero-loop-stat span{color:#4a678a !important;opacity:1}

body[data-page="index.html"] .callout{
  grid-template-columns:minmax(0,1.18fr) minmax(300px,.82fr) !important;
  gap:28px;
  align-items:center;
}
body[data-page="index.html"] .callout > .quote-box{
  max-width:390px;
  min-height:auto !important;
  padding:24px 24px 22px;
  justify-self:center;
  align-self:center;
  margin:0 auto;
  gap:12px;
}
body[data-page="index.html"] .callout > .quote-box .btn-row{margin-top:6px}
body[data-page="index.html"] .callout > .quote-box .btn{min-width:0}

.stack-card{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  justify-content:flex-start;
  gap:12px;
  height:100%;
  min-height:0;
  text-align:left;
}
.stack-card .mini-label{margin:0}
.stack-card h3{
  margin:0;
  font-size:1.08rem;
  line-height:1.24;
  max-width:none;
}
.stack-card p{margin:0;max-width:none;color:var(--muted)}
body[data-page="leistungen.html"] .service-grid > .stack-card,
body[data-page="leistungen.html"] .three-grid > .stack-card,
body[data-page="einsatzbereiche.html"] .service-grid > .stack-card,
body[data-page="einsatzbereiche.html"] .sector-grid > .stack-card,
body[data-page="ueber-mich.html"] .value-grid > .stack-card{padding:18px 20px}
body[data-page="leistungen.html"] .service-grid,
body[data-page="leistungen.html"] .three-grid,
body[data-page="einsatzbereiche.html"] .service-grid,
body[data-page="einsatzbereiche.html"] .sector-grid,
body[data-page="ueber-mich.html"] .value-grid{grid-auto-rows:1fr}
body[data-page="leistungen.html"] .service-grid > .stack-card,
body[data-page="leistungen.html"] .three-grid > .stack-card,
body[data-page="einsatzbereiche.html"] .service-grid > .stack-card,
body[data-page="einsatzbereiche.html"] .sector-grid > .stack-card,
body[data-page="ueber-mich.html"] .value-grid > .stack-card{height:100%}

.section-back-home .container{display:flex;justify-content:center}
.back-home-panel{
  width:auto;
  max-width:max-content;
  padding:14px 18px !important;
  display:flex;
  align-items:center;
  gap:12px;
  margin:0 auto;
}
.back-home-panel h2,
.back-home-panel p{display:none}
.back-home-panel .btn-row{margin:0}
.back-home-panel .btn{padding:10px 16px;min-height:auto}

body[data-page="kontakt.html"] .page-hero-grid{
  grid-template-columns:1fr !important;
  justify-items:center;
  text-align:center;
}
body[data-page="kontakt.html"] .page-hero-grid > div{max-width:840px;margin:0 auto}
body[data-page="kontakt.html"] .page-hero-grid .hero-inline-points{justify-content:center}
body[data-page="kontakt.html"] .contact-layout-single{margin-top:-2px}

@media (max-width:900px){
  body[data-page="index.html"] .callout{grid-template-columns:1fr !important;gap:18px}
  body[data-page="index.html"] .callout > .quote-box{max-width:none;width:100%}
}
@media (max-width:760px){
  .cursor-glow{width:12rem !important;height:12rem !important}
  body[data-page="leistungen.html"] .service-grid > .stack-card,
  body[data-page="leistungen.html"] .three-grid > .stack-card,
  body[data-page="einsatzbereiche.html"] .service-grid > .stack-card,
  body[data-page="einsatzbereiche.html"] .sector-grid > .stack-card,
  body[data-page="ueber-mich.html"] .value-grid > .stack-card{padding:16px}
  .back-home-panel{width:100%;justify-content:space-between;max-width:none}
  .back-home-panel .mini-label{margin:0}
}

/* === start page refresh === */
body[data-page="index.html"] .hero-grid-clean{
  grid-template-columns:minmax(0,1.08fr) minmax(360px,.92fr);
  align-items:center;
  gap:34px;
}
body[data-page="index.html"] .hero-copy{max-width:760px}
body[data-page="index.html"] .hero-summary-line{
  margin:16px 0 0;
  color:var(--muted);
  font-weight:600;
  letter-spacing:.01em;
}
body[data-page="index.html"] .hero-copy .btn-row{margin-top:24px}
body[data-page="index.html"] .hero-inline-points,
body[data-page="index.html"] .hero-notes{display:none !important}
body[data-page="index.html"] .hero-stream-wrap{display:block;position:relative;min-height:620px}
body[data-page="index.html"] .hero-stream-panel{
  position:relative;
  min-height:620px;
  width:100%;
  border-radius:32px;
  overflow:hidden;
  background:linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  border:1px solid rgba(176,205,255,.22);
  box-shadow:0 28px 70px rgba(13,30,63,.16);
}
body[data-page="index.html"] .hero-stream-panel::before{
  content:"";
  position:absolute;
  inset:5% 7% 7%;
  border-radius:28px;
  background:radial-gradient(circle at 30% 20%, rgba(82,194,255,.16), transparent 36%), radial-gradient(circle at 74% 66%, rgba(72,135,255,.16), transparent 34%);
  pointer-events:none;
}
body[data-page="index.html"] .stream-glow{
  position:absolute;
  width:260px;
  height:260px;
  border-radius:999px;
  background:radial-gradient(circle, rgba(74,208,255,.18), rgba(74,208,255,0) 68%);
  filter:blur(8px);
}
body[data-page="index.html"] .stream-glow-a{top:12%;right:-12%}
body[data-page="index.html"] .stream-glow-b{bottom:2%;left:-10%}
body[data-page="index.html"] .stream-path{
  position:absolute;
  background:linear-gradient(180deg, rgba(61,165,255,.72), rgba(48,125,255,.38));
  box-shadow:0 0 18px rgba(67,188,255,.18);
}
body[data-page="index.html"] .stream-start{left:56%;top:9%;width:2px;height:120px}
body[data-page="index.html"] .stream-branch-top{left:30%;top:22%;width:26%;height:2px}
body[data-page="index.html"] .stream-main{left:30%;top:22%;width:2px;height:58%}
body[data-page="index.html"] .stream-branch-mid{left:30%;top:52%;width:44%;height:2px}
body[data-page="index.html"] .stream-bottom{left:74%;top:52%;width:2px;height:28%}
body[data-page="index.html"] .stream-node{
  position:absolute;
  width:14px;
  height:14px;
  border-radius:50%;
  background:radial-gradient(circle at 35% 35%, #fff, #59d4ff 64%, #2f7dff 100%);
  box-shadow:0 0 0 7px rgba(89,212,255,.12), 0 0 18px rgba(89,212,255,.42);
}
body[data-page="index.html"] .node-a{left:calc(56% - 6px);top:8%}
body[data-page="index.html"] .node-b{left:calc(30% - 6px);top:calc(22% - 6px)}
body[data-page="index.html"] .node-c{left:calc(56% - 6px);top:calc(22% - 6px)}
body[data-page="index.html"] .node-d{left:calc(30% - 6px);top:calc(52% - 6px)}
body[data-page="index.html"] .node-e{left:calc(74% - 6px);top:calc(52% - 6px)}
body[data-page="index.html"] .node-f{left:calc(74% - 6px);top:calc(80% - 6px)}
body[data-page="index.html"] .stream-file{
  position:absolute;
  width:74px;
  height:92px;
  border-radius:20px;
  background:linear-gradient(180deg, rgba(255,255,255,.94), rgba(235,245,255,.88));
  border:1px solid rgba(88,167,255,.24);
  box-shadow:0 18px 40px rgba(20,40,78,.14);
}
body[data-page="index.html"] .stream-file::before,
body[data-page="index.html"] .stream-file::after,
body[data-page="index.html"] .stream-file span{
  content:"";
  position:absolute;
  left:16px;
  right:16px;
  height:3px;
  border-radius:999px;
  background:linear-gradient(90deg, rgba(48,125,255,.66), rgba(89,212,255,.8));
}
body[data-page="index.html"] .stream-file::before{top:24px}
body[data-page="index.html"] .stream-file::after{top:36px}
body[data-page="index.html"] .stream-file span{top:48px}
body[data-page="index.html"] .file-main{animation:streamMainMove 7s ease-in-out infinite}
body[data-page="index.html"] .file-branch{animation:streamBranchMove 6.4s ease-in-out infinite .8s;transform:translate(0,0) scale(.9)}
@keyframes streamMainMove{
  0%,100%{transform:translate(calc(56% - 37px), 4%) scale(.94)}
  18%{transform:translate(calc(56% - 37px), 18%) scale(1)}
  34%{transform:translate(calc(30% - 37px), 18%) scale(.98)}
  52%{transform:translate(calc(30% - 37px), 46%) scale(1)}
  72%{transform:translate(calc(74% - 37px), 46%) scale(1)}
  90%{transform:translate(calc(74% - 37px), 72%) scale(.96)}
}
@keyframes streamBranchMove{
  0%,100%{transform:translate(calc(56% - 31px), 10%) scale(.88);opacity:0}
  14%{opacity:1}
  30%{transform:translate(calc(30% - 31px), 18%) scale(.88);opacity:1}
  46%{transform:translate(calc(30% - 31px), 44%) scale(.92);opacity:1}
  62%{transform:translate(calc(30% - 31px), 44%) scale(.92);opacity:0}
}
body[data-page="index.html"] .section-head-compact h2{max-width:18ch}
body[data-page="index.html"] .problem-grid-compact{grid-template-columns:repeat(3,minmax(0,1fr))}
body[data-page="index.html"] .static-problem-card{gap:12px;min-height:100%}
body[data-page="index.html"] .static-problem-card h3{margin:0;font-size:1.14rem;max-width:14ch}
body[data-page="index.html"] .static-problem-card p{margin:0;max-width:none}
body[data-page="index.html"] .callout-clean{
  grid-template-columns:minmax(0,1.16fr) minmax(280px,.7fr) !important;
  gap:26px;
  align-items:center;
}
body[data-page="index.html"] .callout-clean > div:first-child{max-width:760px}
body[data-page="index.html"] .quote-box-compact{
  max-width:340px !important;
  min-height:auto !important;
  padding:22px 22px 20px !important;
  margin:0 auto !important;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:10px;
}
body[data-page="index.html"] .quote-box-compact .btn-row{margin-top:4px}
body[data-page="index.html"] .compare-grid-compact{gap:18px}
body[data-page="index.html"] .compare-card{padding:18px}
body[data-page="index.html"] .compare-column-uniform,
body[data-page="index.html"] .compare-column-uniform.bad,
body[data-page="index.html"] .compare-column-uniform.good{
  background:rgba(255,255,255,.64) !important;
  border:1px solid rgba(61,105,171,.12) !important;
}
body[data-page="index.html"] .cta-panel-centered{
  text-align:center;
  max-width:860px;
  margin:0 auto;
}
body[data-page="index.html"] .cta-panel-centered h2{max-width:none;margin-left:auto;margin-right:auto}
body[data-page="index.html"] .cta-panel-centered p{max-width:58ch;margin-left:auto;margin-right:auto}
body[data-page="index.html"] .cta-panel-centered .btn-row{justify-content:center}
body[data-theme="dark"][data-page="index.html"] .compare-column-uniform,
body[data-theme="dark"][data-page="index.html"] .compare-column-uniform.bad,
body[data-theme="dark"][data-page="index.html"] .compare-column-uniform.good{
  background:linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04)) !important;
  border-color:rgba(205,221,255,.12) !important;
}
body[data-theme="dark"][data-page="index.html"] .hero-stream-panel,
body[data-theme="dark"][data-page="index.html"] .quote-box-compact,
body[data-theme="dark"][data-page="index.html"] .static-problem-card,
body[data-theme="dark"][data-page="index.html"] .compare-card,
body[data-theme="dark"][data-page="index.html"] .cta-panel-centered{
  background:linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.05));
  border-color:rgba(205,221,255,.14);
}
body[data-theme="dark"][data-page="index.html"] .stream-file{
  background:linear-gradient(180deg, rgba(21,30,48,.94), rgba(31,42,66,.88));
  border-color:rgba(88,232,216,.26);
}
body[data-theme="dark"][data-page="index.html"] .stream-file::before,
body[data-theme="dark"][data-page="index.html"] .stream-file::after,
body[data-theme="dark"][data-page="index.html"] .stream-file span{background:linear-gradient(90deg, rgba(88,232,216,.75), rgba(140,151,255,.9))}
@media (max-width:1180px){
  body[data-page="index.html"] .hero-grid-clean{grid-template-columns:minmax(0,1fr) minmax(320px,.88fr)}
  body[data-page="index.html"] .problem-grid-compact{grid-template-columns:repeat(3,minmax(0,1fr))}
}
@media (max-width:900px){
  body[data-page="index.html"] .hero-grid-clean,
  body[data-page="index.html"] .callout-clean{grid-template-columns:1fr !important}
  body[data-page="index.html"] .hero-stream-wrap{min-height:440px}
  body[data-page="index.html"] .hero-stream-panel{min-height:440px}
  body[data-page="index.html"] .problem-grid-compact{grid-template-columns:1fr}
  body[data-page="index.html"] .quote-box-compact{max-width:none !important}
}
@media (max-width:760px){
  body[data-page="index.html"] .hero-summary-line{font-size:.98rem;line-height:1.55}
  body[data-page="index.html"] .hero-stream-wrap{min-height:380px}
  body[data-page="index.html"] .hero-stream-panel{min-height:380px;border-radius:26px}
  body[data-page="index.html"] .stream-file{width:60px;height:76px;border-radius:16px}
  body[data-page="index.html"] .stream-file::before,
  body[data-page="index.html"] .stream-file::after,
  body[data-page="index.html"] .stream-file span{left:13px;right:13px}
  body[data-page="index.html"] .stream-file::before{top:20px}
  body[data-page="index.html"] .stream-file::after{top:30px}
  body[data-page="index.html"] .stream-file span{top:40px}
  body[data-page="index.html"] .node-a{top:10%}
  body[data-page="index.html"] .compare-card{padding:14px}
  body[data-page="index.html"] .cta-panel-centered .btn-row{flex-direction:column;align-items:center}
}

/* === start page naked flow animation override === */
body[data-page="index.html"] .hero{
  overflow:visible;
}
body[data-page="index.html"] .hero-grid-clean{
  display:block;
  position:relative;
  min-height:660px;
  padding-right:min(38vw, 440px);
  align-items:initial;
}
body[data-page="index.html"] .hero-copy{
  position:relative;
  z-index:2;
}
body[data-page="index.html"] .hero-stream-wrap.hero-stream-naked{
  position:absolute;
  top:-8px;
  right:0;
  width:min(35vw, 410px);
  min-height:900px;
  pointer-events:none;
  z-index:1;
}
body[data-page="index.html"] .hero-flow-canvas{
  width:100%;
  height:900px;
}
body[data-page="index.html"] .hero-flow-svg{
  display:block;
  width:100%;
  height:100%;
  overflow:visible;
}
body[data-page="index.html"] .flow-base,
body[data-page="index.html"] .flow-glow,
body[data-page="index.html"] .flow-branch{
  fill:none;
  stroke-linecap:round;
  stroke-linejoin:round;
}
body[data-page="index.html"] .flow-base{
  stroke:rgba(118, 159, 228, .26);
  stroke-width:3.5;
}
body[data-page="index.html"] .flow-glow{
  stroke:url(#flowStrokeLight);
  stroke-width:3;
  stroke-dasharray:44 20 140 24;
  animation:heroFlowDash 6.8s linear infinite;
  filter:drop-shadow(0 0 8px rgba(109, 219, 255, .34));
}
body[data-page="index.html"] .flow-branch{
  stroke:rgba(109, 182, 255, .36);
  stroke-width:2.5;
  stroke-dasharray:10 10;
}
body[data-page="index.html"] .flow-node,
body[data-page="index.html"] .flow-pulse,
body[data-page="index.html"] .orbit-dot,
body[data-page="index.html"] .flow-dot-runner circle{
  fill:#7feaff;
  filter:drop-shadow(0 0 10px rgba(90, 216, 255, .55));
}
body[data-page="index.html"] .flow-node{
  animation:heroNodePulse 3.2s ease-in-out infinite;
}
body[data-page="index.html"] .pulse-a{animation:heroPulse 3.8s ease-in-out infinite .2s}
body[data-page="index.html"] .pulse-b{animation:heroPulse 4.2s ease-in-out infinite .8s}
body[data-page="index.html"] .pulse-c{animation:heroPulse 4s ease-in-out infinite 1.4s}
body[data-page="index.html"] .pulse-d{animation:heroPulse 4.4s ease-in-out infinite 2s}
body[data-page="index.html"] .orbit-ring{
  fill:none;
  stroke:rgba(132, 180, 236, .18);
  stroke-width:1.6;
  stroke-dasharray:4 7;
}
body[data-page="index.html"] .hero-flow-svg .flow-orbit{
  transform-box:fill-box;
  transform-origin:center;
}
body[data-page="index.html"] .orbit-one{animation:heroOrbitSpin 10s linear infinite}
body[data-page="index.html"] .orbit-two{animation:heroOrbitSpinReverse 12s linear infinite}
body[data-page="index.html"] .flow-doc rect{
  fill:rgba(255, 255, 255, .92);
  stroke:rgba(93, 155, 236, .28);
  stroke-width:1.3;
  filter:drop-shadow(0 10px 18px rgba(55, 97, 160, .18));
}
body[data-page="index.html"] .flow-doc line{
  stroke:#3a81ff;
  stroke-width:2.3;
  stroke-linecap:round;
}
body[data-page="index.html"] .flow-dot-runner circle{
  r:5;
  opacity:.95;
}
body[data-theme="dark"][data-page="index.html"] .flow-base{
  stroke:rgba(146, 173, 235, .20);
}
body[data-theme="dark"][data-page="index.html"] .flow-glow{
  stroke:url(#flowStrokeLight);
  filter:drop-shadow(0 0 10px rgba(93, 224, 255, .42));
}
body[data-theme="dark"][data-page="index.html"] .flow-branch{
  stroke:rgba(99, 181, 255, .28);
}
body[data-theme="dark"][data-page="index.html"] .flow-node,
body[data-theme="dark"][data-page="index.html"] .flow-pulse,
body[data-theme="dark"][data-page="index.html"] .orbit-dot,
body[data-theme="dark"][data-page="index.html"] .flow-dot-runner circle{
  fill:#7eefff;
}
body[data-theme="dark"][data-page="index.html"] .orbit-ring{
  stroke:rgba(137, 184, 255, .14);
}
body[data-theme="dark"][data-page="index.html"] .flow-doc rect{
  fill:rgba(16, 26, 46, .9);
  stroke:rgba(104, 228, 219, .28);
  filter:drop-shadow(0 12px 22px rgba(4, 12, 24, .36));
}
body[data-theme="dark"][data-page="index.html"] .flow-doc line{
  stroke:#72e2ff;
}
@keyframes heroFlowDash{
  from{stroke-dashoffset:0}
  to{stroke-dashoffset:-228}
}
@keyframes heroNodePulse{
  0%,100%{transform:scale(1);opacity:.92}
  50%{transform:scale(1.14);opacity:1}
}
@keyframes heroPulse{
  0%,100%{transform:scale(1);opacity:.52}
  45%{transform:scale(1.45);opacity:1}
  70%{transform:scale(1.08);opacity:.82}
}
@keyframes heroOrbitSpin{
  from{transform:rotate(0deg)}
  to{transform:rotate(360deg)}
}
@keyframes heroOrbitSpinReverse{
  from{transform:rotate(360deg)}
  to{transform:rotate(0deg)}
}
@media (max-width:900px){
  body[data-page="index.html"] .hero-grid-clean{
    display:grid;
    min-height:auto;
    padding-right:0;
  }
  body[data-page="index.html"] .hero-stream-wrap.hero-stream-naked{
    position:relative;
    top:auto;
    right:auto;
    width:100%;
    min-height:460px;
    margin-top:18px;
  }
  body[data-page="index.html"] .hero-flow-canvas{height:460px}
}
@media (max-width:760px){
  body[data-page="index.html"] .hero-stream-wrap.hero-stream-naked{min-height:400px}
  body[data-page="index.html"] .hero-flow-canvas{height:400px}
}


/* === Beispiele Feinschliff === */
body[data-page="beispiele.html"] .example-card::before{display:none}
body[data-page="beispiele.html"] .example-top h2,
body[data-page="beispiele.html"] .example-top p{filter:none;text-shadow:none;opacity:1}
body[data-page="beispiele.html"] .example-meta-story{grid-template-columns:1fr;gap:0}
body[data-page="beispiele.html"] .story-block{display:grid;gap:14px;padding:4px 0}
body[data-page="beispiele.html"] .story-item{padding:16px 18px;border-radius:20px;border:1px solid rgba(67,121,197,.16);background:linear-gradient(180deg, rgba(255,255,255,.78), rgba(235,244,255,.58))}
body[data-page="beispiele.html"] .story-item p{margin:8px 0 0;line-height:1.7}
body[data-page="beispiele.html"] .story-item .mini-label{margin-bottom:0}
body[data-page="beispiele.html"] .example-meta-toggle .accordion-summary{align-items:center}
body[data-page="beispiele.html"] .example-meta-toggle .accordion-action{min-width:96px;text-align:center}
body[data-page="beispiele.html"] .example-dashboard{scroll-margin-top:120px}
body[data-page="beispiele.html"] .workflow-node{scroll-margin-top:120px}
body[data-page="beispiele.html"] .cta-panel h2{max-width:22ch}
body[data-page="beispiele.html"] .cta-panel p{max-width:64ch}
body[data-page="beispiele.html"] .back-home-solo{display:flex;justify-content:center}
body[data-page="beispiele.html"] .back-home-solo .btn{min-width:240px}
body[data-page="einsatzbereiche.html"] .back-home-solo,
body[data-page="ueber-mich.html"] .back-home-solo,
body[data-page="kontakt.html"] .back-home-solo{display:flex;justify-content:center}
body[data-page="einsatzbereiche.html"] .back-home-solo .btn,
body[data-page="ueber-mich.html"] .back-home-solo .btn,
body[data-page="kontakt.html"] .back-home-solo .btn{min-width:240px}
@media (max-width: 900px){
  body[data-page="beispiele.html"] .story-item{padding:14px 16px}
}


/* === Beispiele Erweiterungen: Filter, klare Details, CTA-Animation === */
body[data-page="beispiele.html"] .examples-tools-section{padding-top:8px;padding-bottom:10px}
body[data-page="beispiele.html"] .examples-tools{display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:14px;padding:0 2px}
body[data-page="beispiele.html"] .examples-tools-controls{display:flex;flex-wrap:wrap;align-items:center;gap:10px 12px}
body[data-page="beispiele.html"] .examples-filter-input{min-width:220px;padding:12px 16px;border-radius:16px;border:1px solid rgba(98,148,221,.24);background:rgba(255,255,255,.6);color:var(--text);outline:none;box-shadow:0 10px 24px rgba(17,33,58,.06)}
body[data-page="beispiele.html"] .examples-filter-input:focus{border-color:rgba(33,176,255,.45);box-shadow:0 0 0 4px rgba(69,190,255,.12),0 10px 24px rgba(17,33,58,.08)}
body[data-page="beispiele.html"] .examples-chip-row{display:flex;flex-wrap:wrap;gap:8px}
body[data-page="beispiele.html"] .example-chip{padding:10px 14px;border-radius:999px;border:1px solid rgba(98,148,221,.22);background:rgba(255,255,255,.44);color:var(--text);font-weight:600;font-size:.94rem;cursor:pointer;transition:transform var(--transition),background var(--transition),border-color var(--transition),box-shadow var(--transition)}
body[data-page="beispiele.html"] .example-chip:hover{transform:translateY(-1px);border-color:rgba(33,176,255,.38)}
body[data-page="beispiele.html"] .example-chip.is-active{background:linear-gradient(135deg, rgba(39,164,255,.18), rgba(64,218,255,.12));border-color:rgba(33,176,255,.4);box-shadow:0 10px 22px rgba(33,176,255,.12)}
body[data-page="beispiele.html"] .example-card.is-filter-hidden{display:none !important}
body[data-page="beispiele.html"] .example-meta-toggle,
body[data-page="beispiele.html"] .example-meta-toggle[open],
body[data-page="beispiele.html"] .example-meta,
body[data-page="beispiele.html"] .story-item{backdrop-filter:none !important;filter:none !important}
body[data-page="beispiele.html"] .example-meta-toggle::after,
body[data-page="beispiele.html"] .story-item::before{display:none !important}
body[data-page="beispiele.html"] .story-item{box-shadow:none;background:linear-gradient(180deg, rgba(255,255,255,.96), rgba(240,247,255,.9))}
body[data-theme="dark"][data-page="beispiele.html"] .story-item{background:linear-gradient(180deg, rgba(22,36,60,.9), rgba(18,31,53,.84));border-color:rgba(129,182,255,.18)}
body[data-page="beispiele.html"] .example-benefit-inline{display:inline-flex;align-items:center;gap:8px;margin-top:10px;padding:7px 12px;border-radius:999px;background:rgba(39,164,255,.12);border:1px solid rgba(33,176,255,.22);font-size:.9rem;font-weight:600;color:var(--text)}
body[data-page="beispiele.html"] .example-benefit-inline::before{content:"";width:8px;height:8px;border-radius:50%;background:linear-gradient(180deg, rgba(37,207,255,.95), rgba(49,144,255,.95));box-shadow:0 0 12px rgba(37,207,255,.45)}
body[data-page="beispiele.html"] .example-detail-compare{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px;margin-bottom:16px}
body[data-page="beispiele.html"] .compare-inline-block{padding:16px 18px;border-radius:18px;border:1px solid rgba(67,121,197,.16);background:linear-gradient(180deg, rgba(255,255,255,.72), rgba(236,244,255,.58))}
body[data-theme="dark"][data-page="beispiele.html"] .compare-inline-block{background:linear-gradient(180deg, rgba(20,34,57,.92), rgba(16,29,49,.86));border-color:rgba(129,182,255,.18)}
body[data-page="beispiele.html"] .compare-inline-block p{margin:8px 0 0;line-height:1.6}
body[data-page="beispiele.html"] .workflow-node.active{transform:translateY(-4px) scale(1.02);border-color:rgba(33,176,255,.54);box-shadow:0 0 0 1px rgba(33,176,255,.16),0 20px 44px rgba(6,18,40,.24),0 0 28px rgba(37,207,255,.12)}
body[data-page="beispiele.html"] .workflow-node.active::after{background:linear-gradient(180deg, rgba(37,207,255,.18), rgba(79,136,255,.18));border-color:rgba(37,207,255,.36)}
body[data-page="beispiele.html"] .workflow-node.active .node-status{color:var(--text);font-weight:700}
body[data-page="beispiele.html"] .workflow-node.done{box-shadow:0 14px 30px rgba(5,18,34,.12)}
body[data-page="beispiele.html"] .cta-panel-examples{display:grid;grid-template-columns:minmax(0,1.05fr) minmax(280px,.95fr);gap:22px;align-items:center;overflow:hidden}
body[data-page="beispiele.html"] .cta-panel-examples .cta-copy{position:relative;z-index:2}
body[data-page="beispiele.html"] .cta-savings-visual{position:relative;min-height:240px;border-radius:28px;overflow:hidden;background:radial-gradient(circle at 25% 30%, rgba(87,207,255,.12), transparent 30%), radial-gradient(circle at 68% 70%, rgba(100,118,255,.12), transparent 34%)}
body[data-page="beispiele.html"] .cta-savings-visual::before{content:"";position:absolute;inset:16px;border-radius:24px;border:1px solid rgba(120,164,225,.18);background:linear-gradient(180deg, rgba(255,255,255,.18), rgba(255,255,255,.02));opacity:.72}
body[data-page="beispiele.html"] .savings-track{position:absolute;left:11%;right:12%;top:42%;height:2px;background:linear-gradient(90deg, rgba(33,176,255,.22), rgba(33,176,255,.75), rgba(33,176,255,.22));box-shadow:0 0 22px rgba(37,207,255,.16)}
body[data-page="beispiele.html"] .savings-track-secondary{top:62%;left:22%;right:22%;opacity:.55}
body[data-page="beispiele.html"] .savings-signal{position:absolute;top:42%;left:12%;width:16px;height:16px;border-radius:50%;transform:translate(-50%,-50%);background:radial-gradient(circle, rgba(255,255,255,.95), rgba(37,207,255,.95) 58%, rgba(37,207,255,.2) 100%);box-shadow:0 0 0 10px rgba(37,207,255,.11),0 0 24px rgba(37,207,255,.52);animation:savingsSignalMove 4.8s ease-in-out infinite}
body[data-page="beispiele.html"] .savings-node{position:absolute;padding:10px 14px;border-radius:16px;border:1px solid rgba(120,164,225,.22);background:linear-gradient(180deg, rgba(255,255,255,.82), rgba(241,247,255,.7));font-size:.88rem;font-weight:700;color:var(--text);box-shadow:0 10px 20px rgba(12,24,44,.08)}
body[data-page="beispiele.html"] .savings-node-start{left:10%;top:24%}
body[data-page="beispiele.html"] .savings-node-end{right:9%;bottom:18%}
body[data-page="beispiele.html"] .savings-leak{position:absolute;display:flex;flex-direction:column;align-items:center;gap:10px;color:var(--muted);font-size:.8rem;font-weight:600;animation:savingsLeakFade 4.8s ease-in-out infinite}
body[data-page="beispiele.html"] .savings-leak::before{content:"";width:12px;height:12px;border-radius:50%;background:rgba(255,120,120,.88);box-shadow:0 0 0 8px rgba(255,120,120,.09),0 0 20px rgba(255,120,120,.26)}
body[data-page="beispiele.html"] .savings-leak::after{content:"";width:2px;height:36px;border-radius:999px;background:linear-gradient(180deg, rgba(255,120,120,.55), rgba(255,120,120,0))}
body[data-page="beispiele.html"] .savings-leak-1{left:30%;top:18%;animation-delay:0s}
body[data-page="beispiele.html"] .savings-leak-2{left:52%;top:52%;animation-delay:1.1s}
body[data-page="beispiele.html"] .savings-leak-3{left:72%;top:24%;animation-delay:2.2s}
body[data-page="beispiele.html"] .savings-status{position:absolute;right:10%;top:18%;display:grid;gap:4px;padding:14px 16px;border-radius:18px;border:1px solid rgba(120,164,225,.2);background:linear-gradient(180deg, rgba(255,255,255,.84), rgba(240,247,255,.74));box-shadow:0 12px 24px rgba(12,24,44,.08)}
body[data-page="beispiele.html"] .savings-status strong{font-size:1rem}
body[data-page="beispiele.html"] .savings-status span{font-size:.88rem;color:var(--muted)}
body[data-theme="dark"][data-page="beispiele.html"] .cta-savings-visual::before{background:linear-gradient(180deg, rgba(26,40,66,.36), rgba(18,27,43,.04));border-color:rgba(129,182,255,.14)}
body[data-theme="dark"][data-page="beispiele.html"] .savings-node,
body[data-theme="dark"][data-page="beispiele.html"] .savings-status{background:linear-gradient(180deg, rgba(23,37,60,.9), rgba(16,28,46,.82));border-color:rgba(129,182,255,.18);color:#f4f9ff}
body[data-theme="dark"][data-page="beispiele.html"] .savings-status span{color:rgba(225,236,255,.8)}
body[data-theme="dark"][data-page="beispiele.html"] .example-chip,
body[data-theme="dark"][data-page="beispiele.html"] .examples-filter-input{background:rgba(17,29,49,.74);border-color:rgba(129,182,255,.18);color:#eef6ff}
@keyframes savingsSignalMove{
  0%{left:12%;top:42%}
  22%{left:32%;top:42%}
  36%{left:32%;top:62%}
  55%{left:53%;top:62%}
  72%{left:72%;top:42%}
  100%{left:88%;top:42%}
}
@keyframes savingsLeakFade{
  0%,18%{opacity:1;transform:translateY(0)}
  30%,100%{opacity:.18;transform:translateY(10px)}
}
@media (max-width: 900px){
  body[data-page="beispiele.html"] .example-detail-compare{grid-template-columns:1fr}
  body[data-page="beispiele.html"] .cta-panel-examples{grid-template-columns:1fr;gap:16px}
  body[data-page="beispiele.html"] .cta-savings-visual{min-height:210px}
}
@media (max-width: 640px){
  body[data-page="beispiele.html"] .examples-tools{align-items:flex-start}
  body[data-page="beispiele.html"] .examples-tools-controls{width:100%}
  body[data-page="beispiele.html"] .examples-filter-input{width:100%;min-width:0}
  body[data-page="beispiele.html"] .example-chip{padding:9px 12px;font-size:.88rem}
  body[data-page="beispiele.html"] .cta-savings-visual{min-height:190px}
}


/* Global text clarity fix */
.card,.panel,.highlight-box,.quote-box,.search-panel,.workflow-dashboard,.faq-item,.problem-card,.service-card,.usage-card,.compare-card,.contact-card,.contact-form,.cta-panel,.metric-card,.search-result,.timeline-card,.example-meta,.step-card,.system-log,.contact-chip,.footer-card,.example-card,.overview-card,.accordion-card,.faq-more,.example-meta-toggle,.workflow-current,.workflow-node{isolation:isolate;}
.workflow-node::before,.service-card::before,.usage-card::before,.metric-card::before,.overview-card::before,.contact-card::before,.contact-form::before,.problem-card::before,.step-card::before,.quote-box::before,.cta-panel::before,.dashboard-shell::before,.example-card::before,.dashboard-shell::after,.overview-card::after,.metric-card::after,.accordion-card::after,.faq-more::after,.example-meta-toggle::after{z-index:0 !important;filter:none !important;pointer-events:none;}
.workflow-node > *, .service-card > *, .usage-card > *, .metric-card > *, .overview-card > *, .contact-card > *, .contact-form > *, .problem-card > *, .step-card > *, .quote-box > *, .cta-panel > *, .dashboard-shell > *, .example-card > *, .accordion-card > *, .faq-more > *, .example-meta-toggle > *, .workflow-current > *{position:relative;z-index:1;filter:none !important;text-shadow:none !important;}
body *{text-rendering:optimizeLegibility;-webkit-font-smoothing:antialiased;}

body[data-page="beispiele.html"] .examples-tools-section{padding-top:8px;padding-bottom:14px}
body[data-page="beispiele.html"] .examples-tools{display:flex;justify-content:flex-start;align-items:flex-start;gap:10px;padding:0 2px}
body[data-page="beispiele.html"] .examples-chip-row{display:flex;flex-wrap:wrap;gap:10px 12px;justify-content:flex-start}
body[data-page="beispiele.html"] .examples-chip-row-left{width:100%}
body[data-page="beispiele.html"] .example-chip{padding:10px 14px;border-radius:999px;border:1px solid rgba(98,148,221,.22);background:rgba(255,255,255,.44);color:var(--text);font-weight:600;font-size:.94rem;cursor:pointer;transition:transform var(--transition),background var(--transition),border-color var(--transition),box-shadow var(--transition)}
body[data-page="beispiele.html"] .example-chip:hover{transform:translateY(-1px);border-color:rgba(33,176,255,.38)}
body[data-page="beispiele.html"] .example-chip.is-active{background:linear-gradient(135deg, rgba(39,164,255,.18), rgba(64,218,255,.12));border-color:rgba(33,176,255,.4);box-shadow:0 10px 22px rgba(33,176,255,.12)}
body[data-page="beispiele.html"] .hero-inline-points,body[data-page="beispiele.html"] .examples-filter-input,body[data-page="beispiele.html"] .examples-tools .mini-label,body[data-page="beispiele.html"] .examples-tools-controls{display:none !important}

body[data-page="beispiele.html"] .example-meta-toggle,
body[data-page="beispiele.html"] .example-meta-toggle[open],
body[data-page="beispiele.html"] .example-meta-toggle *,
body[data-page="beispiele.html"] .story-item,
body[data-page="beispiele.html"] .story-item *{backdrop-filter:none !important;filter:none !important;text-shadow:none !important;}

body[data-page="beispiele.html"] .cta-savings-visual{position:relative;min-height:240px;overflow:visible;background:none;border:none;border-radius:0}
body[data-page="beispiele.html"] .cta-savings-visual::before{display:none}
body[data-page="beispiele.html"] .savings-track{position:absolute;left:7%;right:7%;top:54%;height:2px;border-radius:999px;background:linear-gradient(90deg, rgba(255,119,119,.18), rgba(33,176,255,.55), rgba(92,226,186,.72));box-shadow:0 0 24px rgba(33,176,255,.16)}
body[data-page="beispiele.html"] .savings-signal{position:absolute;left:8%;top:54%;width:16px;height:16px;border-radius:50%;transform:translate(-50%,-50%);background:radial-gradient(circle, rgba(255,255,255,.95), rgba(37,207,255,.95) 58%, rgba(37,207,255,.16) 100%);box-shadow:0 0 0 10px rgba(37,207,255,.10),0 0 26px rgba(37,207,255,.4);animation:savingsSignalMoveClean 5.8s ease-in-out infinite}
body[data-page="beispiele.html"] .savings-orbit{position:absolute;width:18px;height:18px;border-radius:50%;border:2px solid rgba(33,176,255,.55);background:rgba(255,255,255,.84);box-shadow:0 0 0 8px rgba(33,176,255,.08)}
body[data-page="beispiele.html"] .savings-orbit-1{left:34%;top:38%;animation:savingsOrbitPulse 5.8s ease-in-out infinite}
body[data-page="beispiele.html"] .savings-orbit-2{left:70%;top:69%;animation:savingsOrbitPulse 5.8s ease-in-out infinite 1.8s}
body[data-page="beispiele.html"] .savings-label{position:absolute;padding:10px 14px;border-radius:16px;border:1px solid rgba(120,164,225,.22);background:linear-gradient(180deg, rgba(255,255,255,.84), rgba(240,247,255,.74));font-size:.88rem;font-weight:700;color:var(--text);box-shadow:0 12px 24px rgba(12,24,44,.08);white-space:nowrap}
body[data-page="beispiele.html"] .savings-label-loss{left:11%;top:20%;color:#b24c5f;border-color:rgba(218,111,134,.18)}
body[data-page="beispiele.html"] .savings-label-cost{left:48%;top:23%}
body[data-page="beispiele.html"] .savings-label-time{right:9%;bottom:16%}
body[data-page="beispiele.html"] .savings-status{position:absolute;left:18%;bottom:15%;display:grid;gap:4px;padding:14px 16px;border-radius:18px;border:1px solid rgba(120,164,225,.2);background:linear-gradient(180deg, rgba(255,255,255,.84), rgba(240,247,255,.74));box-shadow:0 12px 24px rgba(12,24,44,.08)}
body[data-page="beispiele.html"] .savings-status strong{font-size:1rem}
body[data-page="beispiele.html"] .savings-status span{font-size:.88rem;color:var(--muted)}
body[data-theme="dark"][data-page="beispiele.html"] .savings-label,
body[data-theme="dark"][data-page="beispiele.html"] .savings-status{background:linear-gradient(180deg, rgba(23,37,60,.9), rgba(16,28,46,.82));border-color:rgba(129,182,255,.18);color:#f4f9ff}
body[data-theme="dark"][data-page="beispiele.html"] .savings-status span{color:rgba(225,236,255,.8)}
body[data-theme="dark"][data-page="beispiele.html"] .savings-label-loss{color:#ffb8c0}
@keyframes savingsSignalMoveClean{0%{left:8%;}55%{left:58%;}100%{left:92%;}}
@keyframes savingsOrbitPulse{0%,100%{transform:scale(1);opacity:.75}50%{transform:scale(1.14);opacity:1}}
@media (max-width: 900px){
  body[data-page="beispiele.html"] .cta-savings-visual{min-height:280px}
  body[data-page="beispiele.html"] .savings-track{left:8%;right:8%;top:58%}
  body[data-page="beispiele.html"] .savings-label-loss{left:8%;top:16%}
  body[data-page="beispiele.html"] .savings-label-cost{left:auto;right:8%;top:18%}
  body[data-page="beispiele.html"] .savings-label-time{right:8%;bottom:16%}
  body[data-page="beispiele.html"] .savings-status{left:8%;bottom:15%}
  body[data-page="beispiele.html"] .savings-orbit-1{left:30%;top:43%}
  body[data-page="beispiele.html"] .savings-orbit-2{left:73%;top:68%}
}


/* === Global text sharpness fix === */
.card,.workflow-node,.problem-card,.service-card,.usage-card,.contact-card,.contact-form,.example-card,.timeline-card,.step-card,.dashboard-shell,.overview-card,.workflow-current,.cta-panel,.quote-box,.accordion-card,.faq-more,.example-meta-toggle{
  transform-style: flat !important;
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
}
.card *, .workflow-node *, .problem-card *, .service-card *, .usage-card *, .contact-card *, .contact-form *, .example-card *, .timeline-card *, .step-card *, .dashboard-shell *, .overview-card *, .workflow-current *, .cta-panel *, .quote-box *, .accordion-card *, .faq-more *, .example-meta-toggle *{
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
}
.tilt-ready{will-change:auto !important;}

/* === Beispiele CTA visual clarity === */
body[data-page="beispiele.html"] .cta-savings-visual{
  min-height:264px;
  padding-top:8px;
}
body[data-page="beispiele.html"] .cta-savings-visual > *{z-index:1}
body[data-page="beispiele.html"] .savings-track{left:7%;right:7%;top:56%;}
body[data-page="beispiele.html"] .savings-signal{top:56%;}
body[data-page="beispiele.html"] .savings-label{z-index:3;}
body[data-page="beispiele.html"] .savings-label-loss{left:5%;top:10%;}
body[data-page="beispiele.html"] .savings-label-cost{left:56%;top:12%;}
body[data-page="beispiele.html"] .savings-label-time{right:6%;bottom:6%;}
body[data-page="beispiele.html"] .savings-status{
  z-index:2;
  left:14%;
  bottom:24%;
  padding:12px 14px;
  max-width:220px;
}
body[data-page="beispiele.html"] .savings-orbit-1{left:30%;top:40%;}
body[data-page="beispiele.html"] .savings-orbit-2{left:74%;top:66%;}
@media (max-width: 900px){
  body[data-page="beispiele.html"] .cta-savings-visual{min-height:300px;padding-top:10px;}
  body[data-page="beispiele.html"] .savings-track{top:59%;left:8%;right:8%;}
  body[data-page="beispiele.html"] .savings-signal{top:59%;}
  body[data-page="beispiele.html"] .savings-label-loss{left:8%;top:12%;}
  body[data-page="beispiele.html"] .savings-label-cost{left:auto;right:8%;top:12%;}
  body[data-page="beispiele.html"] .savings-status{left:12%;bottom:28%;max-width:205px;}
  body[data-page="beispiele.html"] .savings-label-time{right:8%;bottom:8%;}
}
@media (max-width: 640px){
  body[data-page="beispiele.html"] .cta-savings-visual{min-height:320px;}
  body[data-page="beispiele.html"] .savings-label{font-size:.84rem;padding:9px 12px;}
  body[data-page="beispiele.html"] .savings-status{left:10%;bottom:30%;max-width:180px;padding:11px 13px;}
}


/* --- customer-guidance polish --- */
.page-shell::after{
  content:"";
  position:fixed;
  inset:104px 18px 24px;
  pointer-events:none;
  z-index:-1;
  border-left:1px solid rgba(255,255,255,.08);
  border-right:1px solid rgba(255,255,255,.08);
  mask-image:linear-gradient(180deg, transparent 0%, rgba(0,0,0,.75) 8%, rgba(0,0,0,.75) 92%, transparent 100%);
  opacity:.52;
}
body[data-theme="light"] .page-shell::after{
  border-left-color:rgba(34,84,148,.10);
  border-right-color:rgba(34,84,148,.10);
  opacity:.48;
}
main > section + section::before{
  content:"";
  position:absolute;
  left:50%;
  top:0;
  width:min(1120px, calc(100% - 40px));
  height:1px;
  transform:translateX(-50%);
  background:linear-gradient(90deg, transparent, rgba(201,220,255,.24), transparent);
  pointer-events:none;
}
body[data-theme="light"] main > section + section::before{
  background:linear-gradient(90deg, transparent, rgba(58,110,179,.14), transparent);
}
.hero-copy .lead,
.page-hero .lead,
.section-head p,
.callout p,
.cta-panel p,
.contact-intro p{
  max-width:62ch;
}
.section-head.section-head-compact,
.section-head.compact-center{margin-bottom:22px;}
.example-quickline{
  margin:2px 0 0;
  font-size:.93rem;
  color:var(--muted-2);
  letter-spacing:.01em;
}
body[data-theme="light"] .example-quickline{color:#4b6b94;}
.quote-box,
.cta-panel{
  background:linear-gradient(180deg, rgba(255,255,255,.18), rgba(255,255,255,.10));
}
body[data-theme="light"] .quote-box,
body[data-theme="light"] .cta-panel{
  background:linear-gradient(180deg, rgba(255,255,255,.97), rgba(238,246,255,.92));
}
.footer{
  background:rgba(18,28,46,.20);
}
body[data-theme="light"] .footer{
  background:rgba(243,248,255,.54);
}
@media (max-width: 980px){
  .page-shell::after{display:none;}
  main > section + section::before{width:calc(100% - 28px);}
}


/* === v003 premium typography & readability polish === */
:root{--reading-width:64ch;}
body{font-kerning:normal;text-rendering:optimizeLegibility;}
.section{padding:88px 0;}
.section-tight{padding:64px 0;}
.section-head{margin-bottom:24px;}
.lead,.section-head p,.callout p,.cta-panel p,.contact-intro p,.accordion-preview,.accordion-content p,.faq-answer-inner p,.summary-list div,.note,.footer-copy{max-width:var(--reading-width);}

/* text should stay crisp and readable */
.card,.panel,.highlight-box,.quote-box,.search-panel,.workflow-dashboard,.faq-item,.problem-card,.service-card,.usage-card,.compare-card,.contact-card,.contact-form,.cta-panel,.metric-card,.search-result,.timeline-card,.example-meta,.step-card,.system-log,.contact-chip,.footer-card,.accordion-card,.faq-more,.example-meta-toggle,.workflow-node,.overview-card,.workflow-current{
  -webkit-backdrop-filter:none !important;
  backdrop-filter:none !important;
  backface-visibility:hidden;
  transform-style:flat !important;
}
body[data-theme="light"] .card,
body[data-theme="light"] .panel,
body[data-theme="light"] .highlight-box,
body[data-theme="light"] .quote-box,
body[data-theme="light"] .search-panel,
body[data-theme="light"] .workflow-dashboard,
body[data-theme="light"] .faq-item,
body[data-theme="light"] .problem-card,
body[data-theme="light"] .service-card,
body[data-theme="light"] .usage-card,
body[data-theme="light"] .compare-card,
body[data-theme="light"] .contact-card,
body[data-theme="light"] .contact-form,
body[data-theme="light"] .cta-panel,
body[data-theme="light"] .metric-card,
body[data-theme="light"] .search-result,
body[data-theme="light"] .timeline-card,
body[data-theme="light"] .example-meta,
body[data-theme="light"] .step-card,
body[data-theme="light"] .system-log,
body[data-theme="light"] .contact-chip,
body[data-theme="light"] .footer-card,
body[data-theme="light"] .accordion-card,
body[data-theme="light"] .faq-more,
body[data-theme="light"] .example-meta-toggle,
body[data-theme="light"] .workflow-node,
body[data-theme="light"] .overview-card,
body[data-theme="light"] .workflow-current{
  background:linear-gradient(180deg, rgba(255,255,255,.98), rgba(242,248,255,.95)) !important;
  border-color:rgba(138,171,216,.26) !important;
}
body[data-theme="dark"] .card,
body[data-theme="dark"] .panel,
body[data-theme="dark"] .highlight-box,
body[data-theme="dark"] .quote-box,
body[data-theme="dark"] .search-panel,
body[data-theme="dark"] .workflow-dashboard,
body[data-theme="dark"] .faq-item,
body[data-theme="dark"] .problem-card,
body[data-theme="dark"] .service-card,
body[data-theme="dark"] .usage-card,
body[data-theme="dark"] .compare-card,
body[data-theme="dark"] .contact-card,
body[data-theme="dark"] .contact-form,
body[data-theme="dark"] .cta-panel,
body[data-theme="dark"] .metric-card,
body[data-theme="dark"] .search-result,
body[data-theme="dark"] .timeline-card,
body[data-theme="dark"] .example-meta,
body[data-theme="dark"] .step-card,
body[data-theme="dark"] .system-log,
body[data-theme="dark"] .contact-chip,
body[data-theme="dark"] .footer-card,
body[data-theme="dark"] .accordion-card,
body[data-theme="dark"] .faq-more,
body[data-theme="dark"] .example-meta-toggle,
body[data-theme="dark"] .workflow-node,
body[data-theme="dark"] .overview-card,
body[data-theme="dark"] .workflow-current{
  background:linear-gradient(180deg, rgba(20,31,51,.92), rgba(16,26,44,.88)) !important;
  border-color:rgba(154,198,255,.14) !important;
}
.card *, .panel *, .highlight-box *, .quote-box *, .search-panel *, .workflow-dashboard *, .faq-item *, .problem-card *, .service-card *, .usage-card *, .compare-card *, .contact-card *, .contact-form *, .cta-panel *, .metric-card *, .search-result *, .timeline-card *, .example-meta *, .step-card *, .system-log *, .contact-chip *, .footer-card *, .accordion-card *, .faq-more *, .example-meta-toggle *, .workflow-node *, .overview-card *, .workflow-current *{
  filter:none !important;
  text-shadow:none !important;
  backface-visibility:hidden;
}

/* prevent awkward word breaks in headings and buttons */
h1,h2,h3,h4,.brand-name,.brand-sub,.nav-links a,.mobile-links a,.btn,.accordion-action,.faq-question,.accordion-text h3,.section-head h2,.page-hero h1,.hero h1,.theme-toggle,.contact-response .note{
  overflow-wrap:normal !important;
  word-break:normal !important;
  hyphens:none !important;
  white-space:normal;
}
p,li,label,summary,small,span,strong,a,button,input,select,textarea{
  overflow-wrap:break-word;
  word-break:normal;
}
.hero h1,.page-hero h1,.section-head h2,.callout h2,.cta-panel h2{max-width:none !important;}
.brand-sub,.nav-links a,.mobile-links a,.btn,.theme-toggle{letter-spacing:normal;}

/* subtler interaction, no text blur on hover */
.tilt-ready{will-change:auto !important;transform:none !important;}
.card:hover,.panel:hover,.highlight-box:hover,.quote-box:hover,.search-panel:hover,.workflow-dashboard:hover,.faq-item:hover,.problem-card:hover,.service-card:hover,.usage-card:hover,.compare-card:hover,.contact-card:hover,.contact-form:hover,.cta-panel:hover,.metric-card:hover,.search-result:hover,.timeline-card:hover,.example-meta:hover,.step-card:hover,.system-log:hover,.contact-chip:hover,.footer-card:hover,.accordion-card:hover,.faq-more:hover,.example-meta-toggle:hover,.workflow-node:hover,.overview-card:hover,.workflow-current:hover{
  transform:translateY(-1px);
}
.cursor-glow{mix-blend-mode:normal;opacity:.38 !important;filter:blur(10px);}

/* cleaner footer and frame */
.footer-copy{max-width:42ch;line-height:1.65;}
.footer-grid{align-items:start;}
.page-shell::after{inset:102px 20px 20px;opacity:.42;}

@media (max-width: 1024px){
  .section{padding:74px 0;}
  .section-tight{padding:54px 0;}
}
@media (max-width: 640px){
  .section{padding:64px 0;}
  .section-tight{padding:46px 0;}
  .btn,.theme-toggle,.nav-links a,.mobile-links a{overflow-wrap:normal !important;word-break:normal !important;}
}


/* Premium polish v004 */
h1,h2,h3,.faq-question,.btn,.accordion-summary h3{text-wrap:balance}
p,li,.accordion-preview,.note,.hero-summary-line{text-wrap:pretty}
.section-head p,.page-hero .lead,.cta-panel p,.contact-intro p,.accordion-preview,.workflow-current p{max-width:68ch}
.page-hero .lead{max-width:60ch}
.page-shell::after{
  content:"";
  position:fixed;
  inset:112px 18px 18px;
  pointer-events:none;
  z-index:-1;
  background:
    linear-gradient(180deg, rgba(118,198,255,.22), rgba(118,198,255,0)) left top/1px 100% no-repeat,
    linear-gradient(180deg, rgba(118,198,255,.22), rgba(118,198,255,0)) right top/1px 100% no-repeat;
  opacity:.55;
}
body[data-theme="dark"] .page-shell::after{
  background:
    linear-gradient(180deg, rgba(167,220,255,.18), rgba(167,220,255,0)) left top/1px 100% no-repeat,
    linear-gradient(180deg, rgba(167,220,255,.18), rgba(167,220,255,0)) right top/1px 100% no-repeat;
  opacity:.42;
}
.workflow-benefit-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px;margin-top:22px}
.workflow-benefit-card{padding:22px 22px 20px;display:flex;flex-direction:column;gap:10px;min-height:100%}
.workflow-benefit-card h3{margin:0;font-size:1.1rem}
.workflow-benefit-card p{margin:0;color:var(--muted)}
.workflow-benefit-card .mini-label{margin-bottom:2px}
body[data-page="beispiele.html"] .example-detail-compare p,
body[data-page="beispiele.html"] .story-item p,
body[data-page="beispiele.html"] .example-benefit-inline,
body[data-page="beispiele.html"] .accordion-preview,
body[data-page="beispiele.html"] .example-top h2{
  filter:none !important;
  text-shadow:none !important;
  opacity:1 !important;
  transform:none !important;
  backdrop-filter:none !important;
}
body[data-page="beispiele.html"] .examples-cta{overflow:hidden;isolation:isolate}
body[data-page="beispiele.html"] .examples-cta .cta-copy{position:relative;z-index:1}
body[data-page="beispiele.html"] .examples-cta-visual{position:relative;min-height:190px;display:flex;align-items:center;justify-content:center;z-index:0}
body[data-page="beispiele.html"] .savings-visual-clean{position:relative;width:min(100%,320px);height:188px}
body[data-page="beispiele.html"] .savings-line-main,
body[data-page="beispiele.html"] .savings-line-branch{position:absolute;border-radius:999px;background:linear-gradient(180deg, rgba(125,224,255,.9), rgba(81,151,255,.86));box-shadow:0 0 18px rgba(120,212,255,.28)}
body[data-page="beispiele.html"] .savings-line-main{left:156px;top:18px;width:4px;height:152px}
body[data-page="beispiele.html"] .savings-line-branch.branch-a{left:86px;top:54px;width:74px;height:4px}
body[data-page="beispiele.html"] .savings-line-branch.branch-b{left:156px;top:112px;width:92px;height:4px}
body[data-page="beispiele.html"] .savings-line-branch.branch-c{left:248px;top:112px;width:4px;height:40px}
body[data-page="beispiele.html"] .savings-node{position:absolute;width:14px;height:14px;border-radius:50%;background:#9df3ff;border:2px solid rgba(255,255,255,.86);box-shadow:0 0 0 6px rgba(120,212,255,.12),0 0 18px rgba(118,214,255,.45)}
body[data-page="beispiele.html"] .savings-node.n1{left:149px;top:18px}
body[data-page="beispiele.html"] .savings-node.n2{left:149px;top:50px}
body[data-page="beispiele.html"] .savings-node.n3{left:149px;top:108px}
body[data-page="beispiele.html"] .savings-node.n4{left:243px;top:105px}
body[data-page="beispiele.html"] .savings-node.n5{left:243px;top:145px}
body[data-page="beispiele.html"] .savings-spark{position:absolute;width:10px;height:10px;border-radius:50%;background:#fff;box-shadow:0 0 0 6px rgba(255,255,255,.16),0 0 16px rgba(117,211,255,.55);animation:savingsTrackMove 5.8s linear infinite}
@keyframes savingsTrackMove{0%{transform:translate(156px,18px);opacity:0}8%{opacity:1}28%{transform:translate(156px,54px)}48%{transform:translate(88px,54px)}68%{transform:translate(156px,54px)}85%{transform:translate(156px,112px)}100%{transform:translate(248px,152px);opacity:.95}}
body[data-page="beispiele.html"] .savings-badge{position:absolute;padding:7px 10px;border-radius:999px;border:1px solid rgba(131,175,236,.2);background:rgba(255,255,255,.76);font-size:.78rem;font-weight:700;color:var(--heading);box-shadow:0 12px 26px rgba(14,33,58,.08)}
body[data-page="beispiele.html"] .savings-badge.loss{left:12px;top:42px}
body[data-page="beispiele.html"] .savings-badge.time{right:8px;top:96px}
body[data-page="beispiele.html"] .savings-badge.money{right:4px;bottom:16px}
body[data-page="beispiele.html"] .savings-footer{position:absolute;left:62px;bottom:6px;padding:10px 14px;border-radius:16px;border:1px solid rgba(131,175,236,.18);background:rgba(255,255,255,.72);box-shadow:0 16px 28px rgba(14,33,58,.08)}
body[data-page="beispiele.html"] .savings-footer strong{display:block;font-size:.9rem;color:var(--heading)}
body[data-page="beispiele.html"] .savings-footer span{display:block;font-size:.78rem;color:var(--muted)}
@media (max-width:1180px){
  .page-shell::after{display:none}
  .workflow-benefit-grid{grid-template-columns:1fr}
}
@media (max-width:720px){
  body[data-page="beispiele.html"] .examples-cta{grid-template-columns:1fr}
  body[data-page="beispiele.html"] .examples-cta-visual{min-height:162px}
  body[data-page="beispiele.html"] .savings-visual-clean{height:164px;width:min(100%,280px)}
  body[data-page="beispiele.html"] .savings-line-main{left:134px;height:126px}
  body[data-page="beispiele.html"] .savings-line-branch.branch-a{left:72px;top:44px;width:64px}
  body[data-page="beispiele.html"] .savings-line-branch.branch-b{left:134px;top:92px;width:84px}
  body[data-page="beispiele.html"] .savings-line-branch.branch-c{left:218px;top:92px;height:34px}
  body[data-page="beispiele.html"] .savings-node.n1{left:127px;top:18px}
  body[data-page="beispiele.html"] .savings-node.n2{left:127px;top:40px}
  body[data-page="beispiele.html"] .savings-node.n3{left:127px;top:88px}
  body[data-page="beispiele.html"] .savings-node.n4{left:213px;top:85px}
  body[data-page="beispiele.html"] .savings-node.n5{left:213px;top:119px}
  body[data-page="beispiele.html"] .savings-badge{font-size:.72rem}
  body[data-page="beispiele.html"] .savings-footer{left:42px;bottom:2px}
}

/* === v005 customer guidance + legal polish === */
.hero-trustline,
.trust-triplet{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:16px;
}
.hero-trustline span,
.trust-triplet span{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:9px 14px;
  border-radius:999px;
  border:1px solid rgba(180,203,235,.28);
  background:linear-gradient(180deg, rgba(255,255,255,.14), rgba(255,255,255,.06));
  color:var(--muted);
  font-size:.92rem;
  font-weight:600;
}
.hero-trustline span::before,
.trust-triplet span::before{
  content:"";
  width:7px;
  height:7px;
  border-radius:50%;
  background:linear-gradient(135deg,var(--primary),var(--primary-2));
  box-shadow:0 0 12px rgba(143,240,255,.45);
}
body[data-theme="light"] .hero-trustline span,
body[data-theme="light"] .trust-triplet span{
  background:linear-gradient(180deg, rgba(255,255,255,.98), rgba(239,246,255,.92));
  border-color:rgba(78,124,187,.16);
  color:#476589;
}
.card-result-line{
  margin:6px 0 0;
  font-size:.9rem;
  line-height:1.5;
  color:var(--muted-2);
}
body[data-theme="light"] .card-result-line{color:#4c6f97}
.example-benefit-glance{
  margin:10px 0 0;
  font-size:.92rem;
  line-height:1.55;
  color:var(--muted-2);
}
body[data-theme="light"] .example-benefit-glance{color:#4b6c94}
.contact-form-note{
  margin-top:10px !important;
  font-size:.95rem;
  color:var(--muted-2);
}
.legal-note{
  margin:0 0 18px;
  padding:14px 16px;
  border-radius:18px;
  border:1px solid rgba(187,203,231,.26);
  background:linear-gradient(180deg, rgba(255,255,255,.18), rgba(255,255,255,.08));
  line-height:1.6;
}
body[data-theme="light"] .legal-note{
  background:linear-gradient(180deg, rgba(255,255,255,.98), rgba(239,246,255,.92));
  border-color:rgba(64,114,181,.18);
  color:#466789;
}
.footer-copy{margin-bottom:0;max-width:36ch}
/* keep decorative layers behind text at all times */
.card,.panel,.highlight-box,.quote-box,.search-panel,.workflow-dashboard,.faq-item,.problem-card,.service-card,.usage-card,.compare-card,.contact-card,.contact-form,.cta-panel,.metric-card,.search-result,.timeline-card,.example-meta,.step-card,.system-log,.contact-chip,.footer-card,.accordion-card,.faq-more,.example-meta-toggle,.workflow-node,.overview-card,.workflow-current{
  position:relative;
}
.card > *, .panel > *, .highlight-box > *, .quote-box > *, .search-panel > *, .workflow-dashboard > *, .faq-item > *, .problem-card > *, .service-card > *, .usage-card > *, .compare-card > *, .contact-card > *, .contact-form > *, .cta-panel > *, .metric-card > *, .search-result > *, .timeline-card > *, .example-meta > *, .step-card > *, .system-log > *, .contact-chip > *, .footer-card > *, .accordion-card > *, .faq-more > *, .example-meta-toggle > *, .workflow-node > *, .overview-card > *, .workflow-current > *{
  position:relative;
  z-index:1;
}
.cursor-glow{z-index:-5 !important;pointer-events:none}
/* calmer section rhythm */
.guided-section .section-head,
#leistungen-ueberblick .section-head,
#einsatz-ueberblick .section-head,
#arbeitsweise .section-head{
  max-width:820px;
}
.section-head.compact-center,
.forms-head,
body[data-page="einsatzbereiche.html"] .compact-center,
body[data-page="ueber-mich.html"] .compact-center{
  text-align:center;
  margin-left:auto;
  margin-right:auto;
}
.section-head.compact-center::after,
.forms-head::after{margin-left:auto;margin-right:auto}
.callout .quote-box p,
.callout .quote-box .btn-row{max-width:none}
body[data-theme="dark"] .quote-box,
body[data-theme="dark"] .cta-panel,
body[data-theme="dark"] .contact-form,
body[data-theme="dark"] .accordion-card,
body[data-theme="dark"] .faq-more,
body[data-theme="dark"] .example-meta-toggle,
body[data-theme="dark"] .problem-card,
body[data-theme="dark"] .compare-card,
body[data-theme="dark"] .overview-card,
body[data-theme="dark"] .metric-card{
  background:linear-gradient(180deg, rgba(20,31,51,.96), rgba(16,26,44,.92)) !important;
}
/* reduce equal-weight feeling */
.problem-grid .problem-card,
.workflow-benefit-grid .workflow-benefit-card,
.solution-grid .solution-card,
.einsatz-grid .einsatz-card,
.about-grid .about-card,
.contact-help-grid .contact-help-card{
  border-radius:26px;
}
@media (max-width: 900px){
  .hero-trustline,
  .trust-triplet{gap:8px}
  .hero-trustline span,
  .trust-triplet span{font-size:.88rem;padding:8px 12px}
}


/* v006 examples + faq improvements */
body[data-page="beispiele.html"] .story-item .example-point-list{margin:10px 0 0 1rem;padding:0;display:grid;gap:8px}
body[data-page="beispiele.html"] .story-item .example-point-list li{line-height:1.62;color:var(--text)}
body[data-page="beispiele.html"] .examples-tools{justify-content:flex-start !important}
body[data-page="beispiele.html"] .examples-chip-row-left{justify-content:flex-start;width:100%}
body[data-page="beispiele.html"] .cta-savings-visual{padding-top:14px;isolation:isolate}
body[data-page="beispiele.html"] .savings-label{z-index:1}
body[data-page="beispiele.html"] .savings-status{z-index:2}
body[data-page="beispiele.html"] .savings-track,body[data-page="beispiele.html"] .savings-signal,body[data-page="beispiele.html"] .savings-orbit{z-index:0}
.faq-grid-primary{margin-bottom:18px}
.faq-more-compact{display:flex;justify-content:center;margin-top:6px}
.faq-more-button{min-width:220px}
.faq-explorer[hidden]{display:none !important}
.faq-explorer{display:grid;gap:16px;margin-top:18px}
.faq-explorer-intro{margin:0 auto;text-align:center;max-width:62ch}
.faq-topic-bar{display:flex;flex-wrap:wrap;justify-content:center;gap:10px}
.faq-topic-chip{padding:10px 14px;border-radius:999px;border:1px solid rgba(98,148,221,.22);background:rgba(255,255,255,.44);color:var(--text);font-weight:600;cursor:pointer;transition:transform var(--transition),background var(--transition),border-color var(--transition),box-shadow var(--transition)}
.faq-topic-chip:hover{transform:translateY(-1px);border-color:rgba(33,176,255,.38)}
.faq-topic-chip.is-active{background:linear-gradient(135deg, rgba(39,164,255,.18), rgba(64,218,255,.12));border-color:rgba(33,176,255,.4);box-shadow:0 10px 22px rgba(33,176,255,.12)}
.faq-search{display:flex;justify-content:center}
.faq-search-input{max-width:560px;width:100%;border-radius:18px}
.faq-topic-grid{grid-template-columns:repeat(2,minmax(0,1fr));align-items:start}
.faq-topic-item.is-hidden{display:none !important}
body[data-theme="dark"] .faq-topic-chip{background:rgba(255,255,255,.08);border-color:rgba(148,185,255,.16);color:var(--text)}
body[data-theme="dark"] .faq-topic-chip.is-active{background:linear-gradient(135deg, rgba(39,164,255,.2), rgba(64,218,255,.1));border-color:rgba(64,218,255,.32)}
@media (max-width: 900px){
  .faq-topic-grid{grid-template-columns:1fr}
  .faq-topic-bar{justify-content:flex-start}
  .faq-search{justify-content:stretch}
}


/* v006a polish: FAQ explorer, text sharpness, theme persistence support */
.workflow-node::before,.service-card::before,.usage-card::before,.metric-card::before,.overview-card::before,.workflow-current::before,.contact-card::before,.contact-form::before,.problem-card::before,.step-card::before,.quote-box::before,.cta-panel::before{z-index:0;opacity:.36;filter:none !important;backdrop-filter:none !important}
.workflow-node > *,.service-card > *,.usage-card > *,.metric-card > *,.overview-card > *,.workflow-current > *,.contact-card > *,.contact-form > *,.problem-card > *,.step-card > *,.quote-box > *,.cta-panel > *,.faq-item > *,.example-card > *,.timeline-card > *,.search-result > *{position:relative;z-index:1;text-shadow:none !important;filter:none !important}
.faq-item,.service-card,.usage-card,.metric-card,.overview-card,.contact-card,.contact-form,.problem-card,.step-card,.quote-box,.cta-panel,.workflow-node,.workflow-current,.example-card,.timeline-card{transform:translateZ(0)}
.tilt-ready{will-change:auto}
.faq-explorer{display:grid;gap:18px;margin-top:22px;padding:24px 24px 26px;border-radius:28px;background:linear-gradient(180deg, rgba(255,255,255,.20), rgba(255,255,255,.10));border:1px solid rgba(220,234,255,.18);box-shadow:var(--shadow)}
.faq-explorer-head{display:flex;justify-content:center;text-align:center}
.faq-explorer-intro{margin:0 auto;max-width:58ch;font-size:1rem;line-height:1.7}
.faq-topic-bar{display:flex;flex-wrap:wrap;justify-content:center;gap:10px;padding:6px;max-width:1100px;margin:0 auto;border-radius:22px;background:linear-gradient(180deg, rgba(255,255,255,.24), rgba(255,255,255,.12));border:1px solid rgba(220,234,255,.18);box-shadow:inset 0 1px 0 rgba(255,255,255,.15)}
.faq-topic-chip{padding:11px 16px;min-height:44px;border-radius:999px;border:1px solid rgba(98,148,221,.18);background:linear-gradient(180deg, rgba(255,255,255,.78), rgba(235,244,255,.68));color:var(--heading);font-weight:700;cursor:pointer;transition:transform var(--transition),background var(--transition),border-color var(--transition),box-shadow var(--transition)}
.faq-topic-chip:hover{transform:translateY(-1px);border-color:rgba(33,176,255,.34);box-shadow:0 10px 22px rgba(33,176,255,.10)}
.faq-topic-chip.is-active{background:linear-gradient(135deg, rgba(39,164,255,.20), rgba(64,218,255,.12));border-color:rgba(33,176,255,.42);box-shadow:0 12px 26px rgba(33,176,255,.14)}
.faq-search{display:flex;justify-content:center;max-width:620px;width:100%;margin:0 auto}
.faq-search-input{max-width:none;width:100%;min-height:54px;border-radius:18px;padding-inline:18px;background:linear-gradient(180deg, rgba(255,255,255,.88), rgba(241,247,255,.82));border:1px solid rgba(67,121,197,.18);box-shadow:0 14px 28px rgba(40,84,145,.08)}
.faq-topic-grid{grid-template-columns:repeat(2,minmax(0,1fr));align-items:start}
body[data-theme="light"] .faq-explorer{background:linear-gradient(180deg, rgba(255,255,255,.34), rgba(239,246,255,.26));border-color:rgba(67,121,197,.16);box-shadow:0 18px 42px rgba(40,84,145,.10)}
body[data-theme="light"] .faq-topic-bar{background:linear-gradient(180deg, rgba(255,255,255,.72), rgba(240,247,255,.62));border-color:rgba(67,121,197,.16)}
body[data-theme="light"] .faq-topic-chip{background:linear-gradient(180deg, rgba(255,255,255,.96), rgba(236,245,255,.86));border-color:rgba(67,121,197,.16)}
body[data-theme="light"] .faq-topic-chip.is-active{background:linear-gradient(135deg, rgba(39,164,255,.18), rgba(64,218,255,.10));border-color:rgba(33,176,255,.38)}
body[data-theme="dark"] .faq-explorer{background:linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));border-color:rgba(148,185,255,.14);box-shadow:0 24px 48px rgba(3,10,24,.24)}
body[data-theme="dark"] .faq-topic-bar{background:linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));border-color:rgba(148,185,255,.14)}
body[data-theme="dark"] .faq-topic-chip{background:linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.05));border-color:rgba(148,185,255,.16);color:var(--text)}
body[data-theme="dark"] .faq-topic-chip.is-active{background:linear-gradient(135deg, rgba(39,164,255,.24), rgba(64,218,255,.12));border-color:rgba(64,218,255,.34)}
body[data-theme="dark"] .faq-search-input{background:linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.06));border-color:rgba(148,185,255,.16);color:var(--text)}
body[data-theme="dark"] .faq-search-input::placeholder{color:#9eb5d8}
@media (max-width: 900px){
  .faq-explorer{padding:20px 18px 22px}
  .faq-topic-bar{justify-content:flex-start}
}
@media (max-width: 760px){
  .faq-search{max-width:none}
  .faq-topic-grid{grid-template-columns:1fr}
}


/* v006b fixes */
.nav-links a,.mobile-links a{display:inline-flex;align-items:center;justify-content:center;white-space:nowrap !important;min-width:max-content;flex:0 0 auto;word-break:keep-all;}
.nav-links a.active{white-space:nowrap !important;min-width:max-content;}
.nav-links a[href="ueber-mich.html"]{white-space:nowrap !important;min-width:max-content;}

/* Schnellcheck */
.section-head-centered{text-align:center;align-items:center}
.section-head-centered p{max-width:68ch;margin-inline:auto}
.btn-row-center{justify-content:center}
.workflow-check-intro{max-width:860px;margin:0 auto 18px;padding:26px 28px;border-radius:30px;background:linear-gradient(180deg, rgba(255,255,255,.22), rgba(255,255,255,.12));border:1px solid rgba(164,205,255,.24);box-shadow:var(--shadow)}
.workflow-check-intro h3{margin:10px 0 10px}
.workflow-check-intro p{margin:0;color:var(--muted);max-width:62ch}
.workflow-check-shell{display:grid;gap:20px;margin-top:16px;padding:24px;border-radius:34px;background:linear-gradient(180deg, rgba(255,255,255,.18), rgba(255,255,255,.10));border:1px solid rgba(164,205,255,.22);box-shadow:var(--shadow)}
.workflow-check-form{display:grid;gap:20px}
.workflow-check-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px}
.workflow-question-card{margin:0;padding:20px 20px 18px;border-radius:28px;border:1px solid rgba(126,164,220,.20);background:linear-gradient(180deg, rgba(255,255,255,.48), rgba(255,255,255,.24));min-width:0}
.workflow-question-card legend{padding:0 2px;font-size:1.02rem;font-weight:700;color:var(--heading);margin-bottom:14px}
.workflow-option-grid{display:grid;gap:10px}
.workflow-option{display:flex;align-items:flex-start;gap:10px;padding:11px 12px;border-radius:18px;border:1px solid rgba(126,164,220,.18);background:rgba(255,255,255,.55);cursor:pointer;transition:transform var(--transition), border-color var(--transition), background var(--transition), box-shadow var(--transition)}
.workflow-option:hover{transform:translateY(-1px);border-color:rgba(68,168,255,.32);box-shadow:0 10px 20px rgba(47,98,170,.08)}
.workflow-option input{margin-top:4px;accent-color:#2c8bff}
.workflow-option span{display:block;color:var(--text);font-size:.98rem;line-height:1.55}
.workflow-option:has(input:checked){background:linear-gradient(135deg, rgba(73,175,255,.18), rgba(89,229,255,.12));border-color:rgba(57,166,255,.38)}
.workflow-check-actions{display:flex;justify-content:space-between;align-items:center;gap:18px;flex-wrap:wrap}
.workflow-check-note{margin:0;color:var(--muted);max-width:54ch}
.workflow-check-result{display:grid;gap:14px;padding:22px 24px;border-radius:28px;background:linear-gradient(180deg, rgba(255,255,255,.56), rgba(233,245,255,.32));border:1px solid rgba(126,164,220,.18)}
.workflow-check-result h3{margin:0;font-size:1.6rem}
.workflow-check-result p{margin:0;color:var(--muted)}
.workflow-check-bullets{margin:0;padding-left:20px;display:grid;gap:8px;color:var(--text)}
.contact-prefill-note{margin-bottom:18px;padding:16px 18px;border-radius:22px;border:1px solid rgba(126,164,220,.18);background:linear-gradient(180deg, rgba(255,255,255,.62), rgba(236,245,255,.34))}
.contact-prefill-note p{margin:8px 0 0;color:var(--text)}
.search-result.suggestion-note{pointer-events:none}

body[data-theme="dark"] .workflow-check-intro,
body[data-theme="dark"] .workflow-check-shell{background:linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.04));border-color:rgba(126,164,220,.18);box-shadow:0 18px 40px rgba(3,10,24,.24)}
body[data-theme="dark"] .workflow-question-card{background:linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));border-color:rgba(126,164,220,.18)}
body[data-theme="dark"] .workflow-option{background:rgba(255,255,255,.05);border-color:rgba(126,164,220,.16)}
body[data-theme="dark"] .workflow-option:has(input:checked){background:linear-gradient(135deg, rgba(73,175,255,.14), rgba(89,229,255,.08));border-color:rgba(57,166,255,.34)}
body[data-theme="dark"] .workflow-check-result,
body[data-theme="dark"] .contact-prefill-note{background:linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.05));border-color:rgba(126,164,220,.18)}

@media (max-width: 900px){
  .workflow-check-grid{grid-template-columns:1fr}
  .workflow-check-shell{padding:18px}
  .workflow-check-intro{padding:22px 20px}
  .workflow-check-actions{align-items:flex-start}
}


/* v007a quickcheck and search refinements */
#workflow-check .container{position:relative}
.workflow-check-head{align-items:flex-start;text-align:left;max-width:760px;margin:0 0 18px}
.workflow-check-head::after{display:none}
.workflow-check-head h2,.workflow-check-head p{max-width:unset}
.workflow-check-intro{max-width:860px;margin:0 0 10px;padding:22px 26px}
.workflow-check-intro h3{margin:8px 0 10px}
.workflow-check-intro p{max-width:64ch}
.workflow-check-toggle-row{justify-content:flex-start}
.workflow-check-shell[hidden]{display:none !important}
.workflow-check-shell{margin-top:10px;padding:20px 22px}
.workflow-check-grid{gap:14px}
.workflow-question-card{padding:18px 18px 16px}
.workflow-check-note{max-width:58ch}
.header-search .search-results,
.mobile-search .search-results{box-sizing:border-box;overflow:hidden}
.header-search .search-results{left:4px;right:4px;top:calc(100% + 10px)}
.mobile-search .search-results{padding:8px}
.search-results{gap:8px}
.search-result{padding:12px 14px;border-radius:16px}
.search-result h3{font-size:.96rem;margin-bottom:4px;line-height:1.35}
.search-result p{font-size:.88rem;line-height:1.45;margin:0 0 4px}
.search-result small{display:block;line-height:1.35}
.search-result.suggestion-note{padding:10px 14px}
@media (max-width: 900px){
  .workflow-check-head{margin-bottom:14px}
  .workflow-check-intro{padding:20px 18px}
  .workflow-check-shell{padding:16px}
  .workflow-check-toggle-row{justify-content:center}
}


@media (max-width: 760px){
  .header-search .search-results,
  .mobile-search .search-results{max-height:min(58vh, 420px)}
}

/* v007b fix scrollable search results */
.header-search,
.mobile-search,
.search-shell,
.nav-actions,
.mobile-panel{
  overflow:visible;
}
.header-search .search-results,
.mobile-search .search-results{
  overflow-y:auto !important;
  overflow-x:hidden !important;
  -webkit-overflow-scrolling:touch;
  overscroll-behavior:contain;
  touch-action:pan-y;
  scrollbar-gutter:stable;
}

@media (max-width: 760px){
  .mobile-search .search-results{width:100%; max-width:none;}
  .search-result{padding:12px 13px;}
}


/* v007e alignment cleanup + light default */
body[data-page="index.html"] .section-head,
body[data-page="index.html"] .workflow-check-intro,
body[data-page="index.html"] .faq-grid-primary,
body[data-page="index.html"] .faq-more-compact,
body[data-page="index.html"] .faq-explorer-head{
  text-align:left !important;
  margin-left:0 !important;
  margin-right:auto !important;
}
body[data-page="index.html"] .section-head::after,
body[data-page="index.html"] .workflow-check-intro::after{
  margin-left:0 !important;
  margin-right:auto !important;
}
body[data-page="index.html"] .faq-more-compact{justify-content:flex-start;}
body[data-page="index.html"] .faq-explorer-intro{margin-left:0;margin-right:auto;text-align:left;}
body[data-page="index.html"] .faq-topic-bar{justify-content:flex-start;}
body[data-page="index.html"] .faq-search{justify-content:flex-start;margin-left:0;}

body[data-page="leistungen.html"] .leistungen-copy,
body[data-page="leistungen.html"] #leistungen-ueberblick .section-head,
body[data-page="leistungen.html"] .forms-head,
body[data-page="leistungen.html"] .leistungen-cta-center,
body[data-page="einsatzbereiche.html"] .einsatz-copy,
body[data-page="einsatzbereiche.html"] #einsatz-ueberblick .section-head,
body[data-page="einsatzbereiche.html"] .einsatz-callout > div:first-child,
body[data-page="ueber-mich.html"] .ueber-copy,
body[data-page="ueber-mich.html"] #arbeitsweise .section-head,
body[data-page="ueber-mich.html"] .ueber-callout,
body[data-page="kontakt.html"] .kontakt-hero .page-hero-grid > div,
body[data-page="kontakt.html"] .contact-intro{
  text-align:center !important;
  margin-left:auto !important;
  margin-right:auto !important;
}
body[data-page="leistungen.html"] .leistungen-copy .lead,
body[data-page="einsatzbereiche.html"] .einsatz-copy .lead,
body[data-page="ueber-mich.html"] .ueber-copy .lead,
body[data-page="kontakt.html"] .contact-intro p,
body[data-page="kontakt.html"] .kontakt-hero .lead{
  margin-left:auto !important;
  margin-right:auto !important;
}
body[data-page="leistungen.html"] .leistungen-copy .eyebrow,
body[data-page="einsatzbereiche.html"] .einsatz-copy .eyebrow,
body[data-page="ueber-mich.html"] .ueber-copy .eyebrow,
body[data-page="kontakt.html"] .kontakt-hero .eyebrow,
body[data-page="leistungen.html"] #leistungen-ueberblick .section-head::after,
body[data-page="leistungen.html"] .forms-head::after,
body[data-page="einsatzbereiche.html"] #einsatz-ueberblick .section-head::after,
body[data-page="ueber-mich.html"] #arbeitsweise .section-head::after,
body[data-page="kontakt.html"] .contact-intro .eyebrow{
  margin-left:auto !important;
  margin-right:auto !important;
}
body[data-page="leistungen.html"] .leistungen-hero-grid,
body[data-page="einsatzbereiche.html"] .einsatz-hero-grid,
body[data-page="ueber-mich.html"] .ueber-hero-grid{
  align-items:center !important;
}
body[data-page="leistungen.html"] .workflow-benefit-grid,
body[data-page="einsatzbereiche.html"] .einsatz-grid,
body[data-page="ueber-mich.html"] .about-grid,
body[data-page="kontakt.html"] .contact-help-grid{
  margin-top:20px;
}
body[data-page="leistungen.html"] .leistungen-cta-center .btn-row,
body[data-page="einsatzbereiche.html"] .einsatz-callout .btn-row,
body[data-page="ueber-mich.html"] .ueber-callout .btn-row,
body[data-page="kontakt.html"] .contact-response{
  justify-content:center !important;
}
body[data-page="beispiele.html"] .page-hero .page-hero-grid > div,
body[data-page="beispiele.html"] .examples-tools,
body[data-page="beispiele.html"] .cta-panel-examples .cta-copy{
  text-align:left !important;
}
body[data-page="beispiele.html"] .cta-panel-examples .btn-row{justify-content:flex-start;}
body[data-page="beispiele.html"] .cta-panel-examples{align-items:center;}
body[data-page="datenschutz.html"] .page-hero,
body[data-page="impressum.html"] .page-hero{
  text-align:left !important;
}
body[data-page="datenschutz.html"] .page-hero .lead,
body[data-page="impressum.html"] .page-hero .lead{
  margin-left:0 !important;
  margin-right:auto !important;
}
@media (max-width: 900px){
  body[data-page="index.html"] .faq-search{justify-content:stretch;}
  body[data-page="leistungen.html"] .leistungen-copy,
  body[data-page="einsatzbereiche.html"] .einsatz-copy,
  body[data-page="ueber-mich.html"] .ueber-copy{
    text-align:left !important;
  }
  body[data-page="leistungen.html"] .leistungen-copy .lead,
  body[data-page="einsatzbereiche.html"] .einsatz-copy .lead,
  body[data-page="ueber-mich.html"] .ueber-copy .lead{
    margin-left:0 !important;
    margin-right:auto !important;
  }
  body[data-page="leistungen.html"] .leistungen-copy .eyebrow,
  body[data-page="einsatzbereiche.html"] .einsatz-copy .eyebrow,
  body[data-page="ueber-mich.html"] .ueber-copy .eyebrow{
    margin-left:0 !important;
    margin-right:auto !important;
  }
}

/* v007h page hero side animations + step quickcheck */
.hero-title-row{display:grid;grid-template-columns:minmax(120px,180px) auto minmax(120px,180px);align-items:center;gap:22px;width:100%;max-width:1120px;margin:0 auto}
.page-title-row h1{margin:0;text-align:center;justify-self:center;max-width:none}
.title-flow{height:120px;display:flex;align-items:center;justify-content:center;opacity:.96;pointer-events:none}
.title-flow-track{position:relative;width:100%;max-width:180px;height:120px}
.title-flow-line{position:absolute;background:linear-gradient(90deg, rgba(37,207,255,.18), rgba(47,124,255,.72), rgba(37,207,255,.22));border-radius:999px;box-shadow:0 0 14px rgba(37,207,255,.10)}
.title-flow-left .l1,.title-flow-right .l1{top:30px;left:10px;right:26px;height:2px}
.title-flow-left .l2,.title-flow-right .l2{top:62px;left:26px;right:10px;height:2px}
.title-flow-left .l3,.title-flow-right .l3{top:30px;right:26px;width:2px;height:46px;background:linear-gradient(180deg, rgba(37,207,255,.2), rgba(47,124,255,.72), rgba(37,207,255,.18))}
.title-flow-right .l1{left:26px;right:10px}
.title-flow-right .l2{left:10px;right:26px}
.title-flow-right .l3{left:26px;right:auto}
.title-flow-junction{position:absolute;width:12px;height:12px;border-radius:50%;background:radial-gradient(circle at 35% 35%, rgba(255,255,255,.98) 0 28%, rgba(37,207,255,.92) 29% 66%, rgba(37,207,255,.14) 67% 100%);box-shadow:0 0 0 8px rgba(37,207,255,.06)}
.title-flow-left .j1{top:24px;left:18px}.title-flow-left .j2{top:24px;right:20px}.title-flow-left .j3{top:56px;left:34px}.title-flow-left .j4{top:56px;right:4px}
.title-flow-right .j1{top:24px;left:20px}.title-flow-right .j2{top:24px;right:18px}.title-flow-right .j3{top:56px;left:4px}.title-flow-right .j4{top:56px;right:34px}
.title-flow-agent{position:absolute;width:10px;height:10px;border-radius:50%;background:radial-gradient(circle at 35% 35%, #fff, #25cfff 65%, rgba(37,207,255,.2));box-shadow:0 0 0 8px rgba(37,207,255,.07), 0 0 18px rgba(37,207,255,.24);animation:sideFlowA 7.4s ease-in-out infinite}
.title-flow-agent.a2{width:8px;height:8px;animation:sideFlowB 8.6s ease-in-out infinite;animation-delay:-2.1s}
.title-flow-agent.a3{width:9px;height:9px;animation:sideFlowC 9.1s ease-in-out infinite;animation-delay:-4.2s}
.title-flow-left .a1,.title-flow-left .a2,.title-flow-left .a3{left:18px;top:24px}
.title-flow-right .a1,.title-flow-right .a2,.title-flow-right .a3{left:20px;top:24px}
@keyframes sideFlowA{0%{transform:translate(0,0)}24%{transform:translate(128px,0)}46%{transform:translate(128px,32px)}72%{transform:translate(20px,32px)}100%{transform:translate(0,0)}}
@keyframes sideFlowB{0%{transform:translate(112px,0)}28%{transform:translate(112px,32px)}56%{transform:translate(0,32px)}82%{transform:translate(0,0)}100%{transform:translate(112px,0)}}
@keyframes sideFlowC{0%{transform:translate(16px,32px)}30%{transform:translate(128px,32px)}56%{transform:translate(128px,0)}84%{transform:translate(16px,0)}100%{transform:translate(16px,32px)}}
body[data-theme="dark"] .title-flow-line{background:linear-gradient(90deg, rgba(37,207,255,.22), rgba(63,124,255,.84), rgba(37,207,255,.24))}

body[data-page="einsatzbereiche.html"] .einsatz-hero-grid,
body[data-page="ueber-mich.html"] .ueber-hero-grid{display:grid;grid-template-columns:1fr;justify-items:center;gap:12px}
body[data-page="einsatzbereiche.html"] .einsatz-copy,
body[data-page="ueber-mich.html"] .ueber-copy{text-align:center;justify-items:center;max-width:980px}
body[data-page="einsatzbereiche.html"] .einsatz-copy .lead,
body[data-page="ueber-mich.html"] .ueber-copy .lead{max-width:66ch;margin-left:auto;margin-right:auto}
body[data-page="einsatzbereiche.html"] .einsatz-points,
body[data-page="ueber-mich.html"] .ueber-points,
body[data-page="ueber-mich.html"] .trust-triplet{justify-content:center}

body[data-page="index.html"] .workflow-check-head{margin-bottom:12px;max-width:760px}
body[data-page="index.html"] .workflow-check-head h2,
body[data-page="index.html"] .workflow-check-head p{text-align:left}
body[data-page="index.html"] .workflow-check-intro{max-width:880px;margin:0 0 12px;padding:22px 26px;justify-items:start;text-align:left}
body[data-page="index.html"] .workflow-check-intro h3{margin:8px 0 10px}
body[data-page="index.html"] .workflow-check-toggle-row{justify-content:flex-start}
.workflow-check-shell--sequential{max-width:920px}
.workflow-check-progress{display:flex;justify-content:flex-start;align-items:center;margin-bottom:4px}
.workflow-check-progress-label{display:inline-flex;align-items:center;gap:8px;padding:8px 14px;border-radius:999px;border:1px solid rgba(126,164,220,.18);background:rgba(255,255,255,.55);font-size:.92rem;font-weight:700;color:var(--heading)}
body[data-theme="dark"] .workflow-check-progress-label{background:rgba(255,255,255,.06);border-color:rgba(126,164,220,.18)}
.workflow-check-grid{grid-template-columns:1fr !important}
.workflow-question-card[hidden]{display:none !important}
.workflow-question-card{min-height:0}
.workflow-question-title{display:block;margin:0 0 14px;padding:0;font-size:1.15rem;font-weight:800;color:var(--heading)}
.workflow-question-card legend{display:none}
.workflow-check-actions{margin-top:2px}
.workflow-check-actions .btn-row{display:flex;gap:12px;flex-wrap:wrap}
.workflow-check-result{margin-top:6px}
@media (max-width:760px){
  .hero-title-row{grid-template-columns:1fr;gap:12px}
  .title-flow{height:88px}
  .title-flow-right{display:none}
  .title-flow-track{max-width:210px;height:88px}
  .page-title-row h1{order:1}
  .title-flow-left{order:2}
  .workflow-check-shell--sequential{padding:18px}
}
