:root{
  --bg:#0b1220;
  --text:rgba(255,255,255,.92);
  --muted:rgba(255,255,255,.70);
  --border:rgba(255,255,255,.10);
  --panel:rgba(255,255,255,.05);
  --shadow:0 18px 60px rgba(0,0,0,.35);

  --accent:#2dd4bf;
  --accent2:#60a5fa;
  --accent3:#a78bfa;

  --radius:18px;
  --max:1100px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  color:var(--text);
  background:
    radial-gradient(1200px 700px at 15% 10%, rgba(96,165,250,.16), transparent 60%),
    radial-gradient(900px 600px at 80% 20%, rgba(45,212,191,.12), transparent 55%),
    radial-gradient(900px 600px at 60% 85%, rgba(167,139,250,.11), transparent 55%),
    var(--bg);
  line-height:1.55;
}

a{color:inherit}
a:hover{text-decoration:underline}

.container{width:min(var(--max), calc(100% - 40px)); margin-inline:auto}
.narrow{width:min(820px, calc(100% - 40px))}
.muted{color:var(--muted)}

.skip{
  position:absolute; left:-999px; top:12px;
  background:#fff; color:#000; padding:10px 12px; border-radius:10px;
}
.skip:focus{left:12px; z-index:9999}

.header{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(11,18,32,.72);
  border-bottom:1px solid var(--border);
}
.header__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0; gap:14px;
}
.brand{display:flex; align-items:center; gap:10px; text-decoration:none}
.brand__logo{
  width:34px; height:34px; object-fit:contain;
  border-radius:10px; background:rgba(255,255,255,.08);
  padding:6px; border:1px solid var(--border);
}
.brand__name{font-weight:750; letter-spacing:.2px; white-space:nowrap}

.nav{display:flex; gap:18px; align-items:center}
.nav a{color:var(--muted); font-weight:650; text-decoration:none}
.nav a:hover{color:var(--text)}
.nav__toggle{
  display:none; width:42px; height:42px; border-radius:12px;
  border:1px solid var(--border); background:rgba(255,255,255,.06); cursor:pointer;
}
.nav__toggle span{display:block; width:18px; height:2px; background:var(--text); margin:4px auto; border-radius:2px}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px; border-radius:14px;
  border:1px solid var(--border);
  background: linear-gradient(135deg, rgba(45,212,191,.18), rgba(96,165,250,.14));
  box-shadow: 0 10px 30px rgba(0,0,0,.22);
  font-weight:800; text-decoration:none !important;
}
.btn:hover{filter:brightness(1.06)}
.btn--ghost{background:rgba(255,255,255,.05)}
.btn--sm{padding:10px 12px; border-radius:12px}

h1{
  font-size: clamp(32px, 4.8vw, 50px);
  line-height:1.10;
  margin:0 0 12px;
  letter-spacing:-.6px;
}
h2{
  font-size: clamp(22px, 3.2vw, 32px);
  margin:0 0 8px;
  letter-spacing:-.2px;
}
h3{margin:0 0 8px}

.lead{
  font-size: clamp(16px, 1.5vw, 19px);
  margin: 0 0 16px;
  max-width: 68ch;
}

.section{padding:44px 0}
.section--alt{
  background: rgba(255,255,255,.03);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}
.section__head{margin-bottom:16px}

.hero2{padding:54px 0 34px}
.hero2__grid{
  display:grid;
  grid-template-columns: 1.2fr .9fr;
  gap:22px;
  align-items:start;
}
.hero2__actions{display:flex; gap:12px; flex-wrap:wrap; margin:14px 0 10px}

.panel{
  border:1px solid var(--border);
  background: rgba(255,255,255,.04);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding:18px 16px;
}
.panel__title{margin:0 0 10px}
.panel__text{margin:0 0 12px; color:var(--muted)}
.ticks{margin:0; padding-left:18px; color:var(--text)}
.ticks li{margin:8px 0}

.grid{display:grid; gap:14px}
.cards{grid-template-columns: repeat(3, 1fr)}
.service{
  border-radius: var(--radius);
  border:1px solid var(--border);
  background: rgba(255,255,255,.04);
  padding:18px 16px;
}

.brands{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:12px;
}
.brands span{
  display:inline-flex;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.04);
  font-weight:800;
  color: var(--text);
}

.contact2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:18px;
  align-items:start;
}
.contact2__email{
  margin-top:14px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.04);
  border-radius: 16px;
  padding:14px 14px;
}
.contact2__link{
  display:inline-block;
  margin-top:6px;
  font-weight:900;
  text-decoration:none;
}
.contact2__link:hover{text-decoration:underline}

.form{
  border-radius: var(--radius);
  border:1px solid var(--border);
  background: rgba(255,255,255,.04);
  padding:16px;
}
label{display:block; font-weight:750; margin:10px 0 10px; color:var(--muted)}
input, textarea{
  width:100%;
  margin-top:8px;
  padding:12px 12px;
  border-radius: 14px;
  border:1px solid var(--border);
  background: rgba(11,18,32,.45);
  color: var(--text);
  outline:none;
}
input:focus, textarea:focus{
  border-color: rgba(45,212,191,.55);
  box-shadow: 0 0 0 4px rgba(45,212,191,.12);
}
.form__note{margin:10px 0 0; min-height: 20px}

.footer{padding:24px 0 30px}
.footer__inner{
  display:flex; justify-content:space-between; gap:14px; flex-wrap:wrap;
  color: var(--muted);
  border-top:1px solid var(--border);
  padding-top:18px;
}

/* responsive */
@media (max-width: 860px){
  .hero2__grid{grid-template-columns:1fr}
    .cards{grid-template-columns:1fr}
  .contact2{grid-template-columns:1fr}
  .nav{display:none}
  .nav__toggle{display:block}
  .nav.nav--open{
    display:flex;
    position:absolute;
    right:20px;
    top:66px;
    flex-direction:column;
    align-items:stretch;
    gap:10px;
    padding:12px;
    border-radius: 16px;
    border:1px solid var(--border);
    background: rgba(11,18,32,.92);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow);
    min-width: 190px;
  }
  .nav.nav--open a{padding:8px 10px}
}
