/* ============================================================
   dataLogIX – Stylesheet
   Modern, clean, responsive. Keine externen Abhängigkeiten.
   ============================================================ */

:root {
  --bg: #ffffff;
  --bg-soft: #f8f6f3;
  --ink: #2b2926;
  --ink-soft: #5f5a53;
  --line: #eae6e0;
  --brand: #d66906;
  --brand-dark: #a85102;
  --accent: #e8a13f;
  --gray-letter: #9b9b9b;
  --card: #ffffff;
  --shadow: 0 10px 30px rgba(43, 41, 38, 0.08);
  --radius: 16px;
  --maxw: 1120px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; }

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo {
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-decoration: none;
  color: var(--gray-letter);
  white-space: nowrap;
}

.logo .lx { color: var(--brand); }

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.15s ease;
}

.nav-links a:hover { color: var(--brand); }

.nav-cta {
  background: var(--brand);
  color: #fff !important;
  padding: 9px 18px;
  border-radius: 999px;
  transition: background 0.15s ease;
}

.nav-cta:hover { background: var(--brand-dark); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 420px at 85% -10%, rgba(214, 105, 6, 0.12), transparent 60%),
    radial-gradient(700px 380px at -10% 110%, rgba(232, 161, 63, 0.12), transparent 60%),
    var(--bg);
  padding: 96px 0 88px;
}

.hero-inner { max-width: 760px; }

.eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand);
  background: rgba(214, 105, 6, 0.08);
  border: 1px solid rgba(214, 105, 6, 0.22);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 22px;
}

.hero h1 {
  font-size: clamp(2.1rem, 5vw, 3.3rem);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.hero h1 .grad {
  background: linear-gradient(90deg, var(--brand), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p.lead {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 620px;
  margin-bottom: 34px;
}

.btn-row { display: flex; gap: 14px; flex-wrap: wrap; }

.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  padding: 13px 26px;
  border-radius: 999px;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 6px 18px rgba(214, 105, 6, 0.3);
}

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

.btn-ghost {
  color: var(--ink);
  border: 1.5px solid var(--line);
  background: var(--bg);
}

.btn-ghost:hover { border-color: var(--brand); color: var(--brand); }

/* ---------- Sections ---------- */

section { padding: 84px 0; }

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

.section-head { max-width: 640px; margin-bottom: 48px; }

.section-head h2 {
  font-size: clamp(1.6rem, 3.4vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.section-head p { color: var(--ink-soft); font-size: 1.05rem; }

/* ---------- Leistungen ---------- */

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(43, 41, 38, 0.12);
}

.card .icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(214, 105, 6, 0.12), rgba(232, 161, 63, 0.16));
}

.card .icon svg { width: 26px; height: 26px; stroke: var(--brand); }

.card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; }

.card p { color: var(--ink-soft); font-size: 0.97rem; margin-bottom: 14px; }

.card ul {
  list-style: none;
  color: var(--ink-soft);
  font-size: 0.93rem;
}

.card ul li {
  padding-left: 22px;
  position: relative;
  margin-bottom: 7px;
}

.card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* ---------- Zielgruppen / Für wen ---------- */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.split .card h3 { display: flex; align-items: center; gap: 10px; }

/* ---------- Ablauf ---------- */

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

.step {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 22px;
}

.step .num {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  margin-bottom: 14px;
}

.step h3 { font-size: 1.02rem; font-weight: 700; margin-bottom: 8px; }

.step p { font-size: 0.92rem; color: var(--ink-soft); }

/* ---------- Über uns ---------- */

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-grid p { color: var(--ink-soft); margin-bottom: 16px; }

.facts {
  display: grid;
  gap: 16px;
}

.fact {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  gap: 16px;
  align-items: center;
}

.fact .icon {
  flex: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(214, 105, 6, 0.12), rgba(232, 161, 63, 0.16));
}

.fact .icon svg { width: 22px; height: 22px; stroke: var(--brand); }

.fact strong { display: block; font-size: 0.98rem; }

.fact span { color: var(--ink-soft); font-size: 0.9rem; }

/* ---------- Kontakt ---------- */

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

.contact-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 30px;
  box-shadow: var(--shadow);
}

.contact-card h3 { font-size: 1.1rem; margin-bottom: 14px; }

.contact-card p { color: var(--ink-soft); margin-bottom: 8px; }

.contact-card a { color: var(--brand-dark); text-decoration: none; font-weight: 600; }

.contact-card a:hover { text-decoration: underline; }

address { font-style: normal; color: var(--ink-soft); line-height: 1.7; }

/* ---------- Footer ---------- */

.site-footer {
  background: #211d18;
  color: #beb6ab;
  padding: 48px 0 36px;
  font-size: 0.92rem;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  flex-wrap: wrap;
}

.site-footer .logo { color: #c9c4bd; font-size: 1.2rem; }

.site-footer .logo .lx { color: #f0a24a; }

.footer-links { list-style: none; display: flex; gap: 22px; flex-wrap: wrap; }

.footer-links a { color: #beb6ab; text-decoration: none; }

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

.footer-bottom {
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
  color: #8f887d;
}

/* ---------- Unterseiten (Impressum etc.) ---------- */

.page { padding: 72px 0; min-height: 55vh; }

.page h1 { font-size: 2rem; font-weight: 800; margin-bottom: 28px; letter-spacing: -0.02em; }

.page h2 { font-size: 1.2rem; font-weight: 700; margin: 28px 0 10px; }

.page p { color: var(--ink-soft); margin-bottom: 12px; max-width: 720px; }

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  .cards { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .split, .contact-grid { grid-template-columns: 1fr; }
  .hero { padding: 72px 0 64px; }
}

@media (max-width: 720px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    padding: 12px 24px 20px;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 12px 0; font-size: 1.05rem; }
  .nav-cta { text-align: center; margin-top: 8px; }
  .steps { grid-template-columns: 1fr; }
}
