
:root{
  --bg:#07111b;
  --bg2:#0d1a27;
  --card:#111e2a;
  --card2:#142433;
  --text:#f5f7fb;
  --muted:#c7d1dc;
  --soft:#94a3b8;
  --gold:#e3b552;
  --gold2:#f4cc73;
  --line:rgba(255,255,255,.12);
  --shadow:0 18px 50px rgba(0,0,0,.28);
  --ok:#b9f6cf;
  --danger:#ffb8b8;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Arial,Helvetica,sans-serif;
  background:
    radial-gradient(circle at 20% 0%, rgba(227,181,82,.10), transparent 26%),
    linear-gradient(135deg,var(--bg),var(--bg2));
  color:var(--text);
  line-height:1.6;
}
a{color:var(--gold)}
.wrap{width:min(1180px,calc(100% - 72px));margin:0 auto}
header{
  position:sticky;
  top:0;
  z-index:20;
  background:rgba(7,17,27,.94);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}
.nav{
  min-height:96px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:26px;
}
.brand{
  display:flex;
  align-items:center;
  gap:16px;
  text-decoration:none;
  color:#fff;
  min-width:310px;
}
.brand img{
  width:62px;
  height:62px;
  object-fit:contain;
  border-radius:14px;
  box-shadow:0 8px 24px rgba(0,0,0,.25);
}
.brand strong{display:block;font-size:19px;line-height:1.15}
.brand small{display:block;color:var(--muted);font-size:14px;margin-top:4px}
nav{
  display:flex;
  align-items:center;
  gap:34px;
  white-space:nowrap;
}
nav a{
  color:#f2f5f8;
  text-decoration:none;
  font-weight:700;
  font-size:16px;
  padding:35px 0 28px;
  border-bottom:2px solid transparent;
}
nav a:hover,nav a.active{
  color:#fff;
  border-bottom-color:var(--gold);
}
.hero{
  padding:72px 0 76px;
  border-bottom:1px solid var(--line);
  background:linear-gradient(110deg,rgba(9,21,33,.95),rgba(11,27,40,.76));
}
.hero h1{
  margin:0 0 18px;
  max-width:850px;
  font-size:clamp(44px,6vw,72px);
  line-height:1.03;
  letter-spacing:-1px;
}
.lead{
  margin:0;
  max-width:760px;
  font-size:21px;
  color:#d7e0ea;
}
.actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:32px;
}
.btn,button.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:52px;
  padding:14px 23px;
  border-radius:12px;
  font-weight:800;
  text-decoration:none;
  border:0;
  cursor:pointer;
  font:inherit;
}
.primary{
  background:linear-gradient(135deg,var(--gold),var(--gold2));
  color:#101010;
  box-shadow:0 8px 22px rgba(227,181,82,.22);
}
.secondary{
  border:1px solid var(--line);
  background:rgba(255,255,255,.045);
  color:#fff;
}
main section{
  padding:58px 0;
  border-bottom:1px solid var(--line);
}
.section-title{
  font-size:clamp(31px,4vw,44px);
  line-height:1.15;
  margin:0 0 24px;
}
.section-text{
  color:var(--muted);
  max-width:850px;
  font-size:18px;
  margin:-8px 0 28px;
}
.grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}
.grid.two{grid-template-columns:repeat(2,1fr)}
.card,.notice,.legal,form,.contact-box{
  background:linear-gradient(145deg,rgba(20,36,51,.92),rgba(15,29,42,.92));
  border:1px solid var(--line);
  border-radius:18px;
  padding:26px;
  box-shadow:var(--shadow);
}
.card{
  min-height:190px;
  position:relative;
  overflow:hidden;
}
.card h3,.notice h3{margin:0 0 14px;font-size:20px}
.card p,.notice p,.legal p,.contact-box p{color:var(--muted);margin:0}
.icon{
  position:absolute;
  right:24px;
  top:24px;
  width:48px;
  height:48px;
  color:var(--gold);
  opacity:.95;
}
.notice{
  margin-top:24px;
  min-height:210px;
  display:grid;
  grid-template-columns:1fr 160px;
  gap:24px;
  align-items:center;
}
.notice .big-icon{
  width:130px;
  height:130px;
  color:var(--gold);
  justify-self:center;
}
.contact{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:24px;
}
label{display:block;margin:16px 0 8px;font-weight:800}
input,textarea,select{
  width:100%;
  padding:13px 14px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(255,255,255,.055);
  color:#fff;
  font:inherit;
}
input[type=file]{padding:11px;background:rgba(255,255,255,.035)}
textarea{min-height:140px;resize:vertical}
select option{background:#142433;color:#fff}
input:focus,textarea:focus,select:focus{outline:none;border-color:var(--gold)}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:16px}
.check{
  display:flex;
  gap:10px;
  align-items:flex-start;
  color:var(--muted);
  font-size:14px;
  margin:18px 0;
}
.check input{width:auto;margin-top:5px}
.hint{font-size:13px;color:var(--soft);margin-top:7px}
.success{color:var(--ok);font-weight:800}
.error{color:var(--danger);font-weight:800}
.list{color:var(--muted);margin-top:0}
footer{
  padding:30px 0;
  color:var(--muted);
}
.footer{
  display:flex;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
}
.footer a{
  color:var(--muted);
  text-decoration:none;
  margin-left:18px;
}
@media(max-width:900px){
  .wrap{width:min(100% - 32px,1180px)}
  .nav{display:block;padding:14px 0}
  .brand{min-width:0}
  nav{gap:8px;overflow-x:auto;padding-top:14px}
  nav a{padding:10px 13px;border:1px solid var(--line);border-radius:999px;background:rgba(255,255,255,.04)}
  nav a.active{border-color:var(--gold)}
  .hero{padding:44px 0}
  .lead{font-size:18px}
  .grid,.grid.two,.contact,.form-row,.notice{grid-template-columns:1fr}
  .notice .big-icon{display:none}
}
@media(max-width:480px){
  .brand img{width:54px;height:54px}
  .brand strong{font-size:18px}
  .brand small{font-size:13px}
  .hero h1{font-size:40px}
  .btn,button.btn{width:100%}
  .footer{display:block;text-align:center}
  .footer a{display:inline-block;margin:8px 6px 0}
}


.license-tags{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:14px;
}

.license-tag{
  display:flex;
  align-items:center;
  gap:10px;
  background:linear-gradient(135deg,var(--gold),var(--gold2));
  color:#111;
  padding:10px 14px;
  border-radius:999px;
  font-weight:700;
}

.license-tag button{
  border:0;
  background:transparent;
  color:#111;
  font-size:18px;
  cursor:pointer;
  font-weight:900;
  line-height:1;
}
