:root{
  --bg:#0b1221;
  --bg2:#0a162a;
  --panel:#0f172acc;
  --muted:#cbd5e1;
  --text:#e5e7eb;
  --accent:#67e8f9;
  --accent2:#60a5fa;
  --line:#ffffff1a;
  --chip:#111827;
}

/* reset и базови неща */
*{box-sizing:border-box}
html,body{height:100%}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background:linear-gradient(180deg,var(--bg2),var(--bg));
  color:var(--text);
}
a{color:#bfe8ff;text-decoration:none}
a:hover{opacity:.9}
img{max-width:100%;height:auto}

.container{
  max-width:1320px;
  margin:0 auto;
  padding:0 24px;
}

@media (min-width:1600px){
  .container{
    max-width:1440px;
  }
}


/* link за прескачане към съдържанието */
.sr-only-focusable{
  position:absolute;
  left:-10000px;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
}
.sr-only-focusable:focus{
  position:static;
  width:auto;
  height:auto;
  display:inline-block;
  padding:8px 12px;
  border-radius:8px;
  background:#0c1426;
  border:1px solid var(--line);
  margin:6px;
}

/* горна навигация */
.topnav{
  position:sticky;
  top:0;
  z-index:1000;
  backdrop-filter:saturate(140%) blur(10px);
  background:linear-gradient(180deg,#0b1221ee,#0a162add);
  border-bottom:1px solid var(--line);
}
.topnav .wrap{
  display:flex;
  align-items:center;
  gap:18px;
  padding:10px 18px;
}
/* BRAND / LOGO */
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:900;
  letter-spacing:.2px;
}

.brand-logo{
  display:flex;
  align-items:center;
  height:64px;      /* тук контролираш размера */
}

.brand-logo img{
  display:block;
  height:100%;
  width:auto;
  max-height:64px;  /* защита */
}

/* fallback когато НЯМА лого */
.brand b{
  display:grid;
  place-items:center;
  width:28px;
  height:28px;
  border-radius:8px;
  background:linear-gradient(135deg,var(--accent),var(--accent2));
  color:#041018;
  box-shadow:0 6px 16px #0006 inset;
  font-size:14px;
}

.brand-text{
  color:#e5e7eb;
  font-size:16px;
  white-space:nowrap;
}.menu{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-left:auto;
}
.menu a{
  padding:8px 12px;
  border-radius:999px;
  border:1px solid var(--line);
  background:#0c1426;
  color:#dbeafe;
  font-weight:700;
  font-size:13px;
}
.menu a.active{
  outline:2px solid var(--accent);
  outline-offset:1px;
}

/* лента 18 плюс */
.age18{
  border-top:1px solid #ffffff1a;
  border-bottom:1px solid #ffffff1a;
  background:#3f1d1d;
  color:#fecaca;
}
.age18 .container{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  text-align:center;
  font-weight:500;
  font-size:12px;
  letter-spacing:.2px;
}
.age18 b{color:#fff}

/* отстъп след header */
.header-gap{
  height:14px;
}

/* burger бутон за мобилно меню */
.burger{
  display:none;
}
@media (max-width:900px){
  .burger{
    display:inline-grid;
    place-items:center;
    margin-left:auto;
    width:40px;
    height:40px;
    border-radius:12px;
    cursor:pointer;
    border:1px solid var(--line);
    background:#0c1426;
    color:#dbeafe;
    font-size:22px;
    line-height:1;
  }
  .topnav .menu{
    position:absolute;
    left:0;
    right:0;
    top:100%;
    z-index:1001;
    display:none;
    flex-direction:column;
    gap:10px;
    padding:12px 18px 16px;
    background:linear-gradient(180deg,#0b1221ee,#0a162add);
    border-bottom:1px solid var(--line);
    backdrop-filter:saturate(140%) blur(10px);
  }
  .topnav .menu.open{
    display:flex;
  }
  .topnav .menu a{
    display:block;
    width:100%;
    padding:12px 14px;
    text-align:left;
    border-radius:12px;
    border:1px solid var(--line);
    background:#0c1426;
    font-weight:700;
    font-size:15px;
  }
}

/* hero секция */
.hero{
  position:relative;
  overflow:hidden;
  padding:84px 0 36px;
  text-align:center;
}
.glow{
  position:absolute;
  inset:-20% -10% auto -10%;
  height:60vh;
  filter:blur(80px);
  opacity:.55;
  background:
    radial-gradient(800px 400px at 15% 10%, #1e3a8a88, transparent 60%),
    radial-gradient(800px 400px at 85% 0%, #0ea5e988, transparent 60%);
}
.badge{
  display:inline-flex;
  gap:8px;
  align-items:center;
  padding:8px 12px;
  border:1px solid var(--line);
  border-radius:999px;
  background:#0b1221aa;
  backdrop-filter:blur(8px);
  box-shadow:0 8px 28px #0006;
  font-weight:700;
}
h1{
  font-size:40px;
  line-height:1.12;
  margin:16px 0 10px;
}
.grad{
  background:linear-gradient(90deg,var(--accent),var(--accent2));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.lead{
  color:var(--muted);
  max-width:880px;
  margin:0 auto 12px;
}
.sublead{
  color:var(--muted);
  max-width:880px;
  margin:0 auto 22px;
}
.cta{
  display:inline-flex;
  gap:10px;
  align-items:center;
  padding:14px 18px;
  border-radius:14px;
  text-decoration:none;
  background:linear-gradient(135deg,var(--accent),var(--accent2));
  color:#041018;
  font-weight:800;
  box-shadow:0 10px 24px #60a5fa55;
  transition:.2s;
}
.cta:hover{
  transform:translateY(-2px);
}

/* layout */
.row{
  display:grid;
  gap:18px;
}
@media(min-width:900px){
  .row{grid-template-columns:1.1fr 1fr}
}

/* панели и карти */
.panel{
  background:var(--panel);
  border:1px solid var(--line);
  border-radius:18px;
  padding:18px;
  box-shadow:0 12px 36px #0008;
}
.panel h2{
  font-size:22px;
  margin:6px 0 10px;
}
.list{
  display:grid;
  gap:10px;
}
.li{
  display:flex;
  gap:10px;
  align-items:flex-start;
  background:#0b1221;
  border:1px solid #ffffff12;
  border-radius:12px;
  padding:12px;
}
.li b{color:#fff}

.grid3{
  display:grid;
  gap:14px;
}
@media(min-width:900px){
  .grid3{grid-template-columns:repeat(3,1fr)}
}

.step,
.card{
  background:#0b1221;
  border:1px solid #ffffff12;
  border-radius:12px;
  padding:14px;
}

/* чипове */
.chips{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:8px;
}
.chip{
  background:var(--chip);
  border:1px solid var(--line);
  color:#cbd5e1;
  font-size:12px;
  padding:6px 10px;
  border-radius:999px;
}

/* FAQ */
.faq .q{
  cursor:pointer;
  padding:14px;
  border:1px solid #ffffff14;
  border-radius:12px;
  background:#0b1221;
  margin:8px 0;
}
.faq .a{
  display:none;
  padding:12px 14px;
  background:#091427;
  border:1px solid #ffffff12;
  border-radius:12px;
  margin:-6px 0 10px;
}

/* sticky CTA долу */
.sticky{
  position:fixed;
  left:12px;
  right:12px;
  bottom:12px;
  z-index:900;
  display:flex;
  gap:10px;
  justify-content:center;
}
.sticky a{
  flex:1;
  max-width:220px;
  text-align:center;
  border-radius:999px;
  padding:12px 14px;
  text-decoration:none;
  font-weight:800;
}
.phone{
  background:#22c55e;
  color:#041018;
}
.msg{
  background:#0ea5e9;
  color:#041018;
}
.ghost{
  background:#111827;
  color:#e5e7eb;
  border:1px solid #ffffff18;
}

/* footer */
.footer{
  border-top:1px solid var(--line);
  margin-top:40px;
  padding:22px 0;
  text-align:center;
  color:#94a3b8;
  font-size:13px;
}

/* offset за anchor линовете при sticky header */
section[id]{scroll-margin-top:110px}

/* фокус */
a:focus,
button:focus{
  outline:2px dashed var(--accent);
  outline-offset:2px;
}

/* карта */
#map{
  width:100%;
  height:380px;
  border-radius:14px;
  border:1px solid var(--line);
  overflow:hidden;
}

/* карта Свилен */
.svilen{
  background:#0b1221;
  border:1px solid #ffffff12;
  border-radius:14px;
  padding:16px;
}
.svilen .avatar{
  width:180px;
  height:180px;
  margin:0 auto;
  border-radius:50%;
  overflow:hidden;
  border:3px solid #1f2937;
  box-shadow:0 6px 16px rgba(0,0,0,.35);
}
.svilen h4{
  margin:12px 0 6px;
}
.svilen .title{
  color:#a5b4fc;
  font-weight:700;
}
.svilen .meta{
  color:#94a3b8;
  font-size:14px;
}
.svilen .linkedin{
  display:inline-flex;
  align-items:center;
  gap:8px;
  border:1px solid #1e3a8a;
  background:#0b244a;
  color:#93c5fd;
  padding:8px 12px;
  border-radius:999px;
  font-weight:700;
}
.svilen .linkedin svg{
  width:18px;
  height:18px;
  fill:#60a5fa;
}
.svilen .opinion{
  text-align:center;
  margin-top:10px;
  font-size:13px;
  color:#9fb3c8;
}

/* по малки екрани: малко корекции */
@media (max-width:600px){
  h1{
    font-size:30px;
  }
  .panel{
    padding:14px;
  }
  .hero{
    padding-top:70px;
  }
}
