:root{
  --bg:#0b0f14;
  --panel:#0f1622;
  --panel2:#0d141f;
  --text:#e8eef7;
  --muted:#a7b3c5;
  --line:#1e2a3a;
  --accent:#e11d2e;
  --accent2:#ff4455;
  --radius:18px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  color:var(--text);
  background: radial-gradient(1200px 700px at 20% -10%, rgba(225,29,46,.32), transparent 60%),
              radial-gradient(900px 600px at 90% 0%, rgba(255,68,85,.16), transparent 60%),
              var(--bg);
  line-height:1.6;
}

a{color:inherit;text-decoration:none}
a:hover{opacity:.92}

.container{
  width:min(1120px, calc(100% - 40px));
  margin:0 auto;
}

.topbar{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(11,15,20,.72);
  border-bottom:1px solid rgba(255,255,255,.06);
}

.topbar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:16px;
}

.brand{display:flex;align-items:center;gap:12px;min-width:260px}
.brand__logo{
  height:36px;
  width:auto;
  border-radius:10px;
}
.brand__name{font-weight:900;letter-spacing:.2px}
.brand__tag{font-size:12px;color:var(--muted)}

.nav{
  display:flex;gap:18px;
  font-size:14px;
}
.nav a{color:var(--muted);font-weight:800}
.nav a:hover{color:var(--text)}

.lang{display:flex;align-items:center;gap:8px;font-size:13px}
.lang__pill{
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  color:var(--muted);
  font-weight:900;
  background: rgba(255,255,255,.04);
}
.lang__pill--active{
  border-color: rgba(225,29,46,.45);
  color: #fff;
  background: linear-gradient(145deg, rgba(225,29,46,.95), rgba(255,68,85,.65));
}

.hero{padding:64px 0 30px}
.hero__inner{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:28px;
  align-items:stretch;
}
.hero h1{
  font-size: clamp(28px, 3.2vw, 44px);
  line-height:1.12;
  margin:0 0 14px;
}
.lead{color:var(--muted);font-size:16px;margin:0 0 22px;max-width:70ch}

.hero__actions{display:flex;gap:12px;flex-wrap:wrap;margin-bottom:18px}

.btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  color:var(--text);
  font-weight:900;
  letter-spacing:.2px;
}
.btn--primary{
  border-color: rgba(225,29,46,.5);
  background: linear-gradient(145deg, rgba(225,29,46,.95), rgba(255,68,85,.65));
}
.btn--ghost:hover{border-color: rgba(255,255,255,.22)}

.hero__highlights{display:flex;gap:10px;flex-wrap:wrap}
.pill{
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  color:var(--muted);
  font-size:13px;
  background: rgba(255,255,255,.03);
}

.hero__card{
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.10);
  padding:18px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:14px;
}
.stat__num{font-size:22px;font-weight:1000}
.stat__label{color:var(--muted);font-size:13px}
.divider{height:1px;background:rgba(255,255,255,.08)}

.section{padding:56px 0}
.section--alt{
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.01));
  border-top:1px solid rgba(255,255,255,.06);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.section__head{margin-bottom:20px}
.section__head h2{margin:0 0 8px;font-size:26px}
.section__head p{margin:0;color:var(--muted);max-width:75ch}

.grid{display:grid;gap:14px}
.grid--4{grid-template-columns: repeat(4, 1fr)}
.grid--3{grid-template-columns: repeat(3, 1fr)}

.card{
  border-radius: var(--radius);
  background: rgba(15,22,34,.62);
  border:1px solid rgba(255,255,255,.08);
  padding:18px;
}
.card h3{margin:0 0 10px;font-size:16px}
.card p{margin:0;color:var(--muted)}

.section__actions{margin-top:14px}

.contact-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
  align-items:start;
}

.list{list-style:none;margin:0;padding:0;color:var(--muted)}
.list li{margin:6px 0}
.list a{color:var(--text);text-decoration:underline;text-decoration-color: rgba(255,255,255,.25)}
.list a:hover{text-decoration-color: rgba(255,255,255,.45)}

.form{display:grid;gap:10px;margin-top:10px}
label{display:grid;gap:6px;color:var(--muted);font-size:13px;font-weight:800}
input, textarea{
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.25);
  color:var(--text);
  outline:none;
}
input:focus, textarea:focus{border-color: rgba(225,29,46,.5)}

.ref__img{
  width:100%;
  height:180px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  object-fit: cover;
  background: rgba(255,255,255,.04);
  display:block;
  margin-bottom:12px;
}

.footer{
  padding:26px 0;
  border-top:1px solid rgba(255,255,255,.06);
}
.footer__inner{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
}
.footer__title{font-weight:1000}
.footer__meta{color:var(--muted);font-size:13px;margin-top:4px}
.footer__links{display:flex;gap:14px;flex-wrap:wrap;color:var(--muted);font-weight:800}
.footer__links a:hover{color:var(--text)}

@media (max-width: 980px){
  .hero__inner{grid-template-columns: 1fr}
  .grid--4{grid-template-columns: repeat(2, 1fr)}
  .grid--3{grid-template-columns: repeat(2, 1fr)}
  .contact-grid{grid-template-columns: 1fr}
  .nav{display:none}
}

@media (max-width: 560px){
  .grid--4, .grid--3{grid-template-columns: 1fr}
  .brand__tag{display:none}
}