:root{
  --blue:#0B5FBF;
  --blue2:#0A4A97;
  --orange:#F26A2A;
  --orange2:#FF9B2F;

  --bg:#071326;
  --card: rgba(255,255,255,.06);
  --card2: rgba(255,255,255,.04);
  --text:#ECF3FF;
  --muted: rgba(236,243,255,.78);
  --line: rgba(255,255,255,.14);
  --shadow: 0 18px 55px rgba(0,0,0,.45);
  --radius: 18px;
  --radius2: 24px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
html, body {
  min-height: 100%;
}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:
    radial-gradient(900px 600px at 10% -10%, rgba(242,106,42,.22), transparent 60%),
    radial-gradient(900px 600px at 90% 0%, rgba(11,95,191,.22), transparent 60%),
    var(--bg);
	  /* важно: да не се повтаря на ленти */
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}

a{color:inherit; text-decoration:none}
.container{width:min(1120px, 92vw); margin:0 auto}

.topbar{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(7,19,38,.72);
  border-bottom:1px solid var(--line);
}
.topbar__inner{display:flex; align-items:center; justify-content:space-between; padding:12px 0; gap:12px}

.brand{display:flex; align-items:center; gap:10px}
.brand__logo{
  width:56px;
  height:56px;
  border-radius:999px;
  object-fit:cover;
  object-position:center;
  padding:0;                  /* махаме вътрешния padding */
  border:1px solid var(--line);
  background: rgba(255,255,255,.08);
}
.brand__text{display:grid; gap:2px}
.brand__name{font-weight:900; letter-spacing:.2px}
.brand__sub{font-size:12px; color:var(--muted); font-weight:700}

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

.topbar__actions{display:flex; align-items:center; gap:10px}
.burger{
  display:none; width:42px; height:40px;
  border:1px solid var(--line);
  border-radius:14px; background:transparent; cursor:pointer;
}
.burger span{display:block; width:18px; height:2px; margin:5px auto; background:var(--text); border-radius:99px; opacity:.9}

.mobileNav{display:none; border-bottom:1px solid var(--line); background: rgba(7,19,38,.92)}
.mobileNav__inner{padding:14px 0 18px; display:grid; gap:10px}
.mLink{padding:10px 0; color:var(--muted); font-weight:900}
.mCta{margin-top:4px}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 14px;
  border-radius:16px;
  font-weight:900;
  font-size:14px;
  border:1px solid var(--line);
  transition: transform .08s ease, filter .2s ease, background .2s ease;
}
.btn:active{transform: translateY(1px)}
.btn--primary{
  border-color: transparent;
  color:#061022;
  background: linear-gradient(135deg, var(--orange), var(--orange2));
}
.btn--primary:hover{filter:brightness(1.05)}
.btn--ghost{background: rgba(0,0,0,.05)}
.btn--ghost:hover{background: rgba(255,255,255,.09)}
.btn--full{width:100%}

.hero{padding: 56px 0 28px}
.hero__grid{display:grid; grid-template-columns: 1.15fr .85fr; gap:22px; align-items:stretch}

.pill{
  display:inline-flex; padding:8px 12px; border-radius:999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.05);
  color: var(--muted);
  font-weight:800; font-size:13px;
}
h1{margin:12px 0 10px; font-size: clamp(30px, 4vw, 48px); line-height:1.06; letter-spacing:-.5px}
.accent{
  background: linear-gradient(135deg, var(--orange), var(--orange2));
  -webkit-background-clip:text; background-clip:text;
  color:transparent;
}
.lead{color:var(--muted); font-size:16px; line-height:1.55; margin:0 0 18px}
.hero__cta{display:flex; gap:10px; flex-wrap:wrap}

.trust{margin-top:18px; display:flex; gap:12px; flex-wrap:wrap}
.trust__item{
  display:flex; align-items:center; gap:8px;
  padding:10px 12px; border:1px solid var(--line);
  border-radius:16px; background: rgba(255,255,255,.04);
  color:var(--muted); font-weight:800; font-size:13px;
}
.trust__num{color: var(--orange2); font-weight:1000}

.card{
  border-radius: var(--radius2);
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
  border:1px solid var(--line);
  box-shadow: var(--shadow);
  padding:18px;
}
.card__title{margin:0 0 6px; font-size:18px}
.card__sub{margin:0 0 14px; color:var(--muted); font-weight:700; font-size:13px; line-height:1.45}

.form{display:grid; gap:12px}
label{display:grid; gap:6px; color:var(--muted); font-weight:800; font-size:13px}
input, textarea, select{
  width:100%;
  padding:12px 12px;
  border-radius:16px;
  border:1px solid var(--line);
  background: rgba(6,16,32,.65);
  color: var(--text);
  outline:none;
}
textarea{resize:vertical}
input:focus, textarea:focus, select:focus{border-color: rgba(242,106,42,.7)}
.tiny{margin:0; color: rgba(236,243,255,.72); font-size:12px; line-height:1.35}

.section{padding: 54px 0}
.section--waves{
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  background:
    radial-gradient(900px 500px at 10% 0%, rgba(11,95,191,.18), transparent 60%),
    radial-gradient(900px 500px at 80% 0%, rgba(242,106,42,.16), transparent 60%),
    rgba(255,255,255,.02);
}
.section--soft{
  border-top:1px solid var(--line);
  background: radial-gradient(900px 500px at 70% 0%, rgba(11,95,191,.16), transparent 60%),
              rgba(255,255,255,.02);
}
.section__head{display:grid; gap:8px; margin-bottom:18px}
.section__head h2{margin:0; font-size:26px}
.section__head p{margin:0; color:var(--muted); font-weight:700}

.grid{display:grid; grid-template-columns: repeat(3, 1fr); gap:14px}
.tile{padding:16px; border-radius: var(--radius); border:1px solid var(--line); background: var(--card2)}
.tile h3{margin:0 0 6px; font-size:16px}
.tile p{margin:0 0 10px; color:var(--muted); font-weight:700; line-height:1.45}
.tile ul{margin:0; padding-left:18px; color: rgba(236,243,255,.9); line-height:1.6}
.tile li{margin:3px 0}

.projects{display:grid; grid-template-columns: repeat(3, 1fr); gap:14px}
.project{
  border-radius: var(--radius);
  border:1px solid var(--line);
  background: var(--card2);
  overflow:hidden;
}
.project__head{padding:14px 14px 10px}
.project__title{margin:0; font-weight:950}
.project__meta{margin:6px 0 0; color:var(--muted); font-weight:750; font-size:13px}
.tags{display:flex; flex-wrap:wrap; gap:8px; margin-top:10px}
.tag{
  border:1px solid rgba(242,106,42,.35);
  background: rgba(242,106,42,.10);
  padding:6px 10px;
  border-radius:999px;
  font-weight:900;
  font-size:12px;
  color: rgba(255,255,255,.92);
}
.project__grid{display:grid; grid-template-columns: repeat(2, 1fr); gap:8px; padding:0 14px 14px}
.pimg{
  width:100%;
  height:180px;
  object-fit:cover;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
}

.hint{margin-top:14px; padding:14px; border-radius: var(--radius); border:1px solid var(--line); background: rgba(255,255,255,.04); color: var(--muted)}

.reviews{display:grid; grid-template-columns: repeat(3, 1fr); gap:14px}
.review{padding:16px; border-radius: var(--radius); border:1px solid var(--line); background: var(--card2)}
.review__text{margin:0 0 10px; color: rgba(236,243,255,.95); line-height:1.55; font-weight:750}
.review__meta{margin:0; color: var(--muted); font-weight:800; font-size:13px}

.contact{display:grid; grid-template-columns: 1fr 1fr; gap:18px; align-items:start}
.lead2{color:var(--muted); font-weight:750; line-height:1.55; margin:0 0 14px}
.contact__cards{display:grid; grid-template-columns: repeat(3, 1fr); gap:12px; margin-top:14px}
.mini{padding:14px; border-radius: var(--radius); border:1px solid var(--line); background: var(--card2)}
.mini__k{margin:0 0 6px; color: var(--muted); font-weight:950; font-size:12px}
.mini__v{margin:0; font-weight:1000}
.quickLinks{margin-top:12px; display:flex; gap:10px; flex-wrap:wrap}

.footer{padding: 22px 0; border-top:1px solid var(--line); background: rgba(255,255,255,.02)}
.footer__inner{display:flex; align-items:center; justify-content:space-between; gap:12px}
.footer__links{display:flex; gap:14px; color: var(--muted); font-weight:900; font-size:13px}
.footer__links a:hover{color:var(--text)}
.footLeft{display:flex; align-items:center; gap:10px}
.footLogo{
  width:40px;
  height:40px;
  border-radius:14px;
  object-fit:cover;
  padding:0;
  border:1px solid var(--line);
  background: rgba(255,255,255,.08);
}
.footName{font-weight:1000}

.fab{
  position: fixed;
  right: 16px;               /* долу вляво, както искаш */
  bottom: 16px;
  width: auto;
  min-width: 56px;
  height: 56px;
  padding: 0 16px;
  border-radius: 999px;

  display: flex;
  align-items: center;
  gap: 10px;

  background: rgba(7,19,38,.92);   /* тъмен, чист */
  color: #ECF3FF;
  font-size: 15px;
  font-weight: 900;

  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 12px 30px rgba(0,0,0,.45);
  backdrop-filter: blur(8px);

  transition: transform .15s ease, background .2s ease;
}

.fab:hover{
  background: rgba(7,19,38,1);
  transform: translateY(-2px);
}

@media (max-width: 980px){
  .hero__grid{grid-template-columns: 1fr;}
  .grid{grid-template-columns: repeat(2, 1fr)}
  .reviews{grid-template-columns: repeat(2, 1fr)}
  .contact{grid-template-columns: 1fr}
  .contact__cards{grid-template-columns: repeat(2, 1fr)}
  .projects{grid-template-columns: 1fr}
}
@media (max-width: 720px){
  .nav{display:none}
  .burger{display:inline-block}
  .grid{grid-template-columns: 1fr}
  .reviews{grid-template-columns: 1fr}
  .contact__cards{grid-template-columns: 1fr}
}


.reviewCard{
  display:grid;
  gap:12px;
  padding:16px;
  border-radius: var(--radius);
  border:1px solid var(--line);
  background: var(--card2);
}
.reviewTop{
  display:flex;
  align-items:center;
  gap:12px;
}
.avatar{
  width:52px;
  height:52px;
  border-radius:999px;
  object-fit:cover;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
}
.rName{
  font-weight:1000;
  line-height:1.1;
}
.rMeta{
  color: var(--muted);
  font-weight:800;
  font-size:13px;
  margin-top:3px;
}
.stars{
  display:flex;
  gap:3px;
  margin-left:auto;
}
.star{
  width:18px;
  height:18px;
  display:inline-block;
}
.reviewText{
  margin:0;
  color: rgba(236,243,255,.95);
  line-height:1.55;
  font-weight:750;
}


.videoGrid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:14px;
}
.videoCard{
  border-radius: var(--radius);
  border:1px solid var(--line);
  background: var(--card2);
  overflow:hidden;
}
.videoHead{
  padding:14px;
  font-weight:1000;
}
.videoWrap{
  position:relative;
  width:100%;
  aspect-ratio:16/9;
  background: rgba(255,255,255,.04);
}
.videoWrap iframe,
.videoWrap video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
}
@media (max-width: 980px){
  .videoGrid{grid-template-columns: 1fr;}
}

.cookieBanner{
  position: fixed;
  left: 0; right: 0; bottom: 0;
  padding: 14px;
  display:none;
  z-index: 999;
}
.cookieBox{
  width:min(980px, 94vw);
  margin:0 auto;
  border-radius: var(--radius);
  border:1px solid var(--line);
  background: rgba(7,19,38,.92);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  padding: 14px;
}
.cookieTitle{font-weight:1000; margin-bottom:6px}
.cookieText{color: var(--muted); font-weight:750; line-height:1.45}
.cookieText a{color: rgba(255,255,255,.92); text-decoration:underline}
.cookieBtns{display:flex; gap:10px; flex-wrap:wrap; margin-top:12px}

.topPhone{
  display: flex;
  align-items: center;
  gap: 8px;

  padding: 10px 14px;
  border-radius: 14px;

  font-weight: 1000;
  font-size: 15px;

  color: #ECF3FF;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.18);

  transition: background .2s ease;
}

.topPhone:hover{
  background: rgba(255,255,255,.12);
}


.videoWrap--short{
  aspect-ratio: 9 / 16;
  max-height: 640px; /* да не става супер високо на desktop */
  margin: 0 auto;
}
.videoWrap--wide{
  aspect-ratio: 16 / 9;
}
.videoWrap video{
  object-fit: cover;
}

.socials{
  display:flex;
  gap:12px;
  justify-content:center;
  margin-top:16px;
}

.social{
  padding:10px 14px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  color:#ECF3FF;
  font-weight:900;
  cursor:pointer;
}

.social:hover{
  background: rgba(255,255,255,.15);
}

.formStatus{padding:8px 10px;border-radius:12px;background:rgba(0,0,0,.04)}
input, textarea, select {
  font-size: 16px !important;
}

@supports (-webkit-touch-callout: none) {
  input, textarea, select,
  input[type="text"], input[type="tel"], input[type="email"], input[type="number"],
  input[type="search"], input[type="url"], input[type="password"] {
    font-size: 16px !important;
    line-height: 1.2;
  }
}

.some-wrapper { transform: scale(0.9); }

html { font-size: 62.5%; } /* 1rem = 10px */