/* ===== LETOUR Germany — Markenfarbe #69b22f, Anthrazit ===== */
:root {
  --green: #69b22f;
  --green-bright: #7ed03c;
  --green-dark: #558f24;
  --ink: #141414;
  --ink-deep: #0f1410;       /* dunkles Anthrazit mit Grünstich für Hero/Dark-Sektionen */
  --ink-soft: #3d3d3d;
  --gray: #6b6b6b;
  --line: #e6e6e3;
  --bg: #ffffff;
  --bg-soft: #f6f6f4;
  --radius: 12px;
  --maxw: 1180px;
  --shadow-card: 0 14px 34px rgba(20,20,20,.08);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
}
h1, h2, h3 { font-family: 'Archivo', sans-serif; line-height: 1.12; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
a, button { cursor: pointer; }
:focus-visible { outline: 2px solid var(--green); outline-offset: 2px; }

.btn {
  display: inline-block;
  background: var(--green);
  color: #fff;
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  padding: 14px 30px;
  border-radius: 7px;
  box-shadow: 0 8px 22px rgba(105,178,47,.32);
  transition: background .2s ease, box-shadow .2s ease, transform .2s ease;
}
.btn:hover { background: var(--green-dark); box-shadow: 0 10px 26px rgba(105,178,47,.42); transform: translateY(-1px); }
.btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
  box-shadow: none;
}
.btn-secondary:hover { background: var(--ink); color: #fff; box-shadow: none; }
.btn-ghost {
  background: rgba(255,255,255,.04);
  color: #fff;
  border: 1px solid rgba(255,255,255,.32);
  box-shadow: none;
  backdrop-filter: blur(4px);
}
.btn-ghost:hover { background: rgba(255,255,255,.12); border-color: #fff; box-shadow: none; }

/* ===== Navbar (dunkel, schwebt über Hero) ===== */
.navbar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(15,20,16,.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav-inner {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; align-items: center; gap: 32px;
  padding: 15px 24px;
}
/* Logo-Lockup — Wortmarke in Markenschrift, gestochen scharf in jeder Größe */
.nav-logo { display: inline-flex; flex-direction: column; text-decoration: none; line-height: 1; }
.logo-word {
  font-family: 'Archivo', sans-serif; font-style: italic; font-weight: 900;
  font-size: 25px; letter-spacing: -.015em; color: var(--green);
  text-transform: uppercase;
}
.logo-word .logo-accent { color: #fff; }
.logo-country {
  font-family: 'Archivo', sans-serif; font-weight: 600;
  font-size: 9px; letter-spacing: .58em; text-transform: uppercase;
  color: rgba(255,255,255,.85); margin-top: 4px; padding-left: 2px;
}
.nav-links { display: flex; gap: 28px; list-style: none; margin-left: auto; }
.nav-links a {
  text-decoration: none; font-size: 15px; font-weight: 500; color: rgba(255,255,255,.78);
  padding: 4px 0; position: relative;
  transition: color .2s ease;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 100%; height: 2px; background: var(--green);
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s ease;
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { transform: scaleX(1); }
.btn-nav { padding: 10px 22px; font-size: 14px; box-shadow: none; }

/* Sprachumschalter */
.lang-switch { position: relative; }
.lang-dd summary {
  list-style: none; cursor: pointer;
  font-family: 'Archivo', sans-serif; font-weight: 600; font-size: 13px;
  letter-spacing: .08em; color: rgba(255,255,255,.85);
  border: 1px solid rgba(255,255,255,.28); border-radius: 6px;
  padding: 8px 12px; user-select: none;
  transition: border-color .2s ease, color .2s ease;
}
.lang-dd summary::-webkit-details-marker { display: none; }
.lang-dd summary::after { content: " ▾"; font-size: 10px; }
.lang-dd summary:hover { color: #fff; border-color: var(--green); }
.lang-dd[open] summary { color: #fff; border-color: var(--green); }
.lang-dd ul {
  position: absolute; right: 0; top: calc(100% + 8px);
  list-style: none; min-width: 150px; z-index: 60;
  background: var(--ink-deep); border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px; padding: 6px; box-shadow: 0 16px 40px rgba(0,0,0,.5);
}
.lang-dd ul a {
  display: block; padding: 9px 14px; border-radius: 6px;
  text-decoration: none; font-size: 14px; color: rgba(255,255,255,.82);
}
.lang-dd ul a:hover { background: rgba(105,178,47,.16); color: #fff; }
.burger { display: none; background: none; border: 0; padding: 8px; }
.burger span { display: block; width: 22px; height: 2px; background: #fff; margin: 5px 0; transition: .2s; }

/* ===== Hero — dunkel, atmosphärisch ===== */
.hero {
  position: relative;
  background:
    radial-gradient(1100px 540px at 78% 30%, rgba(105,178,47,.16), transparent 62%),
    linear-gradient(165deg, #161c17 0%, var(--ink-deep) 55%, #0b0e0c 100%);
  color: #fff;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
/* feines technisches Raster */
.hero-bg::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(900px 600px at 70% 40%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(900px 600px at 70% 40%, #000 30%, transparent 75%);
}
.hero-watermark {
  position: absolute; right: -1.5%; bottom: -6%;
  font-family: 'Archivo', sans-serif; font-weight: 900; font-style: italic;
  font-size: clamp(120px, 19vw, 280px); letter-spacing: -.02em; line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(126,208,60,.13);
  user-select: none; white-space: nowrap;
}
.hero-glow {
  position: absolute; top: 8%; right: 6%;
  width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle, rgba(105,178,47,.22) 0%, transparent 65%);
  filter: blur(10px);
}
.hero-inner {
  position: relative;
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1.08fr .92fr; gap: 48px; align-items: center;
  padding: 88px 24px 80px;
}
.hero-inner > *, .brand-grid > *, .contact-grid > * { min-width: 0; }
.hero-kicker {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: 'Archivo', sans-serif; font-weight: 600; font-size: 12.5px;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--green-bright);
  border: 1px solid rgba(126,208,60,.38);
  background: rgba(105,178,47,.08);
  border-radius: 999px; padding: 7px 16px; margin-bottom: 26px;
}
.kicker-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--green-bright);
  box-shadow: 0 0 10px rgba(126,208,60,.9);
}
.hero h1 { font-size: clamp(34px, 4.6vw, 56px); font-weight: 800; letter-spacing: -.015em; }
.hero h1 em { font-style: normal; color: var(--green-bright); }
.hero-sub { margin: 22px 0 32px; font-size: 17px; color: rgba(255,255,255,.72); max-width: 54ch; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-facts {
  display: flex; gap: 40px; list-style: none;
  margin-top: 44px; padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.hero-facts strong {
  display: block; font-family: 'Archivo', sans-serif; font-weight: 800;
  font-size: 26px; color: #fff; line-height: 1.2;
}
.hero-facts span { font-size: 13px; color: rgba(255,255,255,.55); }
.hero-media { position: relative; }
.hero-media img {
  position: relative;
  max-height: 460px; width: auto; max-width: 100%; object-fit: contain; margin: 0 auto;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,.55)) drop-shadow(0 0 60px rgba(105,178,47,.20));
}

/* ===== Trustbar ===== */
.trustbar { background: #0b0e0c; color: #fff; border-top: 1px solid rgba(255,255,255,.07); }
.trust-inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px;
  padding: 30px 24px;
}
.trust-item { padding-left: 16px; border-left: 2px solid var(--green); }
.trust-item strong { font-family: 'Archivo', sans-serif; font-size: 15px; display: block; }
.trust-item span { font-size: 13px; color: rgba(255,255,255,.55); }

/* ===== Sections ===== */
.section { max-width: var(--maxw); margin: 0 auto; padding: 92px 24px; }
.section-head { max-width: 640px; margin-bottom: 52px; }
.section-head h2, .brand-text h2, .contact-grid h2 { font-size: clamp(27px, 3vw, 38px); font-weight: 800; letter-spacing: -.01em; }
.section-head h2::after, .brand-text h2::after, .contact-grid h2::after {
  content: ""; display: block; width: 52px; height: 4px; border-radius: 2px;
  background: var(--green); margin-top: 16px;
}
.section-head p { margin-top: 16px; color: var(--gray); font-size: 17px; }

/* ===== Produkt-Grid ===== */
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.product-card {
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; text-decoration: none; background: #fff;
  position: relative; overflow: hidden;
  transition: border-color .2s ease, box-shadow .25s ease, transform .25s ease;
}
.product-card::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 3px;
  background: var(--green);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s ease;
}
.product-card:hover { border-color: rgba(105,178,47,.55); box-shadow: var(--shadow-card); transform: translateY(-4px); }
.product-card:hover::after { transform: scaleX(1); }
.product-img {
  background: var(--bg-soft); border-radius: 9px;
  height: 210px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; overflow: hidden;
}
.product-img img {
  max-height: 170px; width: auto; mix-blend-mode: multiply;
  transition: transform .35s ease;
}
.product-card:hover .product-img img { transform: scale(1.06); }
.product-card h3 { font-size: 19px; margin-bottom: 8px; }
.product-card p { font-size: 14.5px; color: var(--gray); margin-bottom: 16px; }
.product-link { font-family: 'Archivo', sans-serif; font-weight: 600; font-size: 14px; color: var(--green-dark); }

/* ===== Marke (dunkel, atmosphärisch) ===== */
.section-dark {
  max-width: none; padding: 0;
  position: relative; overflow: hidden;
  background:
    radial-gradient(900px 480px at 18% 70%, rgba(105,178,47,.13), transparent 62%),
    linear-gradient(160deg, #141a15 0%, var(--ink-deep) 60%, #0b0e0c 100%);
  color: #fff;
}
.dark-bg { position: absolute; inset: 0; pointer-events: none; }
.dark-watermark {
  position: absolute; left: -1%; top: -10%;
  font-family: 'Archivo', sans-serif; font-weight: 900; font-style: italic;
  font-size: clamp(140px, 22vw, 320px); line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.06);
  user-select: none;
}
.dark-glow {
  position: absolute; right: 4%; bottom: -10%;
  width: 480px; height: 480px; border-radius: 50%;
  background: radial-gradient(circle, rgba(105,178,47,.16) 0%, transparent 65%);
  filter: blur(12px);
}
.brand-grid {
  position: relative;
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 64px; align-items: center;
  padding: 96px 24px;
}
.brand-text p { color: rgba(255,255,255,.74); margin: 16px 0; max-width: 60ch; }
.brand-points { list-style: none; margin-top: 28px; }
.brand-points li {
  padding: 11px 0 11px 32px; position: relative;
  border-top: 1px solid rgba(255,255,255,.1); font-size: 15.5px;
}
.brand-points li:last-child { border-bottom: 1px solid rgba(255,255,255,.1); }
.brand-points li::before {
  content: ""; position: absolute; left: 2px; top: 20px;
  width: 14px; height: 8px;
  border-left: 2.5px solid var(--green-bright); border-bottom: 2.5px solid var(--green-bright);
  transform: rotate(-45deg);
}
.brand-media { position: relative; }
.brand-media-ring {
  position: absolute; inset: -8% -4%;
  border: 1px solid rgba(126,208,60,.22); border-radius: 18px;
  transform: rotate(-2deg);
}
.brand-media img {
  position: relative;
  max-height: 430px; width: auto; max-width: 100%; object-fit: contain; margin: 0 auto;
  filter: drop-shadow(0 24px 50px rgba(0,0,0,.5)) drop-shadow(0 0 50px rgba(105,178,47,.16));
}

/* ===== B2B ===== */
.b2b-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.b2b-card {
  background: var(--bg-soft); border-radius: var(--radius); padding: 32px;
  border-top: 3px solid var(--green);
  transition: box-shadow .25s ease, transform .25s ease;
}
.b2b-card:hover { box-shadow: var(--shadow-card); transform: translateY(-3px); }
.b2b-card h3 { font-size: 18px; margin-bottom: 10px; }
.b2b-card p { font-size: 14.5px; color: var(--ink-soft); }
.b2b-cta { margin-top: 46px; display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.b2b-cta-alt { color: var(--gray); font-size: 15px; }
.b2b-cta-alt a { color: var(--ink); font-weight: 600; text-decoration: none; }
.b2b-cta-alt a:hover { color: var(--green-dark); }

/* ===== Kontakt ===== */
.section-contact { border-top: 1px solid var(--line); }
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: start; }
.contact-grid p { margin-top: 16px; color: var(--gray); max-width: 50ch; }
.contact-card {
  font-style: normal; background: var(--ink-deep); color: #fff;
  border-radius: var(--radius); padding: 34px; font-size: 15.5px; line-height: 1.8;
  border-left: 4px solid var(--green);
}
.contact-card a { color: #fff; font-weight: 500; }
.contact-card a:hover { color: var(--green-bright); }

/* ===== Footer ===== */
.footer { background: #0b0e0c; color: rgba(255,255,255,.6); }
.footer-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 44px 24px;
  display: flex; align-items: center; gap: 28px; flex-wrap: wrap;
}
.footer-brand { display: inline-flex; flex-direction: column; line-height: 1; }
.footer-brand .logo-word { font-size: 30px; }
.footer-brand .logo-country { font-size: 10px; }
.footer-claim { width: 100%; margin-top: 14px; font-size: 14px; color: rgba(255,255,255,.55); max-width: 60ch; }
.footer-links { display: flex; flex-wrap: wrap; gap: 12px 22px; list-style: none; margin-left: auto; }
.footer-links a { font-size: 14px; text-decoration: none; color: rgba(255,255,255,.6); transition: color .2s ease; }
.footer-links a:hover { color: var(--green-bright); }
.footer-note { width: 100%; font-size: 13px; color: rgba(255,255,255,.38); }

/* ===== Unterseiten: kompakter dunkler Seitenkopf ===== */
.page-hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(800px 360px at 80% 20%, rgba(105,178,47,.15), transparent 62%),
    linear-gradient(165deg, #161c17 0%, var(--ink-deep) 60%, #0b0e0c 100%);
  color: #fff;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(700px 420px at 75% 30%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(700px 420px at 75% 30%, #000 30%, transparent 75%);
  pointer-events: none;
}
.page-hero-inner { position: relative; max-width: var(--maxw); margin: 0 auto; padding: 64px 24px 56px; }
.page-hero .hero-kicker { margin-bottom: 18px; }
.page-hero h1 { font-size: clamp(30px, 3.6vw, 46px); font-weight: 800; letter-spacing: -.015em; }
.page-hero p.lead { margin-top: 16px; font-size: 17px; color: rgba(255,255,255,.72); max-width: 60ch; }

/* ===== Feature-Reihen (Bild + Text abwechselnd) ===== */
.feature-row {
  display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: center;
  padding: 56px 0; border-top: 1px solid var(--line);
}
.feature-row:first-of-type { border-top: 0; }
.feature-row.flip .feature-media { order: 2; }
.feature-media {
  background: var(--bg-soft); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  padding: 36px; min-height: 320px;
}
.feature-media img { max-height: 300px; width: auto; max-width: 100%; object-fit: contain; mix-blend-mode: multiply; }
.feature-body h2 { font-size: clamp(24px, 2.6vw, 32px); font-weight: 800; letter-spacing: -.01em; }
.feature-body h2::after {
  content: ""; display: block; width: 44px; height: 4px; border-radius: 2px;
  background: var(--green); margin-top: 14px;
}
.feature-body p { margin-top: 16px; color: var(--ink-soft); font-size: 15.5px; }
.feature-specs { list-style: none; margin-top: 20px; }
.feature-specs li {
  padding: 9px 0 9px 30px; position: relative;
  border-top: 1px solid var(--line); font-size: 15px;
}
.feature-specs li:last-child { border-bottom: 1px solid var(--line); }
.feature-specs li::before {
  content: ""; position: absolute; left: 2px; top: 17px;
  width: 13px; height: 7px;
  border-left: 2.5px solid var(--green); border-bottom: 2.5px solid var(--green);
  transform: rotate(-45deg);
}
.feature-body .btn { margin-top: 24px; }

/* CTA-Band am Seitenende */
.cta-band {
  position: relative; overflow: hidden;
  background:
    radial-gradient(700px 320px at 22% 60%, rgba(105,178,47,.18), transparent 62%),
    linear-gradient(160deg, #141a15 0%, var(--ink-deep) 60%, #0b0e0c 100%);
  color: #fff;
}
.cta-band-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 64px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap;
}
.cta-band h2 { font-size: clamp(24px, 2.8vw, 34px); font-weight: 800; }
.cta-band p { margin-top: 8px; color: rgba(255,255,255,.66); }
.cta-band .btn { flex-shrink: 0; }

/* ===== Scroll-Reveal ===== */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; }
}

/* ===== Unterseiten (Impressum / Datenschutz) ===== */
.legal { max-width: 760px; margin: 0 auto; padding: 64px 24px 96px; }
.legal h1 { font-size: 32px; margin-bottom: 28px; }
.legal h2 { font-size: 20px; margin: 32px 0 10px; }
.legal p, .legal li { color: var(--ink-soft); font-size: 15.5px; }

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .hero-inner, .brand-grid, .contact-grid, .feature-row { grid-template-columns: 1fr; }
  .feature-row { gap: 28px; padding: 40px 0; }
  .feature-row.flip .feature-media { order: 0; }
  .feature-media { min-height: 0; }
  .hero-media { order: -1; }
  .hero-media img { max-height: 300px; }
  .hero-watermark { font-size: 120px; bottom: auto; top: 2%; }
  .trust-inner { grid-template-columns: repeat(2, 1fr); }
  .product-grid, .b2b-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-facts { gap: 28px; }
}
@media (max-width: 720px) {
  .nav-links, .btn-nav { display: none; }
  .burger { display: block; margin-left: auto; }
  .nav-links.open {
    display: flex; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: var(--ink-deep); border-bottom: 1px solid rgba(255,255,255,.1);
  }
  .nav-links.open li { border-top: 1px solid rgba(255,255,255,.08); }
  .nav-links.open a { display: block; padding: 15px 24px; }
  .product-grid, .b2b-grid, .trust-inner { grid-template-columns: 1fr; }
  .section { padding: 60px 20px; }
  .hero-inner { padding: 44px 20px 56px; }
  .brand-grid { padding: 60px 20px; }
  .hero-facts { flex-wrap: wrap; }
  .footer-links { margin-left: 0; width: 100%; }
  .footer-inner { gap: 20px; }
  .page-hero-inner { padding: 44px 20px 40px; }
  .cta-band-inner { padding: 48px 20px; }
  .hero-watermark { display: none; }
}
