 :root{
      --bg:#0b0b0d;
      --text:#f2f2f2;
      --muted:#b9bcc6;
      --line:rgba(255,255,255,.10);
      --gold:#b8942a;
      --gold2:#d4b35a;
      --card: rgba(255,255,255,.05);
      --shadow: 0 12px 40px rgba(0,0,0,.35);
      --radius: 18px;
      --radius2: 14px;
      --max: 1160px;
    }
    *{box-sizing:border-box}
    body{
      margin:0;
      font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
      color:var(--text);
      background: linear-gradient(180deg, #070708 0%, #0c0c0f 35%, #0a0a0c 100%);
    }
    a{color:inherit; text-decoration:none}
    .wrap{max-width:var(--max); margin:0 auto; padding:0 18px}
.mob_lang{
  display: none;
}
    /* Top slogan */
    .topbar{
      background: rgba(255,255,255,.04);
      border-bottom:1px solid var(--line);
      position: sticky;
      top: 0;
      z-index: 50;
      backdrop-filter: blur(10px);
    }
    .topbar .row{
      display:flex; align-items:center; justify-content:space-between;
      gap:12px;
      padding:10px 0;
    }
    .slogan{
      font-weight:900;
      letter-spacing:.12em;
      text-transform:uppercase;
      font-size:12px;
      opacity:.92;
      white-space:nowrap;
    }
    .quick{
      display:flex; gap:10px; align-items:center; justify-content:flex-end;
      color:var(--muted);
      font-size:13px;
      flex-wrap:wrap;
    }
    .pill{
      border:1px solid var(--line);
      background: rgba(255,255,255,.03);
      padding:6px 10px;
      border-radius:999px;
      white-space:nowrap;
    }
    .pill b{color:#fff}
    .pill.gold{border-color: rgba(184,148,42,.35); background: rgba(184,148,42,.10)}

    /* Header */
    header{
      background: rgba(255,255,255,.92);
      color:#121216;
      border-bottom: 1px solid rgba(0,0,0,.08);
    }
    header .row{
      display:flex; align-items:center; justify-content:space-between;
      gap:14px;
      padding:16px 0;
    }
    .brand{
      display:flex; flex-direction:column; gap:4px;
      min-width: 240px;
    }
    .brand .name{
      font-weight:950;
      letter-spacing:.16em;
      text-transform:uppercase;
      font-size:20px;     /* крупнее */
      line-height:1.05;
      color:var(--gold);
    }
    .brand .sub{
      font-size:13px;
      color:#3b3e46;
      font-weight:700;
    }
    nav{display:flex; gap:12px; flex-wrap:wrap; justify-content:flex-end; align-items:center}
    nav a{
      font-weight:800;
      font-size:13px;
      color:#242733;
      opacity:.92;
      padding:10px 10px;
      border-radius:12px;
    }
    nav a:hover{background:rgba(0,0,0,.05); opacity:1}
    nav a.active{background:rgba(184,148,42,.14); color:#1b1a12}
    .cta{
      background: linear-gradient(180deg, var(--gold2), var(--gold));
      color:#17140b;
      font-weight:950;
      border:none;
      border-radius:999px;
      padding:10px 14px;
      cursor:pointer;
      white-space:nowrap;
      box-shadow: 0 8px 18px rgba(184,148,42,.25);
    }

    /* Hero */
    .hero{
      margin:18px 0 8px;
      border-radius: var(--radius);
      background:
        radial-gradient(1000px 450px at 20% 20%, rgba(184,148,42,.18), transparent 60%),
        linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
      border:1px solid var(--line);
      box-shadow: var(--shadow);
      padding:24px 20px;
    }
    .hero h1{
      margin:0 0 10px;
      font-size: 40px;
      line-height:1.08;
      letter-spacing:-.02em;
    }
    .hero p{
      margin:0;
      color:var(--muted);
      line-height:1.6;
      max-width: 78ch;
      font-size: 15px;
    }
    .hero .accent{color:var(--gold2); font-weight:950}

    section{padding:18px 0}
    .sectionTitle{
      font-size:26px;
      margin:0 0 8px;
      letter-spacing:-.01em;
    }
    .sectionSub{
      margin:0 0 14px;
      color:var(--muted);
      line-height:1.55;
      font-size:14px;
    }

    /* Project cards */
    .pGrid{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:14px;
    }
    .pCard{
      border:1px solid var(--line);
      background: var(--card);
      border-radius: var(--radius2);
      padding:16px;
      overflow:hidden;
    }
    .badgeRow{display:flex; gap:8px; flex-wrap:wrap; align-items:center; margin-bottom:10px}
    .badge{
      border:1px solid rgba(255,255,255,.14);
      background: rgba(0,0,0,.28);
      padding:7px 10px;
      border-radius:999px;
      font-size:12px;
      font-weight:900;
    }
    .badge.gold{border-color: rgba(184,148,42,.45); background: rgba(184,148,42,.14)}
    .pCard h3{margin:0 0 6px; font-size:16.5px; letter-spacing:-.01em}
    .meta{margin:0 0 10px; color:var(--muted); font-size:13.5px; line-height:1.5}
    .kv{
      display:grid;
      grid-template-columns: 1fr;
      gap:6px;
      border-top:1px dashed rgba(255,255,255,.14);
      padding-top:10px;
      margin-top:10px;
    }
    .kv div{
      display:flex; justify-content:space-between; gap:10px;
      font-size:13.5px;
      color:#d9dbe3;
    }
    .kv b{color:#fff}
    .actions{
      display:flex; gap:10px; flex-wrap:wrap;
      margin-top: 12px;
    }
    .btn{
      border-radius:999px;
      padding:10px 12px;
      font-weight:950;
      border:1px solid rgba(255,255,255,.14);
      background: rgba(0,0,0,.28);
      color:#fff;
      cursor:pointer;
    }
    .btn.gold{
      background: linear-gradient(180deg, var(--gold2), var(--gold));
      color:#17140b;
      border:none;
    }

    /* Request block */
    .req{
      margin-top: 10px;
      border:1px solid var(--line);
      border-radius: var(--radius);
      background: rgba(255,255,255,.04);
      padding:18px;
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap:14px;
      align-items:start;
    }
    .req h4{margin:0 0 6px; font-size:18px}
    .req p{margin:0; color:var(--muted); line-height:1.55; font-size:14px}
    form{display:grid; gap:10px}
    .row2{display:grid; grid-template-columns: 1fr 1fr; gap:10px}
    label{font-size:12px; color:#cbd0dc; font-weight:900}
    input, textarea{
      width:100%;
      border:1px solid rgba(255,255,255,.14);
      border-radius:14px;
      padding:11px 12px;
      font-size:14px;
      outline:none;
      background: rgba(0,0,0,.25);
      color:#fff;
    }
    textarea{min-height:90px; resize:vertical}

    footer{
      border-top:1px solid var(--line);
      background:#050506;
      padding:26px 0;
      color:#cfd2db;
      margin-top: 18px;
    }
    .foot{
      display:flex; justify-content:space-between; gap:14px; flex-wrap:wrap;
      align-items:flex-start;
    }
    .foot .b{
      font-weight:950; letter-spacing:.14em; text-transform:uppercase; color:#fff;
    }
    .small{color:#aeb2bf; font-size:13px; line-height:1.55}
    .copy{color:#7f8595; font-size:12px; margin-top:10px}

    @media (max-width: 980px){
      .pGrid{grid-template-columns: 1fr}
      .req{grid-template-columns: 1fr}
      .hero h1{font-size:32px}
      .mob_lang{
  display: block;
          text-align: right;
}
    }
    @media (max-width: 520px){
      .row2{grid-template-columns:1fr}
      .brand .name{font-size:18px}
      .hero h1{font-size:28px}
      .slogan{font-size:11px}
      .quick{font-size:12px}
    }

    /* Desktop topbar visible, mobile will hide */
.topbarDesktop{ display:block; }

/* Burger */
.burger{
  display:none;
  width:44px;
  height:44px;
  border-radius:12px;
  border:1px solid rgba(0,0,0,.10);
  background:#fff;
  cursor:pointer;
  padding:10px;
  align-items:center;
  justify-content:center;
  gap:5px;
}
.burger span{
  display:block;
  width:18px;
  height:2px;
  background:#1d1f28;
  border-radius:2px;
}

/* Desktop nav */
.navDesktop{ display:flex; }

/* Mobile menu overlay */
.mMenu{ display:none; }
.mMenu.is-open{ display:block; }

.mMenu__backdrop{
  position:fixed;
  inset:0;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(6px);
  z-index: 1000;
}
.mMenu__panel{
  position:fixed;
  top:0;
  left:0;
  height:100dvh;
  width:min(92vw, 360px);
  background: linear-gradient(180deg, #0b0b0d, #0a0a0c);
  color:#f2f2f2;
  border-right:1px solid rgba(255,255,255,.10);
  z-index:1001;
  padding:16px;
  box-shadow: 0 18px 50px rgba(0,0,0,.55);
  transform: translateX(-102%);
  transition: transform .22s ease;
  overflow:auto;
}
.mMenu.is-open .mMenu__panel{ transform: translateX(0); }

.mMenu__head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
  padding-bottom:12px;
  border-bottom:1px solid rgba(255,255,255,.10);
  margin-bottom:12px;
}
.mMenu__title{
  font-weight:900;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:#d4b35a;
  font-size:15px;
}
.mMenu__slogan{
  margin-top:4px;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
  font-size:11px;
  color:#fff;
  opacity:.9;
}
.mMenu__close{
  width:40px;
  height:40px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.06);
  color:#fff;
  cursor:pointer;
}
.mMenu__nav{
  display:grid;
  gap:8px;
  padding:10px 0 14px;
}
.mMenu__nav a,
.mMenu__nav button{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  font-weight:800;
  color:#fff;
}
.mMenu__nav a:hover{ background: rgba(255,255,255,.06); }
.mMenu__nav a.cta{
  border:none;
  color:#17140b;
  background: linear-gradient(180deg, #d4b35a, #b8942a);
}
.mMenu__quick{
  padding-top:12px;
  border-top:1px solid rgba(255,255,255,.10);
}

/* Mobile breakpoint */
@media (max-width: 980px){
  .navDesktop{ display:none; }
  .burger{ display:inline-flex; }
 nav a.active {
    background: rgba(184, 148, 42, .14);
    color: #ffffff;
}
  /* hide topbar on mobile (we show slogan in header + menu) */
  .topbarDesktop{ display:none; }

  header .row{ justify-content:space-between; }
  .brand{
    min-width:auto;
    align-items:flex-end;
    text-align:right;
  }
  .brand .sub{
    font-size:11px;
    letter-spacing:.12em;
    text-transform:uppercase;
    font-weight:800;
    color:#2f323b;
  }
}