/* Cookie consent + shared forms (used across static pages) */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 20px;
  background: rgba(2, 6, 23, 0.94);
  border-top: 1px solid rgba(34, 211, 238, 0.25);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.45);
  font-family: system-ui, sans-serif;
  font-size: 0.88rem;
  color: #e2e8f0;
}
.cookie-banner[hidden] {
  display: none !important;
}
.cookie-banner p {
  margin: 0;
  flex: 1 1 220px;
  max-width: 52ch;
  line-height: 1.5;
}
.cookie-banner a {
  color: #22d3ee;
}
.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.cookie-actions button {
  padding: 10px 18px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  border: 1px solid transparent;
}
.cookie-actions .btn-accept {
  background: linear-gradient(135deg, #5eead4, #22d3ee);
  color: #042f2e;
}
.cookie-actions .btn-decline {
  background: transparent;
  border-color: rgba(148, 163, 184, 0.4);
  color: #94a3b8;
}

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
  max-width: 420px;
  margin: 20px auto 0;
}
.form-stack label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 6px;
}
.form-stack input,
.form-stack textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(34, 211, 238, 0.2);
  background: rgba(15, 23, 42, 0.6);
  color: #f8fafc;
  font-size: 1rem;
  font-family: inherit;
}
.form-stack textarea {
  min-height: 120px;
  resize: vertical;
}
.form-stack input:focus,
.form-stack textarea:focus {
  outline: 2px solid #22d3ee;
  outline-offset: 2px;
}
.form-msg {
  font-size: 0.88rem;
  margin: 0;
  min-height: 1.2em;
}
.form-msg.ok {
  color: #5eead4;
}
.form-msg.err {
  color: #fca5a5;
}
.form-submit {
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, #5eead4, #22d3ee);
  color: #042f2e;
}
.form-submit:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.newsletter-inline {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(148, 163, 184, 0.15);
}
.newsletter-inline h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  color: #f1f5f9;
}
.newsletter-inline p {
  margin: 0 0 12px;
  font-size: 0.88rem;
  color: #94a3b8;
}
.newsletter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  align-items: center;
}
.newsletter-row input[type='email'] {
  flex: 1 1 200px;
  max-width: 280px;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid rgba(34, 211, 238, 0.2);
  background: rgba(15, 23, 42, 0.6);
  color: #f8fafc;
}
.newsletter-row .form-submit {
  padding: 10px 18px;
  font-size: 0.88rem;
}
