:root {
  --bg: #0a0b0d;
  --bg-alt: #12141a;
  --text: #eceef0;
  --muted: #8b939c;
  --border: rgba(255, 255, 255, 0.08);
  --accent: #d97757;
  --max-width: 720px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

header {
  border-bottom: 1px solid var(--border);
}

.nav-wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 30px 24px 26px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.logo {
  font-size: 20px;
  letter-spacing: 0.06em;
  font-weight: 600;
  text-decoration: none;
  color: var(--text);
}

nav a {
  color: var(--muted);
  text-decoration: none;
  margin-left: 26px;
  font-size: 14px;
  letter-spacing: 0.02em;
  transition: color 0.15s ease;
}

nav a:first-child {
  margin-left: 0;
}

nav a:hover,
nav a.active {
  color: var(--accent);
}

main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 72px 24px 90px;
}

h1 {
  font-size: 34px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 28px;
}

h2 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin: 34px 0 12px;
}

p {
  margin: 0 0 18px;
  color: var(--text);
}

.lead {
  font-size: 19px;
  color: #cfd3d7;
}

.section-label {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 14px;
}

form {
  margin-top: 8px;
}

label {
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin: 22px 0 7px;
  letter-spacing: 0.02em;
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-family: inherit;
  font-size: 15px;
  color: var(--text);
  background: var(--bg-alt);
  outline: none;
  transition: border-color 0.15s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  border-color: var(--accent);
}

textarea {
  resize: vertical;
  min-height: 140px;
}

button {
  margin-top: 30px;
  padding: 12px 28px;
  background: var(--accent);
  color: #0a0b0d;
  border: none;
  border-radius: 6px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: opacity 0.15s ease;
}

button:hover {
  opacity: 0.85;
}

footer {
  border-top: 1px solid var(--border);
  margin-top: 60px;
}

.footer-wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 24px 24px;
  font-size: 13px;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

footer a {
  color: var(--muted);
  text-decoration: none;
}

footer a:hover {
  color: var(--accent);
}

.imprint-block {
  margin-bottom: 30px;
}

.imprint-block p {
  color: #cfd3d7;
}

main a {
  color: var(--accent);
  text-decoration: underline;
}

main a:hover {
  opacity: 0.85;
}

.divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  margin: 52px 0;
}

input[type="checkbox"] {
  width: auto;
  accent-color: var(--accent);
  margin-top: 3px;
  flex-shrink: 0;
}

.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 26px;
  cursor: pointer;
}

.consent-label span {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

.feature-image {
  margin: 0;
}

.feature-image img {
  width: 100%;
  max-height: 360px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}
