:root{
  --bg:#0b0f17;
  --card:#0f1624;
  --muted:#9fb0c3;
  --text:#eaf0f7;
  --line: rgba(255,255,255,.10);
  --accent:#4aa3ff;
  --accent2:#76d1ff;
  --shadow: 0 18px 60px rgba(0,0,0,.45);
  --radius: 18px;
  --radius2: 26px;
  --max: 1120px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  background:
    radial-gradient(900px 500px at 15% 15%, rgba(74,163,255,.20), transparent 55%),
    radial-gradient(800px 520px at 75% 30%, rgba(118,209,255,.14), transparent 55%),
    radial-gradient(900px 800px at 50% 110%, rgba(255,255,255,.06), transparent 60%),
    var(--bg);
  line-height:1.45;
}

a{color:inherit;text-decoration:none}
.container{width:min(var(--max), calc(100% - 36px)); margin:0 auto}

.topbar{
  position:sticky; top:0; z-index:20;
  backdrop-filter: blur(10px);
  background: rgba(11,15,23,.68);
  border-bottom:1px solid var(--line);
}
.topbar__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:16px;
}
.brand__name{font-weight:800; letter-spacing:.2px; font-size:16px}
.brand__meta{color:var(--muted); font-size:13px; display:flex; align-items:center; gap:10px}
.dot{opacity:.6}

.topbar__call{
  display:flex; flex-direction:column; align-items:flex-end;
  padding:10px 12px;
  border:1px solid var(--line);
  border-radius:14px;
  background: rgba(255,255,255,.03);
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.topbar__call:hover{transform: translateY(-1px); background: rgba(255,255,255,.05); border-color: rgba(74,163,255,.45)}
.call__label{font-size:12px; color:var(--muted)}
.call__number{font-size:14px; font-weight:800}

.hero{padding:36px 0 18px}
.hero__grid{
  display:grid;
  grid-template-columns: 1.25fr .85fr;
  gap:18px;
  align-items:start;
}
.hero__left{
  border:1px solid var(--line);
  border-radius: var(--radius2);
  background: rgba(255,255,255,.03);
  box-shadow: var(--shadow);
  padding:26px;
  overflow:hidden;
  position:relative;
}
.hero__left:before{
  content:"";
  position:absolute; inset:-2px;
  background: radial-gradient(600px 240px at 20% 0%, rgba(74,163,255,.18), transparent 60%);
  pointer-events:none;
}
.hero__title{
  margin:0 0 10px;
  font-size: clamp(30px, 3.4vw, 48px);
  line-height:1.08;
  letter-spacing:-.6px;
}
.hero__sub{
  margin:0 0 18px;
  color: rgba(234,240,247,.88);
  font-size: 15.5px;
  max-width: 60ch;
}
.hero__actions{display:flex; gap:12px; flex-wrap:wrap; margin: 12px 0 10px}

.btn{
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  color:var(--text);
  padding:12px 14px;
  border-radius: 14px;
  font-weight:800;
  letter-spacing:.2px;
  display:inline-flex; align-items:center; justify-content:center;
  transition: transform .15s ease, background .15s ease, border-color .15s ease, box-shadow .15s ease;
  cursor:pointer;
}
.btn:hover{transform: translateY(-1px); background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.18)}
.btn--primary{
  border-color: rgba(74,163,255,.50);
  background: linear-gradient(135deg, rgba(74,163,255,.18), rgba(118,209,255,.10));
  box-shadow: 0 16px 40px rgba(74,163,255,.12);
}
.btn--primary:hover{border-color: rgba(74,163,255,.85)}
.btn--ghost{background: rgba(255,255,255,.02)}
.btn--dark{
  background: rgba(0,0,0,.25);
  border-color: rgba(255,255,255,.14);
}
.btn--full{width:100%}

.badges{display:flex; gap:10px; flex-wrap:wrap; margin-top:10px}
.badge{
  font-size:12px;
  color: rgba(234,240,247,.92);
  padding:8px 10px;
  border-radius: 999px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.02);
}

.trust{display:grid; grid-template-columns: 1fr 1fr; gap:12px; margin-top:18px; position:relative; z-index:1}
.trust__card{
  border:1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(0,0,0,.10);
  padding:14px 14px 10px;
}
.trust__title{font-weight:900; margin-bottom:8px}
.list{margin:0; padding-left:18px; color: rgba(234,240,247,.88)}
.list li{margin: 0 0 8px}
.list strong{color: rgba(234,240,247,.98)}

.hero__right{
  position:sticky;
  top:76px;
}
.formcard{
  border:1px solid var(--line);
  border-radius: var(--radius2);
  background: rgba(255,255,255,.03);
  box-shadow: var(--shadow);
  padding:18px;
}
.formcard__header h2{margin:0 0 6px; font-size:18px}
.formcard__header p{margin:0 0 12px; color: rgba(234,240,247,.82); font-size:13.5px}

.form{display:grid; gap:10px}
.field label{display:block; font-size:12px; color: var(--muted); margin-bottom:6px}
.field input, .field textarea{
  width:100%;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.20);
  color:var(--text);
  padding:12px 12px;
  outline:none;
}
.field input:focus, .field textarea:focus{
  border-color: rgba(74,163,255,.70);
  box-shadow: 0 0 0 4px rgba(74,163,255,.12);
}

.form__fineprint{font-size:11px; color: rgba(159,176,195,.95)}
.form__status{
  min-height: 18px;
  font-size: 12px;
  color: rgba(234,240,247,.92);
}
.form__status.ok{color: rgba(118, 255, 196, .95)}
.form__status.err{color: rgba(255, 140, 140, .95)}

.divider{height:1px; background: var(--line); margin: 14px 0}
.quickcall{display:flex; align-items:center; justify-content:space-between; gap:12px}
.quickcall__text{font-size:13px}
.quickcall__small{color: var(--muted); font-size:12px; margin-top:2px}

.section{padding: 18px 0 44px}
.section__grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.panel{
  border:1px solid var(--line);
  border-radius: var(--radius2);
  background: rgba(255,255,255,.03);
  box-shadow: var(--shadow);
  padding: 18px;
}
.panel h3{margin:0 0 8px}
.panel p{margin:0; color: rgba(234,240,247,.86)}

.quote{
  margin: 0 0 10px;
  padding: 12px 12px;
  border-left: 3px solid rgba(74,163,255,.65);
  background: rgba(0,0,0,.12);
  border-radius: 12px;
  color: rgba(234,240,247,.88);
}

.footer{
  border-top:1px solid var(--line);
  padding: 18px 0;
  background: rgba(11,15,23,.55);
}
.footer__inner{display:flex; align-items:center; justify-content:space-between; gap:12px}
.footer__brand{font-weight:900}
.footer__meta{color: var(--muted); font-size:12px}
.footer__call{color: rgba(234,240,247,.92); font-size:13px}

.stickycall{
  display:none;
  position:fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 50;
  text-align:center;
  padding: 14px 16px;
  border-radius: 16px;
  font-weight: 950;
  letter-spacing:.2px;
  border: 1px solid rgba(74,163,255,.60);
  background: linear-gradient(135deg, rgba(74,163,255,.22), rgba(118,209,255,.12));
  box-shadow: 0 18px 60px rgba(0,0,0,.50);
}

@media (max-width: 960px){
  .hero__grid{grid-template-columns: 1fr; }
  .hero__right{position:relative; top:auto}
  .trust{grid-template-columns: 1fr}
  .section__grid{grid-template-columns: 1fr}
  .topbar__call{align-items:flex-start}
}

@media (max-width: 700px){
  .stickycall{display:block}
  .topbar__call{display:none}
}
