:root{
  --bg: #ffffff;
  --text: #0b0f12;
  --muted: #535b66;
  --primary: #8bc53f;
  --primary-strong: #73b12b;
  --overlay: rgba(139,197,63,.20);
  --border: #e6e6e6;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(10, 20, 20, .08);
  --headerH: 68px;
}
*{ box-sizing: border-box; }
html,body{ height: 100%; }
body{ margin: 0; font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; background: var(--bg); color: var(--text); line-height: 1.65; padding-top: var(--headerH); }
.container{ width: min(1140px, 92vw); margin: 0 auto; }
.section{ padding: 96px 0; position: relative; }
.section.alt{ background: linear-gradient(180deg,#fff 0%,#f8faf4 100%); }
.muted{ color: var(--muted); }

/* Header */
.site-header{ position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(255,255,255,.95); backdrop-filter: blur(8px); border-bottom:1px solid var(--border); }
.header-inner{ display:flex; align-items:center; justify-content:space-between; padding:12px 0; gap:10px; }
.logo{ height: 34px; }
.nav{ display:flex; align-items:center; gap:16px; flex-wrap:nowrap; }
.nav a{ color: var(--muted); text-decoration:none; margin-left:0; font-weight:700; white-space:nowrap; }
.nav a:hover{ color: var(--text); }
.btn{ display:inline-block; padding:10px 16px; border-radius:999px; border:2px solid var(--primary); text-decoration:none; font-weight:800; letter-spacing:.2px; transition: transform .12s ease, box-shadow .12s ease; }
.btn:hover{ transform: translateY(-1px); box-shadow: 0 8px 18px rgba(115,177,43,.25); }
.btn-primary{ background: linear-gradient(180deg, var(--primary) 0%, var(--primary-strong) 100%); color:#0b130a; }
.btn-ghost{ color: var(--text); background: transparent; border-color: #cfd8cc; }
.btn-primary-green{ background: linear-gradient(180deg, #95c23a 0%, #7ab02a 100%); color:#0b130a; border-color: #95c23a; }
.btn-primary-green:hover{ box-shadow: 0 8px 18px rgba(149,194,58,.25); }
.btn-blue{ background: linear-gradient(180deg, #184A97 0%, #0f2d5f 100%); color:#fff; border-color: #184A97; }
.btn-blue:hover{ box-shadow: 0 8px 18px rgba(24,74,151,.25); }
.btn-lg{ padding: 14px 20px; }

.hamburger{ display:none; flex-direction:column; gap:5px; background:transparent; border:none; cursor:pointer; padding:8px; border-radius:10px; }
.hamburger span{ width:24px; height:3px; background:#3b3f45; display:block; border-radius:3px; }

@media (max-width: 980px){
  .hamburger{ display:flex; }
  .nav{ position: fixed; top: var(--headerH); right: 0; left: 0; background: #ffffff; border-bottom: 1px solid var(--border); box-shadow: 0 10px 24px rgba(0,0,0,.08); padding: 14px 18px; transform: translateY(-120%); opacity: 0; transition: transform .2s ease, opacity .2s ease; flex-wrap:wrap; gap: 12px; }
  .nav.open{ transform: translateY(0); opacity: 1; }
  .nav a{ display:block; padding:8px 10px; }
  .nav .btn{ width: 100%; text-align: center; }
  body.no-scroll{ overflow:hidden; }
}

.kicker{ text-transform: uppercase; letter-spacing: .12em; font-weight: 800; color: #184A97; margin: 0 0 6px; }
.hi{ color: #184A97; }
h2{ font-size: clamp(28px, 4vw, 40px); margin: 0 0 14px; position: relative; }
h2::after{ content:""; display:none; width: 64px; height: 4px; background: linear-gradient(90deg, var(--primary), #b9e36f); border-radius: 999px; margin-top: 10px; }
.copy h1{ font-size: clamp(38px, 6.5vw, 68px); line-height:1.05; margin:0 0 8px; }
.lead{ color: var(--muted); max-width: 70ch; }
.cta{ margin-top: 18px; display:flex; gap:12px; flex-wrap:wrap; }

.badges{ display:flex; gap:10px; list-style:none; padding:0; margin:18px 0 0; flex-wrap:wrap; }
.badge{ display:inline-block; padding:6px 10px; border-radius:999px; background:#eef7e4; border:1px solid #d7eac2; font-weight:700; color:#355a0f; }

/* Split layout */
.split .split-inner{ display:grid; grid-template-columns: 1.08fr 0.92fr; gap:32px; align-items:center; }
.split.left .split-inner{ grid-template-columns: 0.92fr 1.08fr; }
@media (max-width: 980px){ .split .split-inner, .split.left .split-inner{ grid-template-columns: 1fr; } }
.bullets{ margin:0; padding-left: 22px; }
.bullets li{ margin: 8px 0; }
.bullets.icon li::before{ display:none; }

.media{ position: relative; width: 100%; height: min(58vh, 560px); border-radius: 22px; overflow: hidden; box-shadow: var(--shadow); background-image: var(--bg); background-size: cover; background-position: center; }
.media::after{ content:""; position:absolute; inset:0; background: var(--overlay); }

/* Cards, tables */
.grid{ display:grid; gap: 18px; }
.grid-3{ grid-template-columns: repeat(3, minmax(0,1fr)); }
@media (max-width: 900px){ .grid-3{ grid-template-columns: 1fr; } }
.feature{ background:#fff; border:1px solid var(--border); border-radius: var(--radius); padding:18px; box-shadow: var(--shadow); }
.feature.pop{ border-color:#d7eac2; }
.table-wrap{ overflow-x:auto; border:1px solid var(--border); border-radius: 16px; background:#fff; box-shadow: var(--shadow); margin-top: 14px; }
.table-wrap.gloss{ background: linear-gradient(180deg,#fff, #fbfdf7); }
.table{ width:100%; border-collapse:collapse; min-width:680px; }
.table th, .table td{ padding:14px 16px; border-bottom:1px solid var(--border); text-align:left; }
.table thead th{ background:#f1f7ea; font-weight: 800; }

@media (max-width: 760px){
  .table{ min-width: initial; border: 0; }
  .table thead{ display: none; }
  .table tr{ display: block; background:#fff; border:1px solid var(--border); border-radius: 12px; box-shadow: var(--shadow); margin: 10px 0; padding: 6px 0; }
  .table td{ display: flex; align-items: baseline; justify-content: space-between; gap: 14px; padding: 10px 14px; border-bottom: 1px solid var(--border); }
  .table td:last-child{ border-bottom: 0; }
  .table td::before{ content: attr(data-label); flex: 0 0 48%; max-width: 220px; color: var(--muted); font-weight: 800; }
  .table td{ flex: 1 1 auto; }
  .table-wrap{ border: 0; box-shadow: none; background: transparent; }
}

/* Chips */
.chip-row{ display:flex; flex-wrap:wrap; gap:10px; margin-top:12px; }
.chip{ display:inline-block; padding:8px 12px; border-radius:999px; background:#f1f7ea; border:1px solid #d7eac2; font-weight:700; }

/* Partners */
.partners{ display:flex; align-items:center; gap:12px; margin-top:12px; }
.partners img{ height: 30px; }

/* FAQ */
.faq .faq-list details{ background:#fff; border:1px solid var(--border); border-radius: 14px; padding: 14px 16px; margin: 12px 0; box-shadow: var(--shadow); }
.faq summary{ cursor: pointer; font-weight: 800; }
.faq p{ margin: 10px 0 0; color: var(--muted); }

/* Form */
.form-embed{ background:#fff; border:1px solid var(--border); border-radius: 16px; padding: 10px; box-shadow: var(--shadow); }
.form-hint{ color: var(--muted); margin-top: 8px; }

/* Footer */
.site-footer{ padding: 32px 0; border-top:1px solid var(--border); background:#fff; color: var(--muted); }
.footer-inner{ display:flex; justify-content:space-between; align-items:center; gap:16px; flex-wrap:wrap; }
.footer-col a{ color: inherit; }
.footer-col.coop{ display:flex; align-items:center; gap:12px; }
.footer-col.coop img{ height: 26px; }


/* Header dual-logo layout */
.brand{ display: flex; align-items: center; gap: 16px; }
.brand .logo{ height: 34px; vertical-align: middle; }
.logo-eurofins{ height: 32px; flex-shrink: 0; }
@media (max-width: 520px){
  .brand{ gap: 12px; }
  .brand .logo{ height: 28px; }
  .logo-eurofins{ height: 26px; }
}






.section.alt::before{ opacity:.18 }
.section.alt::after{ opacity:.12 }

/* Media wheel image */




/* Small tweak to layer order so text stays above accents */
.section .container{ position: relative; z-index: 2; }


/* Visual tweaks for stronger contrast without extra shapes */
.section.alt{ background: linear-gradient(180deg,#ffffff 0%, #f3f8ec 100%); }
.feature{ background:#fff; border:1px solid #dfe9d2; box-shadow: 0 8px 26px rgba(37,84,16,.06); }
.feature.pop{ border-color:#cfe6b5; }
h2::after{ height: 6px; background: linear-gradient(90deg, #8bc53f 0%, #5aa423 100%); }
.btn-primary{ box-shadow: 0 10px 24px rgba(115,177,43,.28); }
.table thead th{ background:#e9f3db; }


/* Hairline separators between sections */
.section{ position: relative; }
.section + .section::before{
  content:"";
  position:absolute;
  top:0; left:0; right:0;
  height:1px;
  background: linear-gradient(90deg, rgba(0,0,0,0), rgba(124,152,84,.35), rgba(0,0,0,0));
  opacity:.6;
}
@media (max-width: 980px){
  .section + .section::before{ opacity:.45; }
}


/* Subtle wheel background in 'Warum 360°?' */
#nutzen .container{ position: relative; z-index: 2; }


/* Prominent 360° wheel in Hero background */
.hero{ position: relative; }

.hero .container{ position: relative; z-index: 2; }


/* Prominent wheel inside hero media */
.hero .media{ position: relative; }



/* Subtle Eurofins-inspired blue/orange elements */
:root{ --blue:#184A97; --orange:#FF8A00; }

.decor-blue{ position: relative; }
.decor-blue::after{
  content:"";
  position:absolute;
  top: 18px;
  right: clamp(12px, 4vw, 38px);
  width: 160px; height: 80px;
  background-image: radial-gradient(var(--blue) 2px, transparent 2px);
  background-size: 12px 12px;
  opacity:.18;
  pointer-events:none;
  z-index:1;
}

.decor-orange{ position: relative; }
.decor-orange::before{
  content:"";
  position:absolute;
  bottom: 14px; left: clamp(8px, 3vw, 28px);
  width: 180px; height: 10px;
  background: linear-gradient(90deg, var(--orange), rgba(255,138,0,.0));
  border-radius: 999px;
  opacity:.65;
  pointer-events:none;
  z-index:1;
}

.decor-blue .container, .decor-orange .container{ position:relative; z-index:2; }


/* Prominent 360° wheel in Hero */
.hero .media{ position: relative; }
.hero .media{ position: relative; }
.hero .media .hero-wheel{
  position: absolute;
  left: 50%;
  top: 10%;
  transform: translate(-50%, 0);
  width: min(38vw, 420px);
  max-width: 420px;
  height: auto;
  opacity: .72;
  pointer-events: none;
  z-index: 3;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,.16));
}
@media (max-width: 900px){
  .hero .media .hero-wheel{ top: 6%; width: min(58vw, 360px); opacity: .65; }
}
@media (max-width: 900px){
  .hero .media{ position: relative; }
.hero .media .hero-wheel{
  position: absolute;
  left: 50%;
  top: 10%;
  transform: translate(-50%, 0);
  width: min(38vw, 420px);
  max-width: 420px;
  height: auto;
  opacity: .72;
  pointer-events: none;
  z-index: 3;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,.16));
}
@media (max-width: 900px){
  .hero .media .hero-wheel{ top: 6%; width: min(58vw, 360px); opacity: .65; }
}
}


:root{ --blue:#184A97; --orange:#FF8A00; }

/* Top blue band */
.decor-band-blue{ position: relative; }
.decor-band-blue::before{
  content:""; position:absolute; inset:0 auto auto 0;
  height: 12px; width: 46%;
  background: linear-gradient(90deg, var(--blue), rgba(24,74,151,0));
  border-top-left-radius: 14px; border-bottom-right-radius: 14px;
  opacity: .35; pointer-events:none; z-index:1;
}

/* Bottom orange band */
.decor-band-orange{ position: relative; }
.decor-band-orange::after{
  content:""; position:absolute; inset:auto 0 0 auto;
  height: 10px; width: 40%;
  background: linear-gradient(90deg, rgba(255,138,0,0), var(--orange));
  border-top-left-radius: 14px; border-bottom-right-radius: 14px;
  opacity: .55; pointer-events:none; z-index:1;
}

/* Blue dot grid in corners for subtle texture */
.section .container{ position: relative; z-index: 2; }
.section .dot-corner{ position:absolute; width:140px; height:80px; pointer-events:none; opacity:.18; }


/* Global bluish filter & light orange border shadow */
.media{ position: relative; }
.media::before{
  content:"";
  position:absolute; inset:0;
  background: rgba(24,74,151,.06);
  mix-blend-mode: multiply;
  pointer-events:none;
  z-index: 2;
  border-radius: inherit;
}
.media img{ filter: saturate(.98) contrast(1.03) hue-rotate(-8deg); }
.feature, .card, .legal-card, .media{
  box-shadow: 0 10px 28px rgba(255,138,0,.10), 0 2px 12px rgba(255,138,0,.06);
  border-color: rgba(255,138,0,.25);
}




  .cookie-actions{ align-self: stretch; }
  .cookie-actions .btn{ width: 100%; }

 
/* Light blue diagonal in hero media */
.hero .media{ position: relative; overflow: hidden; }
.hero .media::before{
  content:""; position:absolute; inset:0;
  background: linear-gradient(90deg, rgba(24,74,151,.30), rgba(24,74,151,.30));
  /* Steeper diagonal from bottom-left to top-right */
  clip-path: polygon(0% 85%, 100% 25%, 100% 100%, 0% 100%);
  pointer-events:none; z-index: 2;
}
/* Prominent, non-transparent wheel */
.hero .media .hero-wheel{
  position: absolute;
  left: 50%; top: 14%;
  transform: translate(-50%, 0);
  width: min(46vw, 520px);
  height: auto;
  opacity: 1;
  pointer-events: none;
  z-index: 3;
  filter: drop-shadow(0 12px 26px rgba(0,0,0,.18));
}
@media (max-width: 900px){
  .hero .media .hero-wheel{ top: 8%; width: min(64vw, 420px); }
}

/* Orange accent button */
.btn-accent{ background: linear-gradient(180deg, #FF8A00, #e27700); color:#111; border-color:#f3a24a; }
.btn-accent:hover{ box-shadow: 0 10px 26px rgba(255,138,0,.32); transform: translateY(-1px); }

/* Make header Kontakt button orange */
.site-header .nav a.btn-accent{ background: linear-gradient(180deg, #FF8A00, #e27700); color:#111; border-color:#f3a24a; }
.site-header .nav a.btn-accent:hover{ box-shadow: 0 10px 26px rgba(255,138,0,.32); transform: translateY(-1px); }

/* Make header Fernwartung button green */
.site-header .nav a.btn-primary-green{ background: linear-gradient(180deg, #95c23a 0%, #7ab02a 100%); color:#0b130a; border-color: #95c23a; }
.site-header .nav a.btn-primary-green:hover{ box-shadow: 0 8px 18px rgba(149,194,58,.25); transform: translateY(-1px); }


/* Language switcher dropdown */
.lang-switcher{
  position:relative;
  display:flex;
  align-items:center;
  margin-left:16px;
  font-size:13px;
}

.lang-toggle{
  display:flex;
  align-items:center;
  gap:6px;
  border:1px solid var(--border);
  background:#fff;
  padding:4px 10px;
  border-radius:999px;
  cursor:pointer;
  font: inherit;
  line-height:1.2;
}

.lang-toggle .lang-flag{
  width:20px;
  height:14px;
  object-fit:cover;
  border-radius:2px;
}

.lang-caret{
  font-size:10px;
  margin-left:2px;
}

.lang-menu{
  position:absolute;
  top:calc(100% + 6px);
  right:0;
  background:#fff;
  border:1px solid var(--border);
  border-radius:12px;
  box-shadow:0 12px 30px rgba(15,23,42,.18);
  padding:4px;
  display:none;
  z-index:30;
  min-width:140px;
}

.lang-menu.open{
  display:block;
}

.lang-option{
  width:100%;
  display:flex;
  align-items:center;
  gap:8px;
  padding:6px 10px;
  border:none;
  background:transparent;
  cursor:pointer;
  font:inherit;
  border-radius:8px;
}

.lang-option .lang-flag{
  width:20px;
  height:14px;
  object-fit:cover;
  border-radius:2px;
}

.lang-option:hover{
  background:rgba(148,163,184,.12);
}

.lang-option.active{
  background:rgba(248,113,22,.12);
}

@media (max-width: 800px){
  .lang-switcher{
    margin-left:auto;
  }
}

/* Step-by-step guide styles */
.steps-guide{ margin-top: 32px; display: flex; flex-direction: column; gap: 24px; }

.step-item{ display: grid; grid-template-columns: auto 1fr; gap: 24px; align-items: flex-start; }

.step-number{ 
  flex: 0 0 56px; 
  width: 56px; 
  height: 56px; 
  border-radius: 50%; 
  background: linear-gradient(180deg, var(--primary) 0%, var(--primary-strong) 100%);
  color: #fff; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  font-size: 24px; 
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(115,177,43,.25);
}

.step-content h3{ margin: 0 0 8px; font-size: 22px; color: var(--text); }

.step-content p{ margin: 8px 0; color: var(--muted); line-height: 1.6; }

@media (max-width: 768px){
  .step-item{ grid-template-columns: auto 1fr; gap: 16px; }
  .step-number{ width: 48px; height: 48px; font-size: 20px; }
  .step-content h3{ font-size: 18px; }
}

/* PDF Grid und Card Styles */
.lab-header-box{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(24,74,151,0.12), rgba(255,138,0,0.10));
  border: 1px solid rgba(24,74,151,0.12);
  box-shadow: 0 10px 30px rgba(2,6,23,0.06);
  margin-bottom: 32px;
  position: relative;
  overflow: hidden;
}

.lab-brand{
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 260px;
}

.lab-logo{
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(24,74,151,0.25);
  flex-shrink: 0;
}

.lab-logo img{
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.lab-brand-title{
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.lab-brand-title strong{
  font-size: 18px;
  letter-spacing: 0.2px;
  color: var(--text);
}

.lab-brand-title span{
  font-size: 13px;
  color: var(--muted);
}

.lab-header-text{
  display: flex;
  flex-direction: column;
  text-align: right;
}

.lab-header-text h2{
  font-size: 32px;
  margin: 0;
  text-align: right;
}

.lab-sub{
  margin: 4px 0 0;
  text-align: right;
  color: var(--muted);
  font-size: 13px;
}

.lab-header{
  margin-bottom: 32px;
}

.lab-header h2{
  margin-bottom: 8px;
}

.pdf-grid{ 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); 
  gap: 16px; 
  margin-top: 0;
}

.pdf-card{ 
  background: #fff; 
  border: 1px solid rgba(2,6,23,0.06);
  border-radius: 16px; 
  padding: 18px; 
  box-shadow: 0 10px 22px rgba(2,6,23,0.06);
  display: flex; 
  flex-direction: column; 
  justify-content: space-between;
  min-height: 150px;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pdf-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(2,6,23,0.08);
}

.pdf-card::after{
  content:"";
  position:absolute;
  inset:auto -40px -40px auto;
  width:140px; height:140px;
  background: radial-gradient(circle at 30% 30%, rgba(242,140,0,0.20), transparent 60%),
              radial-gradient(circle at 70% 70%, rgba(24,74,151,0.18), transparent 60%);
  transform: rotate(12deg);
  pointer-events: none;
}

.pdf-card h3{ 
  font-size: 15px; 
  margin: 0 0 14px; 
  color: var(--text);
  padding-right: 8px;
  position: relative;
  z-index: 1;
}

.btn-pdf{
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #184A97, #1A5BD6);
  color: #fff;
  padding: 10px 12px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 13px;
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 10px 18px rgba(24,74,151,0.22);
  position: relative;
  z-index: 1;
  transition: filter 0.2s ease;
}

.btn-pdf:hover{
  filter: brightness(1.05);
}

.btn-pdf:focus{
  outline: none;
  box-shadow: 0 0 0 4px rgba(24,74,151,0.18), 0 10px 18px rgba(24,74,151,0.22);
}

.pdf-pill{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--muted);
  margin-top: 10px;
  position: relative;
  z-index: 1;
}

.pdf-dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #FF8A00;
  box-shadow: 0 6px 14px rgba(255,138,0,0.25);
  flex: 0 0 auto;
}

@media (max-width: 768px){
  .lab-header-box{
    flex-direction: column;
    gap: 12px;
  }
  .lab-header-text{
    text-align: left;
  }
  .lab-header-text h2{
    text-align: left;
    font-size: 20px;
  }
  .lab-sub{
    text-align: left;
  }
  .pdf-grid{ grid-template-columns: 1fr; }
  .pdf-card{ padding: 18px; }
}

