:root {
  --bg: #f4f7f4;
  --surface: #ffffff;
  --surface-soft: #f8faf8;
  --border: #dde5dd;
  --text: #243127;
  --text-soft: #5f6f63;
  --accent: #406b4f;
  --accent-dark: #31513c;
  --shadow: 0 14px 40px rgba(24, 39, 28, 0.08);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 14px;
  --max-width: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top right, #eef5ef 0%, transparent 30%),
    linear-gradient(180deg, #f8fbf8 0%, #f3f7f3 100%);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.page {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  padding: 28px 0 60px;
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 28px;
  align-items: stretch;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero__image {
  min-height: 100%;
  background: #e9efe9;
}

.hero__image img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.hero__content {
  padding: 48px 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  margin: 0 0 10px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.lead {
  margin: 20px 0 0;
  font-size: 1.08rem;
  color: var(--text-soft);
}

.hero__box {
  margin-top: 28px;
  padding: 24px;
  background: var(--surface-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.hero__box h2 {
  margin: 0 0 8px;
  font-size: 1.2rem;
  line-height: 1.2;
}

.hero__box p {
  margin: 0;
  color: var(--text-soft);
}

.button {
  display: inline-block;
  margin-top: 18px;
  padding: 14px 22px;
  background: var(--accent);
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  border-radius: 999px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.button:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

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

.benefit-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 22px;
}

.benefit-card h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
}

.benefit-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.97rem;
}

.more-domains {
  margin-top: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  padding: 34px 30px;
}

.section-head {
  margin-bottom: 20px;
}

.section-head h2 {
  margin: 0 0 8px;
  font-size: 1.7rem;
  line-height: 1.2;
}

.section-head p:last-child {
  margin: 0;
  color: var(--text-soft);
}

.domain-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.domain-card {
  display: block;
  text-decoration: none;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.domain-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(24, 39, 28, 0.07);
  border-color: #cfdace;
}

.domain-name {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
}

.domain-note {
  display: block;
  margin-top: 6px;
  color: var(--text-soft);
  font-size: 0.95rem;
}

.footer {
  margin-top: 24px;
  text-align: center;
  font-size: 0.92rem;
}

.footer a {
  color: var(--text-soft);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.footer a:hover {
  color: var(--text);
  border-color: var(--text);
}

.impressum-content {
  color: var(--text-soft);
  line-height: 1.75;
}

.impressum-content p {
  margin: 0 0 12px;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero__image img {
    min-height: 280px;
  }

  .hero__content {
    padding: 30px 22px;
  }

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

  .domain-list {
    grid-template-columns: 1fr;
  }

  .more-domains {
    padding: 26px 18px;
  }
}