/* === ÜLDINE === */
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: "Outfit", sans-serif;
  background: radial-gradient(circle at 50% 20%, #01213a 0%, #013b66 45%, #001627 100%);
  color: #f0f8ff;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Taustaga valguslaigud */
.pro-bg::before, .pro-bg::after {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(800px 400px at 30% 20%, rgba(0,200,255,0.25), transparent 70%),
    radial-gradient(900px 500px at 70% 80%, rgba(255,255,200,0.18), transparent 70%);
  z-index: 0;
  pointer-events: none;
}

/* Klaasjas efekt */
.glass {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
  backdrop-filter: blur(8px);
}

/* === PEALKIRI === */
.pro-header {
  text-align: center;
  padding: 60px 20px 30px;
  position: relative;
  z-index: 1;
}
.pro-header h1 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}
.pro-header h1 span {
  color: #f4ed9a;
}
.pro-header .tagline {
  font-size: 1.15rem;
  color: #cfeafb;
  opacity: 0.9;
}
.back-link {
  position: absolute;
  left: 20px;
  top: 20px;
  color: #7fd4ff;
  text-decoration: none;
  font-weight: 600;
}
.back-link:hover { text-decoration: underline; }

/* === SISU === */
.pro-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  max-width: 1100px;
  z-index: 1;
  padding: 20px;
}

.pro-benefits {
  flex: 1 1 350px;
  padding: 30px 40px;
}
.pro-benefits h2 {
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 16px;
}
.pro-benefits ul {
  list-style: none;
  line-height: 1.7;
  color: #d8f1ff;
}
.pro-benefits li { margin-bottom: 10px; }

/* === VORM === */
.pro-form {
  flex: 1 1 350px;
  padding: 30px 40px;
  text-align: center;
}
.pro-form h3 {
  color: #f4ed9a;
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.pro-form input {
  width: 100%;
  padding: 14px;
  margin-bottom: 14px;
  border-radius: 10px;
  border: 2px solid #aaa;
  font-size: 1rem;
  outline: none;
}
.pro-form input:focus {
  border-color: #7fd4ff;
  box-shadow: 0 0 8px rgba(0,180,255,0.4);
}

.btn-login,
.btn-outline,
.btn-cta {
  display: block;
  width: 100%;
  padding: 14px;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-bottom: 10px;
}

.btn-login {
  background: #7fd4ff;
  border: 2px solid #000;
  color: #001627;
}
.btn-login:hover { background: #6ccfff; }

.btn-outline {
  background: transparent;
  border: 2px solid #f4ed9a;
  color: #f4ed9a;
}
.btn-outline:hover { background: rgba(244,237,154,0.1); }

.btn-cta {
  background: #f4ed9a;
  color: #000;
  border: 2px solid #000;
  font-size: 1.15rem;
}
.btn-cta:hover { background: #f0e77d; }

hr {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.2);
  margin: 20px 0;
}
.note {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-top: 8px;
}

/* === FOOTER === */
footer {
  text-align: center;
  color: #a9d6f7;
  font-size: 0.95rem;
  margin-top: auto;
  padding: 40px 20px 20px;
  z-index: 1;
}
footer a {
  color: #7fd4ff;
  text-decoration: none;
}
footer a:hover {
  text-decoration: underline;
}
