:root{
  --navy:#101d34;
  --navy-2:#16294a;
  --navy-light:#233657;
  --red:#812636;
  --red-2:#781728;
  --green:#1f9d55;
  --grey-50:#fafbfc;
  --grey-100:#f3f4f7;
  --grey-200:#e5e8ed;
  --grey-400:#9aa4b2;
  --grey-600:#5b6472;
  --ink:#131a26;
  --radius:18px;
  --maxw:1200px;
  --shadow-soft:0 30px 70px -30px rgba(16,29,52,.28);
  font-size:16px;
}
*{box-sizing:border-box;}
html{scroll-behavior:smooth;overflow-x:hidden;}
body{
  max-width:100%;
  margin:0;
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
  color:var(--ink);
  background:#fff;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block;}
a{color:inherit;text-decoration:none;}
.container{max-width:var(--maxw);margin:0 auto;padding:0 28px;}
section{padding:100px 0;}
.eyebrow{
  display:inline-flex;align-items:center;gap:8px;
  font-size:.78rem;font-weight:700;letter-spacing:.14em;text-transform:uppercase;
  color:var(--red);margin-bottom:14px;
}
.eyebrow::before{content:"";width:22px;height:2px;background:var(--red);display:inline-block;}
h1,h2,h3{font-weight:800;letter-spacing:-.01em;color:var(--navy);margin:0 0 18px;}
h2{font-size:clamp(1.7rem,3vw,2.4rem);}
h3{font-size:1.15rem;}
p{margin:0 0 16px;color:var(--grey-600);}
.lead{font-size:1.12rem;color:var(--grey-600);max-width:640px;}
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  padding:14px 26px;border-radius:999px;font-weight:700;font-size:.95rem;
  cursor:pointer;border:2px solid transparent;transition:transform .18s ease,box-shadow .18s ease,background .18s ease,color .18s ease;
  white-space:nowrap;
}
.btn:active{transform:translateY(1px);}
.btn-primary{background:var(--red);color:#fff;box-shadow:0 12px 24px -10px rgba(195,31,46,.55);}
.btn-primary:hover{background:var(--red-2);box-shadow:0 16px 30px -10px rgba(195,31,46,.65);transform:translateY(-2px);}
.btn-ghost{background:transparent;border-color:rgba(16,29,52,.18);color:var(--navy);}
.btn-ghost:hover{border-color:var(--navy);transform:translateY(-2px);}
.btn-ghost.on-dark{border-color:rgba(255,255,255,.35);color:#fff;}
.btn-ghost.on-dark:hover{border-color:#fff;}

/* ---------- NAV ---------- */
header.site-nav{
  position:fixed;top:0;left:0;right:0;z-index:1000;
  background:rgba(255,255,255,.82);backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(16,29,52,.06);
}
.nav-inner{
  max-width:var(--maxw);margin:0 auto;padding:12px 28px;
  display:flex;align-items:center;justify-content:space-between;gap:18px;
}
.brand{display:flex;align-items:center;}
.brand img{height:30px;width:auto;display:block;}
.nav-links{display:flex;align-items:center;gap:30px;}
.nav-links a{font-size:.92rem;font-weight:600;color:var(--navy-light);transition:color .15s;}
.nav-links a:hover{color:var(--red);}
.nav-right{display:flex;align-items:center;gap:14px;}
.lang-switch{
  display:flex;border:1px solid rgba(16,29,52,.18);border-radius:999px;overflow:hidden;font-size:.78rem;font-weight:700;
}
.lang-switch button{
  padding:7px 13px;background:transparent;border:none;cursor:pointer;color:var(--grey-600);letter-spacing:.03em;
}
.lang-switch button.active{background:var(--navy);color:#fff;}
.nav-toggle{display:none;background:none;border:none;cursor:pointer;padding:6px;}
.nav-toggle span{display:block;width:24px;height:2px;background:var(--navy);margin:5px 0;border-radius:2px;}

/* ================= HERO (static, no scroll animation) ================= */
.hero{
  padding:132px 0 0;
  background:radial-gradient(1100px 560px at 50% -12%, #eef1f6 0%, #fff 55%);
}
.hero-inner{display:grid;grid-template-columns:1.05fr .95fr;gap:56px;align-items:center;padding-bottom:60px;}
.hero-text .hero-tagline{font-size:.98rem;font-weight:700;letter-spacing:.03em;color:var(--red);margin-bottom:16px;}
.hero-text h1{font-size:clamp(2.1rem,4.4vw,3.4rem);margin-bottom:8px;}
.hero-text .lead{margin-bottom:30px;}
.hero-cta{display:flex;gap:14px;flex-wrap:wrap;}
.hero-media .hero-frame{
  border-radius:26px;overflow:hidden;background:#fff;
  box-shadow:0 50px 100px -30px rgba(10,18,36,.35), 0 0 0 1px rgba(16,29,52,.06);
}
.hero-media img{width:100%;height:auto;display:block;}

.hardfacts-row{border-top:1px solid var(--grey-200);padding:34px 0;}
.hardfacts-row .container{display:grid;grid-template-columns:repeat(6,1fr);gap:24px;}
.hardfact{display:flex;flex-direction:column;justify-content:center;}
.hardfact b{display:block;font-size:1.28rem;color:var(--navy);font-weight:800;}
.hardfact span{font-size:.74rem;color:var(--grey-600);font-weight:600;}
.hardfact .hf-label{display:block;font-size:.62rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:var(--red);margin-bottom:4px;}

/* ================= SHOWCASE (static grid, reuses .product-card look) ================= */
.showcase-section{background:#fff;}
.showcase-section .section-head{margin:0 auto 52px;text-align:center;}
.showcase-section .eyebrow{justify-content:center;}
.product-grid.showcase-grid{grid-template-columns:repeat(4,1fr);}

/* ================= FLOATING GRID ================= */
.floating-wrap{background:var(--grey-100);padding:120px 0;}
.floating-grid{
  display:grid;grid-template-columns:repeat(3,1fr);gap:28px;max-width:1040px;margin:56px auto 0;
}
.float-card{
  background:#fff;border-radius:22px;padding:26px;box-shadow:0 20px 45px -25px rgba(16,29,52,.25);
}
.float-card .fc-media{height:150px;border-radius:14px;overflow:hidden;background:linear-gradient(150deg,var(--navy),#233657);margin-bottom:16px;display:flex;align-items:center;justify-content:center;}
.float-card .fc-media svg{width:56px;height:56px;stroke:var(--red);}
.float-card .fc-media img{width:100%;height:100%;object-fit:cover;}
.float-card.cta{background:linear-gradient(155deg,var(--navy),#0c1729);}
.float-card.cta h4{color:#fff;}
.float-card.cta p{color:#93a0b9;}
.float-card h4{margin:0 0 6px;font-size:1rem;color:var(--navy);}
.float-card p{font-size:.85rem;margin:0;}

/* ---------- USP / TRUST BAR ---------- */
.trust{background:var(--navy);padding:44px 0;}
.trust .container{display:grid;grid-template-columns:repeat(3,1fr);gap:28px;}
.trust-item{display:flex;align-items:flex-start;gap:14px;color:#dbe1ec;}
.trust-item svg{width:26px;height:26px;stroke:var(--red);flex-shrink:0;margin-top:2px;}
.trust-item b{display:block;color:#fff;font-size:1.02rem;font-weight:800;margin-bottom:3px;}
.trust-item span{font-size:.84rem;color:#a9b3c8;font-weight:500;}

/* ---------- PRODUCTS GRID (detail cards) ---------- */
.products{background:#fff;}
.section-head{max-width:680px;margin-bottom:52px;}
.product-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:26px;}
.product-card{
  background:#fff;border-radius:var(--radius);overflow:hidden;border:1px solid var(--grey-200);
  transition:transform .2s ease, box-shadow .2s ease;scroll-margin-top:100px;
}
.product-card:hover{transform:translateY(-5px);box-shadow:var(--shadow-soft);}
.product-card .pc-media{height:190px;overflow:hidden;background:linear-gradient(150deg,var(--navy),#233657);display:flex;align-items:center;justify-content:center;}
.product-card .pc-media svg{width:64px;height:64px;stroke:var(--red);}
.product-card .pc-media img{width:100%;height:100%;object-fit:cover;}
.pc-body{padding:22px 22px 26px;}
.pc-tag{font-size:.7rem;font-weight:700;letter-spacing:.08em;text-transform:uppercase;color:var(--red);margin-bottom:8px;display:block;}
.pc-body h3{margin-bottom:8px;}
.pc-body p{font-size:.92rem;margin-bottom:0;}
.products-cta{
  margin-top:40px;padding:36px 40px;border-radius:22px;
  background:linear-gradient(155deg,var(--navy),#0c1729);
  display:flex;align-items:center;justify-content:space-between;gap:24px;flex-wrap:wrap;
}
.products-cta h3{color:#fff;margin:0 0 6px;}
.products-cta p{color:#93a0b9;margin:0;max-width:480px;}

/* ---------- SERVICES (Dienstleistungen) ---------- */
.services{background:#fff;}
.services-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:28px;margin-top:44px;}
.service-card{
  background:var(--grey-50);border:1px solid var(--grey-200);border-radius:20px;padding:36px 32px;
  transition:border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.service-card:hover{border-color:var(--red);box-shadow:0 20px 40px -25px rgba(16,29,52,.25);transform:translateY(-3px);}
.service-icon{width:52px;height:52px;border-radius:14px;background:linear-gradient(155deg,var(--navy),#233657);display:flex;align-items:center;justify-content:center;margin-bottom:20px;}
.service-icon svg{width:26px;height:26px;stroke:var(--red);}
.service-card h3{margin-bottom:10px;}
.service-card p{margin:0;font-size:.94rem;}

/* ---------- VARIANTS & POSSIBILITIES ---------- */
.variants{margin-top:64px;padding-top:56px;border-top:1px solid var(--grey-200);}
.variants .section-head{margin-bottom:36px;}
.variants-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;}
.variant-card{
  display:flex;gap:16px;align-items:flex-start;padding:22px;border-radius:16px;
  background:var(--grey-50);border:1px solid var(--grey-200);
  transition:border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.variant-card:hover{border-color:var(--red);box-shadow:0 16px 32px -22px rgba(16,29,52,.25);transform:translateY(-2px);}
.variant-icon{flex-shrink:0;width:42px;height:42px;border-radius:12px;background:linear-gradient(155deg,var(--navy),#233657);display:flex;align-items:center;justify-content:center;}
.variant-icon svg{width:21px;height:21px;stroke:var(--red);}
.variant-card h4{margin:0 0 6px;font-size:.96rem;color:var(--navy);font-weight:800;}
.variant-card p{margin:0;font-size:.85rem;color:var(--grey-600);}

/* ---------- ABOUT / GESCHICHTE (timeline) ---------- */
.about{background:var(--grey-100);}
.about .section-head{margin-bottom:44px;}
.timeline{position:relative;max-width:820px;margin:0 auto;}
.timeline::before{content:"";position:absolute;left:50%;top:6px;bottom:6px;width:2px;background:var(--grey-200);transform:translateX(-50%);}
.tl-row{position:relative;display:grid;grid-template-columns:1fr 1fr;column-gap:48px;margin-bottom:38px;}
.tl-row:last-child{margin-bottom:0;}
.tl-row::before{content:"";position:absolute;left:50%;top:22px;width:15px;height:15px;border-radius:50%;background:var(--red);transform:translateX(-50%);box-shadow:0 0 0 5px #fff,0 0 0 6px var(--grey-200);z-index:2;}
.tl-card{background:#fff;border:1px solid var(--grey-200);border-radius:16px;padding:22px 26px;box-shadow:0 8px 20px -14px rgba(16,29,52,.25);}
.tl-row.tl-left .tl-card{grid-column:1;}
.tl-row.tl-right .tl-card{grid-column:2;grid-row:1;}
.tl-year{font-size:.78rem;font-weight:800;letter-spacing:.08em;color:var(--red);margin-bottom:6px;}
.tl-card h4{margin:0 0 6px;font-size:1.05rem;color:var(--navy);}
.tl-card p{margin:0;font-size:.92rem;}
.about-today{max-width:900px;margin:44px auto 0;padding:28px 32px;background:#fff;border-radius:18px;border:1px solid var(--grey-200);}
.about-today p{margin:0;}

/* ---------- WHY (3 USP pillars) ---------- */
.why{background:var(--navy);color:#fff;}
.why .eyebrow{color:var(--red);}
.why .eyebrow::before{background:var(--red);}
.why h2{color:#fff;}
.why-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;margin-top:44px;}
.why-card{background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.1);border-radius:18px;padding:32px 26px;}
.why-card .why-num{font-size:.74rem;font-weight:800;letter-spacing:.12em;color:var(--red);margin-bottom:14px;}
.why-card h3{color:#fff;font-size:1.2rem;margin-bottom:12px;}
.why-card p{color:#a9b3c8;font-size:.9rem;margin:0;}

/* ---------- INDUSTRIES ---------- */
.industries{background:#fff;}
.chip-row{display:flex;flex-wrap:wrap;gap:12px;margin-top:8px;}
.chip{padding:10px 18px;border-radius:999px;background:var(--grey-100);border:1px solid var(--grey-200);font-size:.88rem;font-weight:600;color:var(--navy-light);}

/* ---------- CONTACT ---------- */
.contact{background:var(--grey-100);}
.contact .container{display:grid;grid-template-columns:.9fr 1.1fr;gap:56px;align-items:start;}
.contact-info-card{background:linear-gradient(155deg,var(--navy),#0c1729);color:#fff;border-radius:20px;padding:32px;}
.contact-info-card h3{color:#fff;}
.contact-row{display:flex;gap:14px;align-items:flex-start;padding:14px 0;border-top:1px solid rgba(255,255,255,.12);}
.contact-row:first-of-type{border-top:none;}
.contact-row svg{width:20px;height:20px;stroke:var(--red);flex-shrink:0;margin-top:2px;}
.contact-row b{display:block;font-size:.82rem;color:#93a0b9;font-weight:700;margin-bottom:3px;}
.contact-row span{font-size:.95rem;}
.contact-note{font-size:.78rem;color:#93a0b9;margin-top:18px;line-height:1.5;}
.contact-form{display:flex;flex-direction:column;gap:16px;background:#fff;padding:28px;border-radius:20px;border:1px solid var(--grey-200);}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:16px;}
.contact-form label{font-size:.82rem;font-weight:700;color:var(--navy);margin-bottom:6px;}
.contact-form input,.contact-form textarea{
  width:100%;padding:13px 14px;border-radius:10px;border:1.5px solid var(--grey-200);
  font-family:inherit;font-size:.94rem;background:var(--grey-50);color:var(--ink);transition:border-color .15s;
}
.contact-form input:focus,.contact-form textarea:focus{outline:none;border-color:var(--red);}
.contact-form textarea{resize:vertical;min-height:120px;}


.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-privacy {
  font-size: 0.9rem;
  margin: 8px 0;
}

.checkbox-label {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 8px;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin: 3px 0 0 0;
}

.checkbox-label span {
  display: block;
}


/* ---------- FOOTER ---------- */
footer{background:#0c1526;color:#93a0b9;padding:56px 0 26px;}
.footer-top{display:flex;justify-content:space-between;flex-wrap:wrap;gap:36px;padding-bottom:36px;border-bottom:1px solid rgba(255,255,255,.08);}
.footer-brand img{height:26px;width:auto;margin-bottom:14px;}
.footer-brand p{color:#7c879e;font-size:.85rem;max-width:300px;margin:0;}
.footer-cols{display:flex;gap:60px;flex-wrap:wrap;}
.footer-col h5{color:#fff;font-size:.82rem;letter-spacing:.05em;text-transform:uppercase;margin:0 0 14px;}
.footer-col a{display:block;font-size:.88rem;color:#93a0b9;margin-bottom:10px;transition:color .15s;}
.footer-col a:hover{color:#fff;}
.footer-bottom{display:flex;justify-content:space-between;flex-wrap:wrap;gap:10px;padding-top:22px;font-size:.8rem;color:#657089;}

/* ---------- RESPONSIVE ---------- */
@media (max-width:980px){
  .contact .container{grid-template-columns:1fr;}
  .why-grid{grid-template-columns:1fr;}
  .product-grid{grid-template-columns:repeat(2,1fr);}
  .floating-grid{grid-template-columns:repeat(2,1fr);}
  .trust .container{grid-template-columns:1fr;}
  .hero-inner{grid-template-columns:1fr;gap:36px;}
  .hero-media{order:-1;max-width:460px;margin:0 auto;}
  .hardfacts-row .container{grid-template-columns:repeat(3,1fr);row-gap:22px;}
  .product-grid.showcase-grid{grid-template-columns:repeat(2,1fr);}
  .variants-grid{grid-template-columns:repeat(2,1fr);}
}
@media (max-width:680px){
  section{padding:64px 0;}
  .nav-cta-btn{display:none;}
  .nav-links{
    display:none;position:absolute;top:100%;left:0;right:0;
    flex-direction:column;gap:0;background:#fff;border-bottom:1px solid var(--grey-200);
    box-shadow:0 16px 24px -12px rgba(16,29,52,.18);
  }
  .nav-links.open{display:flex;}
  .nav-links a{padding:14px 28px;border-top:1px solid var(--grey-200);}
  .nav-toggle{display:block;}
  .product-grid{grid-template-columns:1fr;}
  .floating-grid{grid-template-columns:1fr;}
  .form-row{grid-template-columns:1fr;}
  .footer-top{flex-direction:column;}
  .hero{padding-top:112px;}
  .hero-cta{flex-direction:column;align-items:stretch;}
  .hero-cta .btn{width:100%;}
  .hardfacts-row .container{grid-template-columns:repeat(2,1fr);}
  .product-grid.showcase-grid{grid-template-columns:1fr;}
  .services-grid{grid-template-columns:1fr;}
  .variants-grid{grid-template-columns:1fr;}
  .products-cta{flex-direction:column;align-items:flex-start;}
  .timeline::before{left:20px;}
  .tl-row{grid-template-columns:1fr;column-gap:0;padding-left:46px;margin-bottom:28px;}
  .tl-row::before{left:20px;top:22px;}
  .tl-row.tl-left .tl-card,.tl-row.tl-right .tl-card{grid-column:1;}
}



#contactFormSuccess {
  display: none;
  max-width: 480px;
  margin: 40px auto;
  padding: 32px 24px;
  background-color: #e6f7ec;
  border: 1px solid #34c759;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(52, 199, 89, 0.15);
  text-align: center;
  color: #1e7a3d;
  font-size: 1.15rem;
  font-weight: 600;
  animation: fadeInUp 0.4s ease-out;
}

#contactFormSuccess::before {
  content: "✓";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  background-color: #34c759;
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
  border-radius: 50%;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}







.legal-hero{background:linear-gradient(160deg,var(--navy),#0c1729);padding:72px 0 54px;margin-top: 72px;}
.legal-hero .eyebrow{display:inline-flex;align-items:center;gap:8px;font-size:.78rem;font-weight:700;letter-spacing:.14em;text-transform:uppercase;color:var(--red);margin-bottom:14px;}
.legal-hero .eyebrow::before{content:"";width:22px;height:2px;background:var(--red);display:inline-block;}
.legal-hero h1{font-size:clamp(1.8rem,4vw,2.6rem);font-weight:800;color:#fff;margin:0 0 10px;letter-spacing:-.01em;}
.legal-hero p{color:#a9b3c8;font-size:1rem;margin:0;max-width:640px;}

main{padding:56px 0 100px;}
.legal-body{max-width:820px;margin:0 auto;}
.legal-body h2{font-size:1.3rem;font-weight:800;color:var(--navy);margin:44px 0 14px;letter-spacing:-.01em;}
.legal-body h2:first-child{margin-top:0;}
.legal-body h3{font-size:1.05rem;font-weight:700;color:var(--navy);margin:28px 0 10px;}
.legal-body h4{font-size:.95rem;font-weight:700;color:var(--navy-light);margin:22px 0 8px;}
.legal-body p{color:var(--grey-600);font-size:.96rem;margin:0 0 14px;}
.legal-body ul{color:var(--grey-600);font-size:.96rem;margin:0 0 14px;padding-left:22px;}
.legal-body li{margin-bottom:6px;}
.legal-body a.inline{color:var(--red);font-weight:600;text-decoration:underline;text-decoration-color:rgba(195,31,46,.35);}
.legal-body strong{color:var(--navy);}
.legal-note{background:var(--grey-100);border-radius:14px;padding:20px 22px;margin:0 0 34px;font-size:.9rem;color:var(--grey-600);}
.legal-note b{color:var(--navy);}
.addr-block{background:var(--grey-100);border-radius:14px;padding:24px 26px;margin:0 0 30px;}
.addr-block p{margin:0 0 4px;color:var(--ink);}
.addr-block .co{font-weight:800;color:var(--navy);margin-bottom:8px;}

footer{background:#0c1526;color:#93a0b9;padding:56px 0 26px;}
.footer-top{display:flex;justify-content:space-between;flex-wrap:wrap;gap:36px;padding-bottom:36px;border-bottom:1px solid rgba(255,255,255,.08);}
.footer-brand img{height:26px;width:auto;margin-bottom:14px;}
.footer-brand p{color:#7c879e;font-size:.85rem;max-width:300px;margin:0;}
.footer-cols{display:flex;gap:60px;flex-wrap:wrap;}
.footer-col h5{color:#fff;font-size:.82rem;letter-spacing:.05em;text-transform:uppercase;margin:0 0 14px;}
.footer-col a{display:block;font-size:.88rem;color:#93a0b9;margin-bottom:10px;transition:color .15s;}
.footer-col a:hover{color:#fff;}
.footer-bottom{display:flex;justify-content:space-between;flex-wrap:wrap;gap:10px;padding-top:22px;font-size:.8rem;color:#657089;}

@media (max-width:680px){
  .legal-hero{padding:56px 0 40px;}
  main{padding:40px 0 70px;}
  .footer-top{flex-direction:column;}
}
