@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700;900&display=swap');

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

body {
  font-family: 'Inter', sans-serif;
  background: #0a1f35;
  color: #fff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.card {
  background: linear-gradient(145deg, #0d2d4e, #163d66);
  border: 1.5px solid rgba(232, 201, 106, 0.35);
  border-radius: 24px;
  padding: 48px 40px;
  max-width: 440px;
  width: 100%;
  text-align: center;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
}

.badge {
  display: inline-block;
  background: rgba(232, 201, 106, 0.15);
  border: 1.5px solid #e8c96a;
  color: #e8c96a;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 28px;
}

.icon { font-size: 44px; margin-bottom: 16px; display: block; }

h1 { font-size: 26px; font-weight: 900; line-height: 1.25; margin-bottom: 12px; color: #fff; }
h1 span { color: #e8c96a; }

p.lead { font-size: 14px; color: #a8c8e0; line-height: 1.7; margin-bottom: 28px; }

form { text-align: left; }

.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #e8c96a;
  margin-bottom: 8px;
}
.field input {
  width: 100%;
  padding: 13px 16px;
  border-radius: 12px;
  border: 1.5px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-size: 15px;
  font-family: inherit;
}
.field input::placeholder { color: rgba(255,255,255,0.35); }
.field input:focus { outline: none; border-color: #e8c96a; background: rgba(255,255,255,0.1); }

.btn {
  display: block;
  width: 100%;
  padding: 15px 20px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 800;
  text-align: center;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: opacity 0.2s, transform 0.1s;
}
.btn:hover:not(:disabled) { opacity: 0.9; }
.btn:active:not(:disabled) { transform: scale(0.98); }
.btn:disabled { opacity: 0.55; cursor: not-allowed; }
.btn-primary { background: linear-gradient(135deg, #c8a84b, #e8c96a); color: #0a1f35; }
.btn-secondary { background: rgba(255,255,255,0.07); color: #c8dff0; border: 1.5px solid rgba(255,255,255,0.18); margin-top: 12px; }

.links { text-align: center; margin-top: 18px; }
.links a { color: #a8c8e0; font-size: 13px; text-decoration: none; }
.links a:hover { color: #e8c96a; text-decoration: underline; }

.alert {
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 18px;
  text-align: left;
}
.alert-error { background: rgba(220, 60, 60, 0.12); border: 1px solid rgba(220, 60, 60, 0.4); color: #ffb3b3; }
.alert-success { background: rgba(80, 190, 120, 0.12); border: 1px solid rgba(80, 190, 120, 0.4); color: #a8e6bd; }

.spinner {
  width: 36px; height: 36px;
  border: 3px solid rgba(232, 201, 106, 0.25);
  border-top-color: #e8c96a;
  border-radius: 50%;
  margin: 0 auto 20px;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

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

.contact-label { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #e8c96a; margin-bottom: 16px; }
.contact-grid { display: flex; flex-direction: column; gap: 10px; }
.contact-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 13px 20px; border-radius: 50px; font-size: 14px; font-weight: 700;
  text-decoration: none; transition: opacity 0.2s;
}
.contact-btn:hover { opacity: 0.85; }
.contact-btn.phone { background: linear-gradient(135deg, #c8a84b, #e8c96a); color: #0a1f35; }
.contact-btn.email { background: rgba(255,255,255,0.07); color: #c8dff0; border: 1.5px solid rgba(255,255,255,0.18); font-size: 13px; }

.footer { margin-top: 32px; font-size: 11px; color: rgba(255,255,255,0.25); line-height: 1.8; text-align: center; }

.hidden { display: none !important; }

@media (max-width: 480px) {
  .card { padding: 36px 24px; }
  h1 { font-size: 22px; }
}
