:root{
  --blue:#1267e8;
  --blue-dark:#0754c8;
  --navy:#071a35;
  --navy-2:#0b2447;
  --text:#142033;
  --muted:#65758b;
  --line:#e3eaf3;
  --soft:#f5f8fc;
  --white:#fff;
  --radius:22px;
  --shadow:0 20px 60px rgba(17,45,85,.10);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,ui-sans-serif,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  color:var(--text);
  background:#fff;
  line-height:1.6;
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}

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

/* HEADER */

.site-header{
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(16px);
  border-bottom:1px solid rgba(225,233,243,.8);
}

.nav{
  min-height:78px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
}

.brand img{
  width:185px;
  max-height:48px;
  object-fit:contain;
}

.main-nav{
  display:flex;
  gap:28px;
  align-items:center;
  margin-left:auto;
}

.main-nav a{
  font-size:14px;
  font-weight:650;
  color:#42526a;
  transition:.2s ease;
}

.main-nav a:hover{color:var(--blue)}

/* BUTTONS */

.button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  padding:0 24px;
  border-radius:12px;
  background:linear-gradient(135deg,var(--blue),#0758d7);
  color:#fff;
  font-weight:750;
  box-shadow:0 10px 24px rgba(18,103,232,.20);
  transition:.2s ease;
}

.button:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 32px rgba(18,103,232,.28);
}

.button-small{
  min-height:42px;
  padding:0 18px;
  font-size:14px;
}

.button-secondary{
  background:#fff;
  color:var(--navy);
  border:1px solid var(--line);
  box-shadow:none;
}

.button-secondary:hover{
  border-color:#c7d7ed;
  box-shadow:0 8px 25px rgba(18,48,85,.08);
}

.button-light{
  background:#fff;
  color:var(--navy);
}

/* HERO */

.hero{
  position:relative;
  overflow:hidden;
  padding:100px 0 90px;
  background:
    radial-gradient(circle at 80% 10%,rgba(36,127,255,.13),transparent 30%),
    radial-gradient(circle at 10% 90%,rgba(73,151,255,.08),transparent 28%),
    linear-gradient(180deg,#fff 0%,#f8fbff 100%);
}

.hero:after{
  content:"";
  position:absolute;
  width:480px;
  height:480px;
  right:-220px;
  top:80px;
  border-radius:50%;
  border:80px solid rgba(18,103,232,.035);
}

.hero-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:70px;
  align-items:center;
  position:relative;
  z-index:2;
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:var(--blue);
  font-size:12px;
  font-weight:850;
  letter-spacing:.12em;
  margin-bottom:18px;
}

.eyebrow:before{
  content:"";
  width:24px;
  height:2px;
  background:currentColor;
}

.hero h1{
  font-size:clamp(45px,5.3vw,72px);
  line-height:1.03;
  letter-spacing:-.045em;
  margin:0;
  color:var(--navy);
}

.hero h1 span{
  display:block;
  color:var(--blue);
}

.hero-text{
  max-width:650px;
  margin:27px 0 30px;
  font-size:19px;
  color:var(--muted);
  line-height:1.7;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.hero-points{
  display:flex;
  flex-wrap:wrap;
  gap:18px;
  margin-top:28px;
  font-size:13px;
  color:#53657c;
  font-weight:650;
}

/* HERO DEMO */

.hero-demo-card{
  background:#fff;
  border:1px solid #e0e9f4;
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 35px 90px rgba(19,54,100,.16);
  transform:rotate(1deg);
}

.browser-bar{
  height:52px;
  display:flex;
  align-items:center;
  gap:7px;
  padding:0 16px;
  background:#f5f7fa;
  border-bottom:1px solid #e4e9ef;
}

.browser-bar>span{
  width:10px;
  height:10px;
  border-radius:50%;
  background:#ccd5e1;
}

.browser-address{
  margin-left:10px;
  background:#fff;
  border:1px solid #e1e7ef;
  border-radius:7px;
  height:30px;
  display:flex;
  align-items:center;
  padding:0 14px;
  flex:1;
  font-size:11px;
  color:#8391a3;
}

.demo-company{
  min-height:410px;
  padding:50px 38px;
  background:
    linear-gradient(135deg,rgba(7,26,53,.94),rgba(10,55,107,.88)),
    linear-gradient(135deg,#0b2344,#0e4c8e);
  color:#fff;
  position:relative;
}

.demo-company-copy small{
  font-size:10px;
  letter-spacing:.16em;
  opacity:.6;
}

.demo-company-copy h3{
  font-size:29px;
  line-height:1.2;
  margin:10px 0 6px;
}

.demo-company-copy p{
  opacity:.7;
  margin:0;
}

.demo-widget-preview{
  position:absolute;
  right:28px;
  bottom:28px;
  width:285px;
  padding:20px;
  border-radius:18px;
  background:#fff;
  color:var(--text);
  box-shadow:0 20px 50px rgba(0,0,0,.25);
}

.demo-widget-preview strong{
  display:block;
  font-size:18px;
}

.demo-widget-preview span{
  display:block;
  color:var(--muted);
  font-size:12px;
  margin:2px 0 14px;
}

.demo-widget-preview button{
  width:100%;
  border:0;
  padding:12px;
  border-radius:9px;
  background:var(--blue);
  color:#fff;
  font-weight:750;
  cursor:pointer;
}

/* TRUST */

.trust-strip{
  border-top:1px solid #edf1f6;
  border-bottom:1px solid #edf1f6;
  background:#fff;
}

.trust-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
}

.trust-grid>div{
  padding:30px 25px;
  text-align:center;
  border-right:1px solid #edf1f6;
}

.trust-grid>div:last-child{border-right:0}

.trust-grid strong{
  display:block;
  color:var(--navy);
  font-size:23px;
}

.trust-grid span{
  color:var(--muted);
  font-size:13px;
}

/* SECTIONS */

.section{
  padding:105px 0;
}

.section-soft{
  background:var(--soft);
}

.section-heading{
  max-width:760px;
  margin-bottom:55px;
}

.section-heading.centered{
  margin-left:auto;
  margin-right:auto;
  text-align:center;
}

.section-heading.centered .eyebrow:before{display:none}

.section h2,
.final-cta h2{
  color:var(--navy);
  font-size:clamp(34px,4vw,52px);
  line-height:1.12;
  letter-spacing:-.035em;
  margin:0 0 18px;
}

.section-heading p{
  color:var(--muted);
  font-size:18px;
}

/* FEATURES */

.feature-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}

.feature-card{
  padding:30px;
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:#fff;
  transition:.2s ease;
}

.feature-card:hover{
  transform:translateY(-5px);
  box-shadow:var(--shadow);
}

.feature-icon{
  width:48px;
  height:48px;
  border-radius:13px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#eaf3ff;
  color:var(--blue);
  font-weight:850;
  margin-bottom:22px;
}

.feature-card h3,
.trade-card h3,
.steps-grid h3{
  color:var(--navy);
  margin:0 0 10px;
  font-size:20px;
}

.feature-card p,
.trade-card p,
.steps-grid p{
  color:var(--muted);
  margin:0;
  font-size:15px;
}

/* TRADES */

.trade-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:24px;
  max-width:940px;
  margin:0 auto;
}

.trade-card{
  padding:40px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:26px;
  box-shadow:0 12px 35px rgba(30,57,91,.06);
}

.trade-icon{
  font-size:32px;
  margin-bottom:18px;
}

.trade-card ul{
  list-style:none;
  padding:0;
  margin:24px 0 0;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
}

.trade-card li{
  background:var(--soft);
  padding:10px 12px;
  border-radius:9px;
  font-size:13px;
  font-weight:650;
  color:#465a72;
}

/* DEMO */

.demo-section{
  background:#fff;
}

.demo-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:center;
  gap:80px;
}

.demo-grid>div:first-child>p{
  color:var(--muted);
  font-size:18px;
  margin-bottom:28px;
}

.assistant-showcase{
  position:relative;
  padding:48px;
  min-height:330px;
  border-radius:28px;
  color:#fff;
  background:
    radial-gradient(circle at 90% 10%,rgba(75,156,255,.35),transparent 35%),
    linear-gradient(145deg,var(--navy),#0c376a);
  box-shadow:0 25px 60px rgba(7,26,53,.20);
}

.assistant-showcase h3{
  font-size:32px;
  margin:45px 0 12px;
}

.assistant-showcase p{
  max-width:460px;
  color:#c9d7e9;
}

.assistant-showcase a{
  display:inline-block;
  margin-top:18px;
  color:#fff;
  font-weight:750;
}

.assistant-badge{
  position:absolute;
  top:28px;
  right:28px;
  padding:6px 10px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.16);
  border-radius:999px;
  font-size:10px;
  font-weight:800;
  letter-spacing:.12em;
}

/* STEPS */

.steps-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}

.steps-grid article{
  padding:28px;
  border-top:2px solid #dce7f5;
}

.steps-grid span{
  display:block;
  color:var(--blue);
  font-size:13px;
  font-weight:850;
  margin-bottom:20px;
}

/* DARK LEAD SECTION */

.section-dark{
  background:linear-gradient(145deg,#071a35,#0b2c56);
  color:#fff;
}

.section-dark h2{color:#fff}

.eyebrow-light{color:#72adff}

.lead-showcase-grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:80px;
  align-items:center;
}

.lead-showcase-grid>div:first-child p{
  color:#b9c9dc;
  font-size:18px;
}

.lead-card{
  background:#fff;
  color:var(--text);
  border-radius:22px;
  padding:28px;
  box-shadow:0 30px 80px rgba(0,0,0,.25);
}

.lead-card-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding-bottom:18px;
  border-bottom:1px solid var(--line);
}

.lead-card-top span{
  padding:5px 9px;
  border-radius:999px;
  background:#fff0eb;
  color:#c64d27;
  font-size:10px;
  font-weight:850;
}

.lead-card dl{margin:12px 0 0}

.lead-card dl div{
  display:grid;
  grid-template-columns:140px 1fr;
  padding:12px 0;
  border-bottom:1px solid #eef2f6;
}

.lead-card dt{
  color:var(--muted);
  font-size:13px;
}

.lead-card dd{
  margin:0;
  font-weight:700;
  color:var(--navy);
}

/* FAQ */

.faq-wrap{
  max-width:850px;
}

.faq-wrap details{
  border-bottom:1px solid var(--line);
  padding:22px 4px;
}

.faq-wrap summary{
  cursor:pointer;
  list-style:none;
  font-size:17px;
  font-weight:750;
  color:var(--navy);
}

.faq-wrap summary::-webkit-details-marker{display:none}

.faq-wrap summary:after{
  content:"+";
  float:right;
  color:var(--blue);
  font-size:22px;
}

.faq-wrap details[open] summary:after{content:"–"}

.faq-wrap details p{
  color:var(--muted);
  padding-right:40px;
}

/* CTA */

.final-cta{
  padding:80px 0;
  background:linear-gradient(135deg,#0c62df,#064bb8);
  color:#fff;
}

.final-cta-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:50px;
}

.final-cta h2{
  color:#fff;
  max-width:800px;
  margin-bottom:0;
}

/* FOOTER */

.site-footer{
  background:#06162d;
  color:#aebed2;
  padding:45px 0;
}

.footer-grid{
  display:grid;
  grid-template-columns:1fr auto auto;
  align-items:center;
  gap:40px;
}

.footer-brand img{
  width:160px;
  filter:brightness(0) invert(1);
  opacity:.92;
}

.footer-brand p{
  font-size:13px;
  margin:8px 0 0;
}

.footer-links{
  display:flex;
  flex-wrap:wrap;
  gap:20px;
  font-size:13px;
}

.footer-links a:hover{color:#fff}

.footer-copy{
  font-size:12px;
}

/* RESPONSIVE */

@media(max-width:980px){
  .main-nav{display:none}
  .hero-grid,
  .demo-grid,
  .lead-showcase-grid{
    grid-template-columns:1fr;
  }

  .hero-grid{gap:55px}
  .feature-grid,
  .steps-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .hero-demo-card{
    max-width:650px;
    margin:auto;
  }
}

@media(max-width:700px){
  .container{
    width:min(100% - 28px,1180px);
  }

  .nav{
    min-height:68px;
  }

  .brand img{width:150px}
  .nav>.button{display:none}

  .hero{
    padding:70px 0 60px;
  }

  .hero h1{
    font-size:43px;
  }

  .hero-text{
    font-size:17px;
  }

  .hero-actions{
    flex-direction:column;
  }

  .hero-actions .button{
    width:100%;
  }

  .hero-points{
    flex-direction:column;
    gap:7px;
  }

  .demo-company{
    min-height:390px;
    padding:35px 25px;
  }

  .demo-company-copy h3{
    font-size:24px;
  }

  .demo-widget-preview{
    left:20px;
    right:20px;
    bottom:20px;
    width:auto;
  }

  .trust-grid,
  .feature-grid,
  .trade-grid,
  .steps-grid{
    grid-template-columns:1fr;
  }

  .trust-grid>div{
    border-right:0;
    border-bottom:1px solid #edf1f6;
  }

  .section{
    padding:75px 0;
  }

  .trade-card{
    padding:28px;
  }

  .trade-card ul{
    grid-template-columns:1fr;
  }

  .assistant-showcase{
    padding:32px;
  }

  .lead-showcase-grid{
    gap:45px;
  }

  .lead-card dl div{
    grid-template-columns:1fr;
    gap:3px;
  }

  .final-cta-inner{
    flex-direction:column;
    align-items:flex-start;
  }

  .footer-grid{
    grid-template-columns:1fr;
  }

  .footer-links{
    gap:14px;
  }
}
EOFcat > /var/www/craftagent/js/landing.js <<'EOF'
document.addEventListener("DOMContentLoaded",()=>{
  const demoButton=document.getElementById("hero-demo-button");

  if(demoButton){
    demoButton.addEventListener("click",()=>{
      window.location.href="/assistant/muster-haustechnik?preview=1";
    });
  }
});

/* PERSONALIZATION */

.personalization-section{
  background:#fff;
  position:relative;
  overflow:hidden;
}

.personalization-section:before{
  content:"";
  position:absolute;
  width:420px;
  height:420px;
  left:-170px;
  top:90px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(18,103,232,.08),transparent 70%);
  pointer-events:none;
}

.personalization-grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:80px;
  align-items:center;
}

.personalization-points{
  display:grid;
  gap:16px;
}

.personalization-points article{
  display:grid;
  grid-template-columns:46px 1fr;
  gap:18px;
  align-items:start;
  padding:18px 0;
  border-bottom:1px solid var(--line);
}

.personalization-points article:last-child{
  border-bottom:0;
}

.personalization-points article>span{
  width:40px;
  height:40px;
  border-radius:11px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#eaf3ff;
  color:var(--blue);
  font-size:12px;
  font-weight:850;
}

.personalization-points h3{
  margin:0 0 5px;
  color:var(--navy);
  font-size:18px;
}

.personalization-points p{
  margin:0;
  color:var(--muted);
  font-size:14px;
}

.tenant-preview-stack{
  position:relative;
  min-height:470px;
}

.tenant-preview-card{
  width:min(520px,92%);
  border:1px solid var(--line);
  border-radius:22px;
  background:#fff;
  overflow:hidden;
  box-shadow:0 24px 70px rgba(16,47,87,.14);
}

.tenant-preview-offset{
  position:absolute;
  right:0;
  bottom:0;
  transform:translateY(14px);
}

.tenant-preview-top{
  display:flex;
  align-items:center;
  gap:13px;
  padding:16px 18px;
  border-bottom:1px solid #edf1f6;
}

.tenant-preview-top strong{
  display:block;
  color:var(--navy);
  font-size:14px;
}

.tenant-preview-top span{
  display:block;
  color:var(--muted);
  font-size:11px;
}

.tenant-logo-fallback{
  width:42px;
  height:42px;
  border-radius:10px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#0b5d9d;
  color:#fff;
  font-weight:850;
  font-size:12px;
  flex:0 0 auto;
}

.tenant-logo-electric{
  background:#111;
}

.tenant-preview-body{
  min-height:180px;
  padding:26px 28px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  color:#fff;
}

.tenant-preview-blue{
  background:
    radial-gradient(circle at 85% 15%,rgba(82,161,255,.20),transparent 35%),
    linear-gradient(145deg,#0b4f82,#1267a3);
}

.tenant-preview-gold{
  background:
    radial-gradient(circle at 90% 15%,rgba(255,210,61,.18),transparent 35%),
    linear-gradient(145deg,#111,#7c5a00);
}

.tenant-preview-body small{
  display:block;
  font-size:9px;
  text-transform:uppercase;
  letter-spacing:.11em;
  opacity:.72;
  margin-bottom:10px;
}

.tenant-preview-body h3{
  margin:0 0 2px;
  font-size:30px;
}

.tenant-preview-body p{
  margin:0;
  font-size:13px;
  opacity:.82;
}

.tenant-avatar-placeholder{
  width:92px;
  height:92px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.18);
  color:#fff;
  font-weight:900;
  letter-spacing:.05em;
  font-size:20px;
  flex:0 0 auto;
}

@media(max-width:980px){
  .personalization-grid{
    grid-template-columns:1fr;
    gap:50px;
  }

  .tenant-preview-stack{
    min-height:430px;
  }
}

@media(max-width:700px){
  .tenant-preview-stack{
    min-height:auto;
    display:grid;
    gap:18px;
  }

  .tenant-preview-card{
    width:100%;
  }

  .tenant-preview-offset{
    position:static;
    transform:none;
  }

  .tenant-preview-body{
    padding:22px;
  }

  .tenant-avatar-placeholder{
    width:74px;
    height:74px;
  }
}

/* REAL ASSISTANT AVATARS */

.tenant-avatar{
  width:118px;
  height:150px;
  object-fit:contain;
  object-position:center bottom;
  align-self:flex-end;
  margin-bottom:-26px;
  filter:drop-shadow(0 12px 18px rgba(0,0,0,.18));
  flex:0 0 auto;
}

@media(max-width:700px){
  .tenant-avatar{
    width:92px;
    height:125px;
    margin-bottom:-22px;
  }
}

/* PERSONALIZATION – AVATAR FINAL POLISH */

.personalization-section .tenant-avatar{
  width:138px;
  height:172px;
  object-fit:contain;
  object-position:right bottom;
  align-self:flex-end;
  margin-left:auto;
  margin-right:-4px;
  margin-bottom:-28px;
  flex:0 0 auto;
  filter:drop-shadow(0 12px 18px rgba(0,0,0,.16));
}

@media(max-width:700px){
  .personalization-section .tenant-avatar{
    width:105px;
    height:138px;
    margin-right:-2px;
    margin-bottom:-23px;
  }
}

/* PROCESS FLOW */

.process-section{
  background:#f8fbff;
}

.process-flow{
  display:grid;
  grid-template-columns:1fr auto 1fr auto 1fr auto 1fr;
  gap:18px;
  align-items:center;
  margin-top:20px;
}

.process-step{
  position:relative;
  min-height:230px;
  padding:28px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:20px;
  box-shadow:0 12px 35px rgba(20,55,95,.06);
}

.process-number{
  position:absolute;
  top:18px;
  right:18px;
  font-size:11px;
  font-weight:850;
  color:#9db0c8;
}

.process-icon{
  width:48px;
  height:48px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:13px;
  background:#eaf3ff;
  color:var(--blue);
  font-size:20px;
  margin-bottom:20px;
}

.process-step h3{
  margin:0 0 8px;
  color:var(--navy);
  font-size:18px;
}

.process-step p{
  margin:0;
  color:var(--muted);
  font-size:14px;
}

.process-arrow{
  color:#9bb4d1;
  font-size:24px;
  font-weight:800;
}

.delivery-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
  margin-top:50px;
}

.delivery-card{
  display:grid;
  grid-template-columns:52px 1fr;
  gap:18px;
  padding:30px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:22px;
  box-shadow:0 16px 45px rgba(20,55,95,.07);
}

.delivery-icon{
  width:46px;
  height:46px;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#eaf3ff;
  color:var(--blue);
  font-size:20px;
  font-weight:850;
}

.delivery-label{
  color:var(--blue);
  font-size:10px;
  font-weight:850;
  letter-spacing:.12em;
  margin-bottom:5px;
}

.delivery-card h3{
  margin:0 0 7px;
  color:var(--navy);
  font-size:21px;
}

.delivery-card p{
  margin:0;
  color:var(--muted);
  font-size:14px;
}

.mail-preview,
.leadcenter-preview{
  grid-column:1/-1;
  margin-top:8px;
  padding:16px;
  border:1px solid #e4ebf4;
  background:#fbfdff;
  border-radius:14px;
}

.mail-preview-head,
.leadcenter-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding-bottom:10px;
  border-bottom:1px solid #e5ebf2;
  font-size:12px;
}

.mail-preview-head strong{
  color:var(--blue);
  font-size:10px;
}

.mail-preview-row{
  display:grid;
  grid-template-columns:100px 1fr;
  padding:9px 0;
  border-bottom:1px solid #eef2f6;
  font-size:12px;
}

.mail-preview-row:last-child{
  border-bottom:0;
}

.mail-preview-row span{
  color:var(--muted);
}

.mail-preview-row strong{
  color:var(--navy);
}

.leadcenter-top span{
  background:#eaf3ff;
  color:var(--blue);
  padding:4px 8px;
  border-radius:999px;
  font-size:10px;
  font-weight:800;
}

.leadcenter-item{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:18px;
  padding:11px 0;
  border-bottom:1px solid #eef2f6;
}

.leadcenter-item:last-child{
  border-bottom:0;
}

.leadcenter-item div strong{
  display:block;
  color:var(--navy);
  font-size:12px;
}

.leadcenter-item div span{
  display:block;
  color:var(--muted);
  font-size:11px;
}

.leadcenter-item b{
  font-size:9px;
  color:#c94e2b;
  background:#fff0eb;
  padding:4px 7px;
  border-radius:999px;
}

.leadcenter-item b.normal{
  color:#53708f;
  background:#eef4fa;
}

@media(max-width:980px){
  .process-flow{
    grid-template-columns:1fr 1fr;
  }

  .process-arrow{
    display:none;
  }
}

@media(max-width:700px){
  .process-flow,
  .delivery-grid{
    grid-template-columns:1fr;
  }

  .process-step{
    min-height:auto;
  }

  .delivery-card{
    grid-template-columns:46px 1fr;
    padding:24px;
  }
}

.final-cta-text{
  max-width:720px;
  margin:16px 0 0;
  color:rgba(255,255,255,.82);
  font-size:17px;
  line-height:1.7;
}

.final-cta .button-light{
  white-space:nowrap;
}

/* =========================================================
   CRAFTAGENT CONTACT / SALES FORM
   ========================================================= */

.contact-section{
  background:#f5f8fc;
  padding-top:110px;
  padding-bottom:120px;
}

.contact-grid{
  display:grid;
  grid-template-columns:minmax(0,.9fr) minmax(480px,1.1fr);
  gap:90px;
  align-items:center;
}

.contact-copy h2{
  margin:18px 0 22px;
  max-width:620px;
  font-size:clamp(38px,4vw,58px);
  line-height:1.05;
  letter-spacing:-.035em;
}

.contact-intro{
  max-width:600px;
  font-size:18px;
  line-height:1.75;
  color:#63738a;
}

.contact-benefits{
  margin-top:38px;
  display:grid;
  gap:24px;
}

.contact-benefit{
  display:flex;
  gap:16px;
  align-items:flex-start;
}

.contact-benefit>span{
  width:34px;
  height:34px;
  flex:0 0 34px;
  display:grid;
  place-items:center;
  border-radius:10px;
  background:#e7f1ff;
  color:#1267e8;
  font-weight:900;
}

.contact-benefit strong{
  display:block;
  margin-bottom:5px;
  font-size:16px;
  color:#071d3b;
}

.contact-benefit p{
  margin:0;
  max-width:500px;
  color:#68788e;
  line-height:1.55;
  font-size:14px;
}

.contact-card{
  background:#fff;
  border:1px solid #dce6f1;
  border-radius:24px;
  padding:38px;
  box-shadow:0 25px 70px rgba(11,45,89,.10);
}

.contact-card-kicker{
  display:block;
  margin-bottom:9px;
  color:#1267e8;
  font-size:11px;
  font-weight:800;
  letter-spacing:.13em;
}

.contact-card-head h3{
  margin:0;
  color:#071d3b;
  font-size:29px;
  letter-spacing:-.02em;
}

.contact-card-head p{
  margin:8px 0 28px;
  color:#718097;
}

.contact-form-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}

.contact-field{
  margin-bottom:18px;
}

.contact-field label{
  display:block;
  margin-bottom:7px;
  color:#18314f;
  font-size:13px;
  font-weight:700;
}

.contact-field input,
.contact-field select,
.contact-field textarea{
  box-sizing:border-box;
  width:100%;
  border:1px solid #d6e0eb;
  border-radius:11px;
  background:#fff;
  padding:14px 15px;
  color:#071d3b;
  font:inherit;
  outline:none;
  transition:border-color .18s ease,box-shadow .18s ease;
}

.contact-field textarea{
  resize:vertical;
  min-height:120px;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus{
  border-color:#1267e8;
  box-shadow:0 0 0 4px rgba(18,103,232,.09);
}

.contact-field input::placeholder,
.contact-field textarea::placeholder{
  color:#9aa8b8;
}

.contact-consent{
  display:flex;
  align-items:flex-start;
  gap:11px;
  margin:2px 0 20px;
  color:#6a798d;
  font-size:12px;
  line-height:1.55;
  cursor:pointer;
}

.contact-consent input{
  margin-top:3px;
  accent-color:#1267e8;
}

.contact-consent a{
  color:#1267e8;
  text-decoration:none;
}

.contact-submit{
  width:100%;
  border:0;
  cursor:pointer;
  min-height:54px;
  font-weight:800;
}

.contact-submit:disabled{
  opacity:.65;
  cursor:wait;
}

.contact-status{
  display:none;
  margin-top:16px;
  padding:13px 15px;
  border-radius:10px;
  font-size:13px;
  line-height:1.5;
}

.contact-status.success{
  display:block;
  background:#ecf8f1;
  color:#17633a;
  border:1px solid #ccebd9;
}

.contact-status.error{
  display:block;
  background:#fff1f0;
  color:#a43c34;
  border:1px solid #f1d1cd;
}

.contact-honeypot{
  position:absolute !important;
  left:-10000px !important;
  width:1px !important;
  height:1px !important;
  overflow:hidden !important;
}

@media(max-width:900px){
  .contact-section{
    padding-top:80px;
    padding-bottom:80px;
  }

  .contact-grid{
    grid-template-columns:1fr;
    gap:50px;
  }

  .contact-card{
    padding:28px;
  }
}

@media(max-width:600px){
  .contact-form-row{
    grid-template-columns:1fr;
    gap:0;
  }

  .contact-card{
    padding:22px;
    border-radius:18px;
  }

  .contact-copy h2{
    font-size:38px;
  }
}

/* =========================================================
   CRAFTAGENT IN DER PRAXIS
   ========================================================= */

.practice-section{
  background:#fff;
  overflow:hidden;
}

.practice-stage{
  display:grid;
  grid-template-columns:1fr 42px 1fr 42px 1fr;
  align-items:stretch;
  gap:14px;
  margin-top:55px;
}

.practice-panel{
  position:relative;
  padding:20px;
  border:1px solid #dfe8f2;
  border-radius:24px;
  background:#fff;
  box-shadow:0 18px 55px rgba(17,48,87,.08);
}

.practice-number{
  position:absolute;
  top:-14px;
  left:22px;
  width:40px;
  height:28px;
  display:grid;
  place-items:center;
  border-radius:8px;
  background:#1267e8;
  color:#fff;
  font-size:11px;
  font-weight:900;
  z-index:2;
}

.practice-panel h4{
  margin:24px 4px 7px;
  color:#071d3b;
  font-size:17px;
}

.practice-panel>p{
  margin:0 4px 4px;
  color:#6a7a8f;
  font-size:13px;
  line-height:1.6;
}

.practice-connector{
  display:grid;
  place-items:center;
  color:#9eb6d2;
  font-size:27px;
  font-weight:900;
}

.practice-browser,
.practice-assistant-card,
.practice-result-card{
  min-height:285px;
  border-radius:16px;
  overflow:hidden;
}

.practice-browser{
  border:1px solid #e0e7ef;
  background:#f7f9fc;
}

.practice-browser-top{
  height:40px;
  padding:0 11px;
  display:flex;
  align-items:center;
  gap:5px;
  border-bottom:1px solid #e2e8ef;
  background:#f1f4f8;
}

.practice-browser-top>span{
  width:7px;
  height:7px;
  border-radius:50%;
  background:#c3cfdd;
}

.practice-browser-top>div{
  flex:1;
  margin-left:7px;
  padding:5px 9px;
  border-radius:6px;
  background:#fff;
  color:#8a98aa;
  font-size:9px;
}

.practice-website-body{
  min-height:245px;
  padding:32px 24px;
  background:
    radial-gradient(circle at 100% 0,rgba(56,137,242,.15),transparent 35%),
    linear-gradient(145deg,#08264d,#0c5592);
  color:#fff;
}

.practice-website-body small{
  font-size:8px;
  letter-spacing:.14em;
  opacity:.7;
}

.practice-website-body h3{
  margin:12px 0 22px;
  max-width:240px;
  font-size:24px;
  line-height:1.1;
}

.practice-service{
  margin-top:8px;
  padding:9px 11px;
  border:1px solid rgba(255,255,255,.14);
  border-radius:9px;
  background:rgba(255,255,255,.08);
  font-size:11px;
}

.practice-assistant-card{
  border:1px solid #dde7f2;
  background:#f8fbff;
}

.practice-assistant-head{
  height:72px;
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px 15px;
  background:#fff;
  border-bottom:1px solid #e5ebf2;
}

.practice-assistant-head img{
  width:48px;
  height:48px;
  object-fit:contain;
  border-radius:50%;
  background:#edf4fc;
}

.practice-assistant-head strong,
.practice-assistant-head span{
  display:block;
}

.practice-assistant-head strong{
  color:#071d3b;
  font-size:13px;
}

.practice-assistant-head span{
  margin-top:2px;
  color:#308d58;
  font-size:9px;
}

.practice-chat{
  padding:20px 15px;
}

.practice-chat>div{
  padding:14px;
  border-radius:12px;
  background:#fff;
  border:1px solid #e1e9f2;
  color:#18314f;
  font-size:12px;
  line-height:1.55;
}

.practice-chat>div small{
  display:block;
  margin-bottom:5px;
  color:#1267e8;
  font-size:8px;
  font-weight:850;
  letter-spacing:.1em;
}

.practice-chat>span{
  display:block;
  width:max-content;
  max-width:90%;
  margin:9px 0 0 auto;
  padding:8px 10px;
  border-radius:9px;
  background:#1267e8;
  color:#fff;
  font-size:10px;
}

.practice-result-card{
  padding:18px;
  border:1px solid #e1e7ee;
  background:#fff;
  box-shadow:inset 0 0 0 6px #f7f9fc;
}

.practice-result-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:10px;
  padding:9px 8px 15px;
  border-bottom:1px solid #e7edf4;
}

.practice-result-head small,
.practice-result-head strong{
  display:block;
}

.practice-result-head small{
  color:#1267e8;
  font-size:8px;
  font-weight:850;
  letter-spacing:.1em;
}

.practice-result-head strong{
  margin-top:5px;
  color:#071d3b;
  font-size:16px;
}

.practice-result-head>span{
  padding:5px 7px;
  border-radius:999px;
  background:#fff0eb;
  color:#c74e2c;
  font-size:8px;
  font-weight:850;
}

.practice-result-card dl{
  margin:8px;
}

.practice-result-card dl div{
  display:grid;
  grid-template-columns:78px 1fr;
  gap:8px;
  padding:8px 0;
  border-bottom:1px solid #edf1f5;
  font-size:10px;
}

.practice-result-card dl div:last-child{
  border-bottom:0;
}

.practice-result-card dt{
  color:#7b899b;
}

.practice-result-card dd{
  margin:0;
  color:#071d3b;
  font-weight:700;
}

.practice-summary{
  margin:42px auto 0;
  max-width:850px;
  padding:17px 24px;
  display:flex;
  justify-content:center;
  align-items:center;
  flex-wrap:wrap;
  gap:13px;
  border:1px solid #dce7f2;
  border-radius:999px;
  background:#f7faff;
  color:#65778d;
  font-size:13px;
}

.practice-summary b{
  color:#9bb3cf;
}

.practice-summary strong{
  color:#1267e8;
}

@media(max-width:980px){
  .practice-stage{
    grid-template-columns:1fr;
    gap:28px;
  }

  .practice-connector{
    display:none;
  }

  .practice-panel{
    max-width:600px;
    width:100%;
    margin:auto;
  }
}

@media(max-width:600px){
  .practice-summary{
    border-radius:18px;
  }

  .practice-summary b{
    display:none;
  }

  .practice-summary span,
  .practice-summary strong{
    width:100%;
    text-align:center;
  }
}

/* =========================================================
   CRAFTAGENT – FINAL MOBILE POLISH
   ========================================================= */

@media(max-width:700px){

  /* HEADER */
  .site-header{
    position:relative;
  }

  .nav{
    min-height:60px;
    padding:5px 0;
    justify-content:center;
  }

  .brand img{
    width:128px;
    max-height:44px;
  }

  /* HERO */
  .hero{
    padding:58px 0 48px;
  }

  .hero-grid{
    gap:38px;
  }

  .hero h1{
    font-size:40px;
    line-height:1.05;
    letter-spacing:-.04em;
  }

  .hero-text{
    margin:22px 0 25px;
    font-size:16px;
    line-height:1.7;
  }

  .hero-points{
    margin-top:24px;
    gap:5px;
    font-size:12px;
  }

  .hero-demo-card{
    transform:none;
    border-radius:20px;
  }

  .demo-company{
    min-height:350px;
  }

  /* TRUST STRIP – 2 x 2 */
  .trust-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .trust-grid>div{
    min-height:118px;
    padding:23px 12px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    border-right:1px solid #edf1f6;
    border-bottom:1px solid #edf1f6;
  }

  .trust-grid>div:nth-child(2n){
    border-right:0;
  }

  .trust-grid strong{
    font-size:20px;
  }

  .trust-grid span{
    margin-top:3px;
    font-size:11px;
  }

  /* GENERAL SECTION SPACING */
  .section{
    padding:62px 0;
  }

  .section-heading{
    margin-bottom:34px;
  }

  .section-heading p{
    font-size:16px;
    line-height:1.65;
  }

  .section h2,
  .final-cta h2{
    font-size:34px;
    line-height:1.08;
  }

  .eyebrow{
    margin-bottom:14px;
    font-size:10px;
  }

  /* FEATURE CARDS */
  .feature-grid{
    gap:14px;
  }

  .feature-card{
    padding:25px 24px;
    border-radius:18px;
  }

  .feature-icon{
    width:44px;
    height:44px;
    margin-bottom:17px;
  }

  .feature-card h3{
    font-size:19px;
  }

  .feature-card p{
    font-size:14px;
    line-height:1.6;
  }

  /* TRADES */
  .trade-grid{
    gap:16px;
  }

  .trade-card{
    padding:25px;
    border-radius:20px;
  }

  /* PERSONALIZATION */
  .personalization-grid{
    gap:36px;
  }

  .personalization-points{
    gap:6px;
  }

  .personalization-points article{
    padding:15px 0;
  }

  .tenant-preview-stack{
    gap:14px;
  }

  .tenant-preview-body{
    min-height:155px;
  }

  /* LIVE DEMO */
  .demo-grid{
    gap:38px;
  }

  .assistant-showcase{
    min-height:280px;
    padding:28px;
    border-radius:22px;
  }

  .assistant-showcase h3{
    margin-top:42px;
    font-size:27px;
  }

  /* SETUP STEPS */
  .steps-grid{
    gap:4px;
  }

  .steps-grid article{
    padding:22px 5px;
  }

  /* PRACTICE */
  .practice-stage{
    margin-top:38px;
    gap:22px;
  }

  .practice-panel{
    padding:16px;
    border-radius:19px;
  }

  .practice-browser,
  .practice-assistant-card,
  .practice-result-card{
    min-height:auto;
  }

  .practice-summary{
    margin-top:28px;
    padding:15px;
  }

  /* DARK LEAD SECTION */
  .lead-showcase-grid{
    gap:32px;
  }

  .lead-card{
    padding:20px;
    border-radius:18px;
  }

  /* PROCESS */
  .process-flow{
    gap:14px;
  }

  .process-step{
    padding:23px;
    border-radius:18px;
  }

  .delivery-grid{
    margin-top:32px;
    gap:16px;
  }

  /* FAQ */
  .faq-wrap details{
    padding:18px 2px;
  }

  .faq-wrap summary{
    padding-right:30px;
    font-size:15px;
  }

  .faq-wrap details p{
    padding-right:10px;
    font-size:14px;
  }

  /* CONTACT */
  .contact-section{
    padding-top:65px;
    padding-bottom:70px;
  }

  .contact-grid{
    gap:36px;
  }

  .contact-copy h2{
    font-size:36px;
  }

  .contact-intro{
    font-size:16px;
  }

  .contact-benefits{
    margin-top:28px;
    gap:18px;
  }

  .contact-card-head h3{
    font-size:25px;
  }

  .contact-field textarea{
    min-height:100px;
  }

  /* FINAL CTA */
  .final-cta{
    padding:55px 0;
  }

  .final-cta-inner{
    gap:25px;
  }

  .final-cta-text{
    font-size:15px;
  }

  .final-cta .button-light{
    width:100%;
    white-space:normal;
    text-align:center;
  }

  /* FOOTER */
  .site-footer{
    padding:35px 0;
  }

  .footer-grid{
    gap:25px;
  }

  .footer-brand img{
    width:140px;
  }
}

@media(max-width:420px){
  .hero h1{
    font-size:38px;
  }

  .section h2,
  .final-cta h2{
    font-size:31px;
  }

  .container{
    width:calc(100% - 24px);
  }
}

/* =========================================================
   CRAFTAGENT – MOBILE FINAL DETAIL PASS
   ========================================================= */

@media(max-width:420px){

  /* etwas harmonischere Hero-Typografie */
  .hero h1{
    font-size:36px;
    line-height:1.07;
  }

  /* zuverlässiger Seitenabstand */
  .section > .container,
  .final-cta > .container{
    width:calc(100% - 28px);
    margin-left:auto;
    margin-right:auto;
  }

  /* Überschriften etwas sicherer auf kleinen Displays */
  .section h2{
    font-size:30px;
    line-height:1.1;
    letter-spacing:-.025em;
  }

  /* Final CTA */
  .final-cta{
    padding:48px 0;
  }

  .final-cta-inner{
    display:grid;
    grid-template-columns:1fr;
    gap:24px;
  }

  .final-cta h2{
    font-size:30px;
    line-height:1.08;
  }

  .final-cta .button-light{
    width:100%;
    min-height:54px;
    padding:15px 18px;
    display:flex;
    align-items:center;
    justify-content:center;
    white-space:normal;
    line-height:1.3;
  }
}

/* FINAL CTA BUTTON – KEEP ARROW TOGETHER */

.final-cta-button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
}

.final-cta-button b{
  flex:0 0 auto;
  font-size:18px;
  line-height:1;
}

@media(max-width:420px){
  .final-cta-button{
    display:flex;
    width:100%;
    gap:8px;
    padding-left:14px;
    padding-right:14px;
    font-size:14px;
  }

  .final-cta-button span{
    white-space:normal;
  }

  .final-cta-button b{
    font-size:17px;
  }
}
