:root{
  --bg1:#0b1020;
  --bg2:#101a33;
  --card:#0f1730cc;
  --text:#eef2ff;
  --muted:#b7c0ff;
  --accent:#7c5cff;
  --accent2:#22d3ee;
  --border:rgba(255,255,255,.12);
  --shadow: 0 18px 60px rgba(0,0,0,.45);
  --focus: rgba(124,92,255,.55);
}

*{ box-sizing:border-box; }
html,body{ height:100%; }

body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(1000px 500px at 15% 10%, rgba(124,92,255,.35), transparent 60%),
    radial-gradient(900px 450px at 85% 20%, rgba(34,211,238,.25), transparent 55%),
    linear-gradient(180deg, var(--bg1), var(--bg2));
  display:flex;
  align-items:center;
  justify-content:center;
  padding:24px;
}

.wrap{
  width: min(960px, 100%);
  display:flex;
  flex-direction:column;
  gap:16px;
}

.topbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding: 4px 2px;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  color: var(--text);
}

.logo{
  filter: drop-shadow(0 10px 20px rgba(0,0,0,.35));
}

.brand-text{
  font-weight: 800;
  letter-spacing:.2px;
}

.lang{
  display:flex;
  gap:8px;
  padding:6px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.05);
  border-radius: 999px;
}

.lang-btn{
  appearance:none;
  border:0;
  background: transparent;
  color: rgba(238,242,255,.8);
  font-weight:800;
  font-size: 12px;
  letter-spacing:.6px;
  padding: 8px 10px;
  border-radius: 999px;
  cursor:pointer;
  transition: background .12s ease, color .12s ease, transform .12s ease;
}

.lang-btn[aria-pressed="true"]{
  background: linear-gradient(90deg, rgba(124,92,255,.9), rgba(34,211,238,.8));
  color:#0b1020;
}

.lang-btn:hover{ transform: translateY(-1px); }

.card{
  position:relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 30px 26px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.badge{
  display:inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: .5px;
  font-size: 12px;
  color: #0b1020;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  margin-bottom: 14px;
}

.title{
  margin: 0 0 10px 0;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.1;
}

.subtitle{
  margin: 0 0 16px 0;
  color: var(--muted);
  font-size: 16px;
}

.price-box{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:12px;
  padding: 14px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
  margin: 10px 0 14px 0;
}
.price-label{
  font-weight: 800;
  color: rgba(238,242,255,.78);
  font-size: 13px;
  letter-spacing:.4px;
}
.price-value{
  font-weight: 900;
  font-size: 22px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.price-note{
  font-size: 12px;
  color: rgba(238,242,255,.65);
}

.contact-row{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:10px;
}

.email{
  display:inline-block;
  padding: 12px 14px;
  border-radius: 14px;
  text-decoration:none;
  color: var(--text);
  font-weight: 800;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
  word-break: break-word;
}

.email:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.24);
}

.or{
  color: rgba(238,242,255,.65);
  font-size: 13px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
  color: var(--text);
  text-decoration:none;
  font-weight: 800;
  cursor:pointer;
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
}

.btn:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.24);
}

.btn.primary{
  border: 0;
  color:#0b1020;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
}

.sep{
  border:0;
  height:1px;
  background: rgba(255,255,255,.12);
  margin: 18px 0;
}

.status{
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  margin-bottom: 14px;
  font-weight: 700;
}
.status.ok{
  background: rgba(34,211,238,.10);
  border-color: rgba(34,211,238,.25);
}
.status.err{
  background: rgba(124,92,255,.10);
  border-color: rgba(124,92,255,.25);
}

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

.form-title{
  margin: 0 0 2px 0;
  font-size: 18px;
}

.grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
}

@media (max-width: 700px){
  .grid{ grid-template-columns: 1fr; }
  .price-box{ flex-direction:column; align-items:flex-start; }
}

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

.label{
  font-size: 13px;
  color: rgba(238,242,255,.78);
  font-weight: 700;
}

input, textarea{
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(5,10,20,.35);
  color: var(--text);
  padding: 12px 12px;
  outline: none;
  transition: border-color .12s ease, box-shadow .12s ease, background .12s ease;
}

textarea{ resize: vertical; min-height: 140px; }

input:focus, textarea:focus{
  border-color: rgba(124,92,255,.7);
  box-shadow: 0 0 0 4px var(--focus);
  background: rgba(5,10,20,.48);
}

.form-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  align-items:center;
  justify-content:space-between;
  margin-top: 2px;
}

.form-note{
  margin:0;
  font-size: 12px;
  color: rgba(238,242,255,.62);
}

.footer{
  text-align:center;
  color: rgba(238,242,255,.55);
}

/* honeypot hidden */
.hp{
  position:absolute;
  left:-9999px;
  width:1px;
  height:1px;
  overflow:hidden;
}
