:root {
  --bg: #0b0b0b;
  --panel: #0f0f0f;
  --muted: #9b9b9b;
  --accent: #26D07A; /* green */
  --white: #fff;
  --glass: rgba(255,255,255,0.04);
  --transition: 400ms cubic-bezier(.2,.9,.2,1);
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

/* Contact-specific styles */
.section {
  padding: 80px 6vw;
  position: relative;
  min-height: 420px;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.contact-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.headline {
  font-size: 44px;
  margin: 0 0 12px;
  line-height: 1.02;
  color: var(--white);
  font-weight: 800;
}

.lead {
  color: var(--muted);
  margin: 16px 0 22px;
  max-width: 48ch;
  margin-left: auto;
  margin-right: auto;
}

.form-card {
  max-width: 720px;
  background: linear-gradient(180deg, rgba(255,255,255,0.015), rgba(255,255,255,0.01));
  padding: 24px;
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.6);
  margin: 20px auto;
  position: relative;
  transition: transform 200ms ease;
  transform-style: preserve-3d;
  cursor: grab;
}

.form-card:active {
  cursor: grabbing;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}

.form-row label {
  font-size: 13px;
  color: var(--muted);
  text-align: left;
}

.form-row input,
.form-row textarea {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.06);
  color: var(--white);
  padding: 10px 12px;
  border-radius: 8px;
  outline: none;
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 8px 30px rgba(38,208,122,0.06);
}

.btn {
  display: inline-block;
  text-decoration: none;
  border-radius: 12px;
  padding: 11px 18px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: var(--transition);
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(180deg, var(--accent), #0fbf5f);
  color: #06110a;
  box-shadow: 0 10px 30px rgba(38,208,122,0.12);
}

.btn-primary:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 40px rgba(38,208,122,0.16);
}

#contact-result {
  margin-top: 16px;
}

/* Footer */
.site-footer {
  padding: 40px 6vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.03);
  color: var(--muted);
  max-width: 1200px;
  margin: 0 auto;
}


/* Responsive */
@media (max-width: 700px) {
  .section {
    padding: 40px 4vw;
  }

  .form-card {
    padding: 16px;
  }
}