:root{
  --bg:#0f172a;          /* slate-900 */
  --panel:#111827;       /* gray-900 */
  --muted:#94a3b8;       /* slate-400 */
  --text:#e5e7eb;        /* gray-200 */
  --accent:#f59e0b;      /* amber-500 */
  --accent-2:#10b981;    /* emerald-500 */
  --card:#1f2937;        /* gray-800 */
  --border:#334155;      /* slate-700 */
  --shadow: 0 10px 25px rgba(0,0,0,.35);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Noto Sans";
  background: radial-gradient(1200px 600px at 20% -10%, rgba(245,158,11,.15), transparent),
              radial-gradient(900px 500px at 120% -20%, rgba(16,185,129,.15), transparent),
              var(--bg);
  color:var(--text);
  line-height:1.65;
}

.container{width:min(1100px, 92%); margin-inline:auto;}
.header{
  position:sticky; top:0; z-index:50;
  backdrop-filter:saturate(180%) blur(6px);
  background:rgba(15,23,42,.7);
  border-bottom:1px solid var(--border);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0; gap:10px;
}
.brand{display:flex; align-items:center; gap:12px; text-decoration:none; color:var(--text); font-weight:700; letter-spacing:.2px}
.brand img{width:40px; height:40px; object-fit:cover; border-radius:10px; box-shadow:var(--shadow)}
.nav a{color:var(--text); text-decoration:none; opacity:.9}
.nav .menu{display:flex; gap:18px; flex-wrap:wrap}
.btn{
  display:inline-block; padding:12px 16px; border-radius:12px; text-decoration:none; color:#0b0b0b;
  background:linear-gradient(180deg, #fbbf24, #f59e0b);
  font-weight:700; box-shadow:var(--shadow);
}

.hero{
  padding:64px 0 24px 0;
  display:grid; grid-template-columns: 1.1fr 1fr; gap:30px; align-items:center;
}
.hero .card{ order:1; }
.hero .hero-visual{
  order:2;
  width:100%; border-radius:18px; border:1px solid var(--border); box-shadow:var(--shadow);
  aspect-ratio:16/9; object-fit:cover; display:block;
}
.hero h1{font-size:clamp(26px,4.5vw,44px); margin:0 0 8px 0}
.hero p{color:var(--muted); margin:0 0 18px 0}
.card{
  background:linear-gradient(180deg, rgba(31,41,55,.65), rgba(17,24,39,.8));
  border:1px solid var(--border);
  border-radius:16px; padding:20px; box-shadow:var(--shadow);
}

.section{padding:36px 0}
.section h2{font-size:clamp(22px,3.4vw,32px); margin:0 0 14px 0}
.grid{ display:grid; gap:16px; }
.grid.cols-3{grid-template-columns:repeat(3,1fr)}

.item{
  background:var(--card); border:1px solid var(--border);
  border-radius:16px; padding:16px; position:relative; overflow:hidden;
}
.item h3{margin:0 0 6px 0; font-size:18px}
.item p{margin:0; color:var(--muted)}

.prices{display:grid; gap:12px}
.price-row{
  display:flex; align-items:center; justify-content:space-between; gap:16px;
  padding:12px 14px; border:1px dashed var(--border); border-radius:14px; background:rgba(2,6,23,.3);
}
.price-row .label{font-weight:600}
.price-row .amount{font-variant-numeric:tabular-nums; font-weight:700}
.amount .bgn, .amount .eur{white-space:nowrap}
.amount .sep{opacity:.6; margin:0 6px}

.notice{ margin-top:8px; color:var(--muted); font-size:14px }

.badge{
  display:inline-flex; align-items:center; gap:10px; background:rgba(16,185,129,.15);
  border:1px solid rgba(16,185,129,.35); color:#a7f3d0; padding:8px 12px; border-radius:999px; font-weight:600; font-size:14px
}

.footer{
  border-top:1px solid var(--border);
  background:rgba(2,6,23,.6);
  padding:22px 0; color:var(--muted); font-size:14px
}
.footer a{color:var(--text); opacity:.9}
.small{font-size:12px; color:var(--muted)}

/* Mobile adjustments */
@media (max-width: 980px){
  .hero{ grid-template-columns:1fr; gap:18px; }
  .hero .card{ order:2; }
  .hero .hero-visual{ order:1; }
  .nav{ flex-wrap:wrap; }
  .nav .menu{ width:100%; justify-content:center; gap:12px; }
  .btn{ width:100%; text-align:center; }
}
@media (max-width: 680px){
  .grid.cols-3{ grid-template-columns:1fr; }
  .price-row{ flex-direction:column; align-items:flex-start; }
}

/* ===== Допълнителни мобилни подобрения ===== */
@media (max-width: 768px){
  .container{ width:94%; }

  .header .nav{ padding:8px 0; gap:10px; }
  .brand img{ width:28px; height:28px; }
  .brand span{ max-width:160px; font-size:14px; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
  .header .btn{ padding:8px 10px; font-size:14px; border-radius:10px; }

  .hero{ gap:12px; padding:12px 0 8px; }
  .hero-visual{ aspect-ratio:4/3; border-radius:12px; }
  .hero .badge, .hero h1{ display:none; } /* скриваме дублирания текст */
  .hero .card{ background:transparent; border:none; box-shadow:none; padding:0; }
  .hero .card .btn{ flex:1 1 48%; padding:10px 12px; border-radius:10px; }

  .grid.cols-3{ grid-template-columns:1fr; }
  .item{ padding:14px; }

  .prices .price-row{ padding:10px 12px; border-radius:12px; }
  .price-row .label, .price-row .amount{ font-size:15px; }

  #contact .grid{ grid-template-columns:1fr !important; gap:12px; }
}

@media (max-width: 360px){
  .header .btn{ display:none; }
  .brand span{ max-width:120px; }
  .hero .card .btn{ flex:1 1 100%; }
}
