/* ===== ROOT ===== */
:root {
  --bg: #05070d;
  --text: #eef2f8;
  --muted: #94a1b8;
  --accent: #0b74ff;
  --accent2: #00d4ff;
  --border: rgba(255, 255, 255, 0.10);
  --card: rgba(255, 255, 255, 0.04);
  --card-hover: rgba(255, 255, 255, 0.07);
  --radius: 20px;
}

* {
  box-sizing: border-box;
}

html, body {
  min-height: 100%;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: var(--bg) url('background.webp') center / cover no-repeat fixed;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.page {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
}

/* ===== CONTACT ===== */
.contact-card {
  width: 100%;
  max-width: 520px;
  padding: 48px 44px;
  background: rgba(6, 10, 20, 0.55);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  text-align: center;
}

.brand-logo {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  margin-bottom: 20px;
}

.contact-card h1 {
  font-size: 1.7rem;
  font-weight: 800;
  margin: 0 0 14px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.divider {
  color: var(--muted);
  font-weight: 400;
  -webkit-text-fill-color: var(--muted);
}

.lead {
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.95rem;
  margin: 0 0 32px;
}

.lead-de {
  display: block;
  font-size: 0.85rem;
  opacity: 0.85;
  margin-top: 4px;
}

.alt-contact {
  font-size: 0.85rem;
  color: var(--muted);
  margin: -12px 0 32px;
}

.alt-contact a {
  color: var(--accent2);
  text-decoration: none;
  font-weight: 600;
}

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

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}

.hp-field {
  display: none !important;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text);
}

.form-group label em {
  font-weight: 400;
  font-style: normal;
  color: var(--muted);
}

.form-group input,
.form-group textarea {
  padding: 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.2s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--muted);
  opacity: 0.7;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--card-hover);
  box-shadow: 0 0 0 3px rgba(11, 116, 255, 0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.btn {
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #04101f;
  font-weight: 700;
  font-size: 1rem;
  padding: 15px;
  border-radius: 12px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 30px rgba(11, 116, 255, 0.35);
}

.form-submit {
  margin-top: 8px;
}

.form-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
  margin: 4px 0 0;
}

.form-status {
  margin-top: 14px;
  text-align: center;
  font-weight: 600;
  min-height: 1.2em;
}

/* ===== FOOTER ===== */
footer {
  padding: 24px 20px 32px;
  text-align: center;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.footer-copy {
  font-size: 0.78rem;
  color: var(--muted);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 560px) {
  .contact-card {
    padding: 36px 24px;
  }

  .contact-card h1 {
    font-size: 1.4rem;
  }
}
