:root{
  --lux-green:#5E7244;
  --lux-green-dark:#4e5f39;
  --lux-soft:#e8ede1;
  --lux-text:#2b2f2a;
  --lux-muted:#6b7466;
  --lux-border:#e2e6de;
  --radius:18px;
  --lux-shadow-soft:0 10px 30px rgba(0,0,0,0.08);
  --lux-shadow-hover:0 18px 40px rgba(0,0,0,0.12);
}

*{box-sizing:border-box}

body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--lux-text);
  background:#fff;
  line-height:1.6;
}

img{
  max-width:100%;
  height:auto;
  display:block;
}

.wrap{
  max-width:1100px;
  margin:50px auto;
  padding:0 20px;
}

h1,h2,h3,h4{margin:0}
p{margin:0 0 14px 0; color:var(--lux-muted)}
ul{margin:10px 0 0 18px; color:var(--lux-muted)}
li{margin:6px 0}

.cta{
  background:var(--lux-soft);
  border-radius:var(--radius);
  padding:34px;
  border:1px solid rgba(0,0,0,.03);
  box-shadow:0 2px 6px rgba(0,0,0,.04);
  margin-bottom:24px;
}

.card{
  background:#fff;
  border:1px solid var(--lux-border);
  border-radius:var(--radius);
  padding:30px;
  margin-top:22px;
  box-shadow:0 2px 6px rgba(0,0,0,.03);
}

.cta h1{
  font-size:clamp(28px,3.2vw,42px);
  font-weight:800;
  color:var(--lux-green);
  margin-bottom:12px;
  line-height:1.12;
}

.card h2{
  font-size:26px;
  color:var(--lux-green);
  margin-bottom:14px;
  line-height:1.2;
}

.card h3{
  font-size:18px;
  margin-bottom:8px;
}

.card h4{
  font-size:15px;
  margin-bottom:6px;
  color:var(--lux-text);
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:14px 20px;
  border-radius:12px;
  background:var(--lux-green);
  color:#fff;
  text-decoration:none;
  font-weight:700;
  font-size:15px;
  border:0;
  cursor:pointer;
  box-shadow:0 8px 16px rgba(94,114,68,.2);
  transition:.18s ease;
}

.btn:hover{
  background:var(--lux-green-dark);
  transform:translateY(-1px);
}

.btn-secondary{
  background:#fff;
  color:var(--lux-green);
  border:1px solid var(--lux-border);
  box-shadow:none;
}

.kicker{
  display:inline-block;
  padding:7px 12px;
  border-radius:999px;
  background:rgba(94,114,68,.12);
  color:var(--lux-green);
  font-weight:700;
  font-size:12px;
  margin-bottom:10px;
}

.link-box{
  display:inline-block;
  margin-top:10px;
  color:var(--lux-green);
  font-weight:700;
  text-decoration:none;
}

.link-box:hover{
  text-decoration:underline;
}

.grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:24px;
  margin-top:18px;
}

.grid-3{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:24px;
  margin-top:18px;
}

.mini{
  border:1px solid var(--lux-border);
  border-radius:14px;
  padding:16px;
  background:#fff;
  transition:transform .18s ease, box-shadow .18s ease;
}

.mini:hover{
  transform:translateY(-2px);
  box-shadow:0 6px 14px rgba(0,0,0,.05);
}

.mini p{
  font-size:14px;
  margin:0;
}

.mini-image{
  width:100%;
  border-radius:12px;
  margin-bottom:12px;
  border:1px solid rgba(0,0,0,.05);
}

.split{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:24px;
  align-items:center;
}

.split img{
  width:100%;
  border-radius:14px;
  object-fit:cover;
  box-shadow:0 8px 18px rgba(0,0,0,.06);
}

.bullets{
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:14px;
  margin-top:18px;
}

.bullet{
  font-size:14px;
  color:var(--lux-muted);
}

.faq{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.faq .q{
  font-weight:800;
  color:var(--lux-text);
  margin-bottom:6px;
}

.faq .a{
  color:var(--lux-muted);
  margin:0;
}

.section{
  margin-top:28px;
}

.profile{
  display:grid;
  grid-template-columns:180px 1fr;
  gap:22px;
  align-items:center;
}

.profile img{
  width:180px;
  aspect-ratio:1/1;
  object-fit:cover;
  border-radius:18px;
  border:1px solid var(--lux-border);
}

/* Header */
.header{
  position:sticky;
  top:0;
  background:#fff;
  z-index:1000;
  border-bottom:1px solid var(--lux-border);
}

.nav-wrap{
  max-width:1100px;
  margin:auto;
  padding:14px 20px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}

.logo-img{
  height:42px;
  width:auto;
}

.nav{
  display:flex;
  gap:26px;
}

.nav a{
  text-decoration:none;
  color:var(--lux-text);
  font-weight:600;
  font-size:15px;
  transition:.15s;
}

.nav a:hover{
  color:var(--lux-green);
}

.nav-cta .btn{
  padding:10px 14px;
  font-size:14px;
}

.menu-toggle{
  display:none;
  font-size:22px;
  cursor:pointer;
}

.mobile-menu{
  display:none;
  flex-direction:column;
  padding:14px 20px;
  gap:12px;
  border-top:1px solid var(--lux-border);
}

.mobile-menu a{
  text-decoration:none;
  color:var(--lux-text);
  font-weight:600;
}

.mobile-menu.active{
  display:flex;
}

/* Hero refined */
.hero-refined,
.applications-refined{
  display:flex;
  flex-direction:column;
  gap:22px;
}

.hero-refined-head,
.applications-head{
  width:100%;
}

.hero-refined h1,
.applications-refined h2{
  max-width:900px;
}

.hero-refined-top{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:34px;
  align-items:start;
}

.applications-top{
  display:grid;
  grid-template-columns:40% 60%;
  gap:34px;
  align-items:start;
}

.hero-refined-copy,
.applications-copy{
  display:flex;
  flex-direction:column;
  gap:18px;
  min-width:0;
}

.hero-refined-copy p,
.applications-copy p{
  margin:0;
}

.hero-facts-inline{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:14px;
}

.hero-fact{
  background:#fff;
  border:1px solid rgba(94,114,68,0.14);
  border-radius:14px;
  padding:12px 14px;
  box-shadow:var(--lux-shadow-soft);
  font-size:.95rem;
  line-height:1.45;
}

.hero-fact strong{
  display:block;
  color:var(--lux-green);
  margin-bottom:4px;
  font-size:.95rem;
}

.hero-refined-actions{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:14px;
  width:100%;
  margin-top:4px;
}

.hero-refined-actions .btn{
  width:100%;
  min-height:52px;
  text-align:center;
  justify-content:center;
  box-shadow:var(--lux-shadow-soft);
}

.hero-refined-bottom,
.applications-bottom{
  width:100%;
  margin-top:8px;
}

.hero-refined-bullets{
  width:100%;
}

.hero-image,
.applications-image{
  display:flex;
  min-width:0;
}

.hero-refined-image img{
  width:100%;
  height:100%;
  min-height:420px;
  object-fit:cover;
  border-radius:18px;
  box-shadow:var(--lux-shadow-soft);
  transition:transform .22s ease, box-shadow .22s ease;
}

.applications-image img{
  width:100%;
  height:auto;
  object-fit:cover;
  border-radius:18px;
  box-shadow:var(--lux-shadow-soft);
  transition:transform .22s ease, box-shadow .22s ease;
}

.hero-refined-image img:hover,
.applications-image img:hover{
  transform:translateY(-3px);
  box-shadow:var(--lux-shadow-hover);
}

.applications-grid{
  margin-top:0;
  align-items:stretch;
}

.applications-grid .mini{
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
}

.nda-box{
  margin-top:24px;
  padding:20px;
  background:#f8f9f7;
  border:1px solid #e3e6df;
  border-radius:14px;
  box-shadow:var(--lux-shadow-soft);
}

/* Responsive */
@media (max-width:900px){
  .grid-3{
    grid-template-columns:1fr 1fr;
  }

  .hero-refined-top,
  .applications-top,
  .split{
    grid-template-columns:1fr;
    gap:22px;
  }

  .hero-facts-inline,
  .hero-refined-actions,
  .bullets{
    grid-template-columns:1fr;
  }

  .hero-refined-image img{
    min-height:260px;
  }

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

@media (max-width:800px){
  .nav{
    display:none;
  }

  .nav-cta{
    display:none;
  }

  .menu-toggle{
    display:block;
  }
}

@media (max-width:720px){
  .grid,
  .grid-3{
    grid-template-columns:1fr;
  }

  .profile img{
    width:150px;
  }
}

@media (max-width:520px){
  .wrap{
    margin:30px auto;
  }

  .cta,
  .card{
    padding:24px;
  }

  .btn{
    width:100%;
  }
}
/* =========================
   FOOTER LUX3D
========================= */

.site-footer{
  margin-top:50px;
  background:#f6f8f3;
  border-top:1px solid var(--lux-border);
}

.footer-inner{
  max-width:1100px;
  margin:auto;
  padding:40px 20px;
}

/* TOP GRID */
.footer-top{
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1fr;
  gap:30px;
  margin-bottom:30px;
}

/* SPALTEN */
.footer-column h3{
  color:var(--lux-green);
  font-size:18px;
  margin-bottom:12px;
}

.footer-column h4{
  color:var(--lux-text);
  font-size:15px;
  margin-bottom:10px;
}

/* TEXT */
.footer-column p{
  font-size:14px;
  line-height:1.5;
  color:var(--lux-muted);
}

/* LINKS */
.footer-column a{
  display:block;
  font-size:14px;
  color:var(--lux-muted);
  text-decoration:none;
  margin:4px 0;
  transition:0.15s;
}

.footer-column a:hover{
  color:var(--lux-green);
  transform:translateX(2px);
}

/* LISTEN */
.footer-column ul{
  list-style:none;
  padding:0;
  margin:0;
}

/* CONTACT BLOCK */
.footer-contact{
  margin-bottom:14px;
}

/* BOTTOM */
.footer-bottom{
  border-top:1px solid var(--lux-border);
  padding-top:16px;
  font-size:13px;
  color:var(--lux-muted);
  display:flex;
  flex-direction:column;
  gap:6px;
}

/* SEO TEXT */
.footer-seo-text{
  max-width:800px;
  margin-bottom:10px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width:900px){

  .footer-top{
    grid-template-columns:1fr 1fr;
    gap:24px;
  }

}

@media (max-width:600px){

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

  .footer-bottom{
    text-align:left;
  }

}
@media (max-width:800px){
  .nav{
    display:none;
  }

  .nav-cta{
    display:none;
  }

  .menu-toggle{
    display:block;
  }

  .mobile-menu.active{
    display:flex;
  }
}
/* TRUST GRID */
.trust-grid {
  gap: 24px;
}

/* TRUST BOX */
.trust-box {
  background: #fff;
  border: 1px solid var(--lux-border);
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

/* REVIEW GRID */
.review-grid {
  gap: 24px;
}

/* REVIEW BOX */
.review-box {
  background: #fff;
  border: 1px solid var(--lux-border);
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

/* STARS */
.review-stars {
  color: var(--lux-green);
  font-size: 20px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

/* AUTHOR */
.review-author {
  margin-top: 12px;
  font-size: 14px;
  color: var(--lux-muted);
}
.split {
  grid-template-columns: 60% 40%;
}

.about-img {
  max-width: 350px;
  margin-left: auto;
}