/* =========================================
   SETTINGS & DESIGN-VARIABLEN
========================================= */
:root {
  /* Farben & Basis */
  --bg: #e8e8e8;
  --card: #cfcfcf;
  --muted: #6b7280;
  --accent: #2563eb;
  --text: #0f172a;

  /* Layout & Schatten */
  --radius: 14px;
  --shadow: 0 6px 18px rgba(16, 24, 40, 0.06);
  --max-width: 1400px;

  /* Feature-Bilder */
  --feature-img-width: 120px;
  --feature-img-height: 120px;

  --feature-img-width-big: 300px;
  --feature-img-height-big: 300px;

  --feature-img-width-relly-big: 700px;
  --feature-img-width-relly-big: 700px;

  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial;
}

/* =========================================
   GLOBAL-STYLES
========================================= */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 32px;
}

/* =========================================
   NAVIGATION
========================================= */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
}

nav {
  display: flex;
  gap: 16px;
}

nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 10px;
  transition: color 0.2s ease, background 0.2s ease;
}

nav a:hover {
  color: var(--accent);
  background: rgba(37, 99, 235, 0.08);
}

.contact-cta {
  color: var(--accent);
  border: 1px solid rgba(37, 99, 235, 0.15);
}

/* =========================================
   STARTBEREICH
========================================= */
.hero {
  margin-top: 32px;
}

.hero-card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
}

.eyebrow {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 8px;
}

h1 {
  margin: 0 0 12px;
  font-size: 32px;
}

.lead {
  color: var(--muted);
  margin-bottom: 18px;
}

.hero-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cta {
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 10px;
  font-weight: 600;
  transition: background 0.2s ease;
}

.cta:hover {
  background: #1e4ed8;
}

.muted-btn {
  text-decoration: none;
  color: var(--muted);
  padding: 10px 16px;
  border-radius: 10px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  transition: background 0.2s ease;
}

.muted-btn:hover {
  background: rgba(15, 23, 42, 0.03);
}

/* =========================================
   GRID
========================================= */
.grid {
  display: grid;
  gap: 24px;
  /* Hier stellst du ein, wie breit die Kacheln sind */
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  margin-top: 32px;
}

.feature {
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--card);
  border-radius: 12px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(15, 23, 42, 0.03);
  padding: 18px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(16, 24, 40, 0.08);
}

.feature-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 16px;
}

/* =========================================
   GRID BIG
========================================= */

.grid-big {
  display: grid;
  gap: 24px;
  /* Hier stellst du ein, wie breit die Kacheln sind */
  grid-template-columns: repeat(auto-fit, minmax(640px, 1fr));
  margin-top: 32px;
}

.feature {
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--card);
  border-radius: 12px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(15, 23, 42, 0.03);
  padding: 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(16, 24, 40, 0.08);
}

.feature-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 16px;
}

/* =========================================
   GRID relly BIG
========================================= */

.grid-relly-big {
  display: grid;
  gap: 24px;
  /* Hier stellst du ein, wie breit die Kacheln sind */
  grid-template-columns: repeat(auto-fit, minmax(640px, 1fr));
  margin-top: 32px;
}

.feature {
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--card);
  border-radius: 12px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(15, 23, 42, 0.03);
  padding: 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(16, 24, 40, 0.08);
}

.feature-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 16px;
}

/* =========================================
   GRID Sonstieges
========================================= */

.feature h3 {
  margin: 0 0 6px 0;
  font-size: 18px;
}

.feature p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

/* =========================================
  Bilder
========================================= */

.feature-img {
  flex-shrink: 0;
  width: var(--feature-img-width);
  height: var(--feature-img-height);
}

.feature-img-r {
  flex-shrink: 0;
  width: var(--feature-img-width);
  height: var(--feature-img-height);
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.feature-img-big {
  flex-shrink: 0;
  width: var(--feature-img-width-big);
  height: var(--feature-img-height-big);
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.feature-img-relly-big {
  flex-shrink: 0;
  width: var(--feature-img-width-relly-big);
  height: var(--feature-img-height-relly-big);
  /* border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);*/
}

/* responsive fallback */
@media (max-width: 600px) {
  .feature-content {
    flex-direction: column;
    align-items: flex-start;
  }
  .feature-img {
    margin-top: 8px;
    width: 100%;
    height: auto;
  }
}

/* =========================================
   FOOTER
========================================= */
footer {
  margin-top: 48px;
  padding: 18px 0;
  color: var(--muted);
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* =========================================
   RESPONSIVE ANPASSUNGEN
========================================= */
@media (max-width: 600px) {
  h1 {
    font-size: 26px;
  }
  .wrap {
    padding: 20px;
  }
}
