/* =============================================
   ВАРШАВА ДЛЯ СВОЇХ — assets/style.css
   Dark theme · Unbounded + Manrope
   ============================================= */
:root {
  --bg:      #080A0F;
  --surf:    #111318;
  --surf2:   #181C24;
  --border:  rgba(255,255,255,.07);
  --border2: rgba(255,255,255,.13);
  --gold:    #F5A623;
  --gold2:   #FFD166;
  --text:    #ECEAE2;
  --muted:   #6B7280;
  --muted2:  #9CA3AF;
  --r:       10px;
  --r2:      16px;
  --max:     1120px;
}

/* Reset */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{font-family:'Manrope',system-ui,sans-serif;background:var(--bg);color:var(--text);line-height:1.65;overflow-x:hidden}
a{color:inherit;text-decoration:none}
img{display:block;max-width:100%}
h1,h2,h3,h4{font-family:'Unbounded',sans-serif;line-height:1.2;font-weight:700}
h1{font-size:clamp(1.6rem,4vw,3rem);font-weight:900}
h2{font-size:clamp(1.2rem,2.5vw,1.75rem)}
h3{font-size:1.05rem}

/* Layout */
.container{max-width:var(--max);margin:0 auto;padding:0 1.25rem}

/* ---- HEADER ---- */
.site-header{
  position:sticky;top:0;z-index:100;
  background:rgba(8,10,15,.9);backdrop-filter:blur(16px);
  border-bottom:1px solid var(--border);
  padding:.75rem 0;
}
.hdr-inner{display:flex;align-items:center;gap:1rem}
.logo{display:flex;align-items:center;gap:.5rem;font-family:'Unbounded',sans-serif;font-weight:900;font-size:.85rem;white-space:nowrap}
.logo-dot{width:8px;height:8px;border-radius:50%;background:var(--gold);box-shadow:0 0 12px var(--gold);flex-shrink:0}
.logo-text{color:var(--text)}
.hdr-nav{display:flex;gap:1.25rem;overflow:hidden;flex:1;justify-content:center}
.hdr-nav a{font-size:.8rem;color:var(--muted2);white-space:nowrap;transition:color .2s}
.hdr-nav a:hover{color:var(--gold)}
.hdr-right{display:flex;align-items:center;gap:.75rem;margin-left:auto}
.lang-sw{display:flex;gap:4px}
.lang-sw a{font-size:.7rem;font-weight:700;padding:3px 8px;border-radius:6px;border:1px solid var(--border2);color:var(--muted2);transition:all .15s}
.lang-sw a.active,.lang-sw a:hover{border-color:var(--gold);color:var(--gold)}

/* Telegram CTA button */
.btn-cta{display:inline-flex;align-items:center;gap:.4rem;background:var(--gold);color:#000;font-family:'Unbounded',sans-serif;font-size:.7rem;font-weight:700;padding:.5rem 1rem;border-radius:8px;border:none;cursor:pointer;white-space:nowrap;transition:all .2s}
.btn-cta:hover{background:var(--gold2);transform:translateY(-1px)}
.btn-cta svg{flex-shrink:0}

/* Burger */
.burger{display:none;flex-direction:column;gap:5px;background:none;border:none;cursor:pointer;padding:.4rem}
.burger span{display:block;width:22px;height:2px;background:var(--text);border-radius:2px;transition:all .2s}
.burger.open span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.burger.open span:nth-child(2){opacity:0}
.burger.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

/* Mobile nav */
.mobile-nav{display:none;flex-direction:column;gap:.25rem;padding:1rem 1.25rem;border-top:1px solid var(--border);background:var(--surf)}
.mobile-nav.open{display:flex}
.mobile-nav a{font-size:.9rem;padding:.5rem 0;border-bottom:1px solid var(--border);color:var(--muted2)}
.mobile-nav a:last-child{border-bottom:none}
.btn-cta-mob{background:var(--gold)!important;color:#000!important;border-radius:8px!important;padding:.6rem 1rem!important;font-weight:700;margin-top:.5rem;justify-content:center;display:flex;align-items:center;gap:.4rem;border-bottom:none!important}
.lang-sw-mob{display:flex;gap:8px;padding:.5rem 0}
.lang-sw-mob a{font-size:.8rem;font-weight:700;color:var(--muted2);border-bottom:none!important}
.lang-sw-mob a.active{color:var(--gold)}

/* ---- BREADCRUMBS ---- */
.breadcrumbs{border-bottom:1px solid var(--border);padding:.5rem 0}
.bc-list{display:flex;flex-wrap:wrap;gap:.25rem;list-style:none;font-size:.8rem;color:var(--muted)}
.bc-list a{color:var(--muted2);transition:color .2s}.bc-list a:hover{color:var(--gold)}
.bc-sep{margin:0 .25rem;color:var(--muted)}

/* ---- HERO ---- */
.hero{position:relative;padding:4rem 0 3rem;overflow:hidden}
.hero-bg{position:absolute;inset:0;background:radial-gradient(ellipse 80% 60% at 50% 0%,rgba(245,166,35,.1) 0%,transparent 70%);pointer-events:none}
.hero-inner{position:relative;z-index:1;display:flex;align-items:flex-start;justify-content:space-between;gap:2rem;flex-wrap:wrap}
.hero-text{max-width:600px}
.hero-badge{display:inline-block;background:rgba(245,166,35,.1);border:1px solid rgba(245,166,35,.25);color:var(--gold);font-size:.7rem;font-weight:600;padding:.3rem .75rem;border-radius:999px;margin-bottom:1rem}
.hero-text h1{margin-bottom:.75rem}
.hero-sub{font-size:1rem;color:var(--muted2);margin-bottom:1.75rem;max-width:480px}
.btn-hero{display:inline-flex;align-items:center;gap:.5rem;background:var(--gold);color:#000;font-family:'Unbounded',sans-serif;font-size:.8rem;font-weight:700;padding:.85rem 1.75rem;border-radius:var(--r);transition:all .25s}
.btn-hero:hover{background:var(--gold2);transform:translateY(-2px);box-shadow:0 8px 32px rgba(245,166,35,.3)}
.hero-stats{display:grid;grid-template-columns:repeat(4,1fr);gap:1px;background:var(--border);border:1px solid var(--border);border-radius:var(--r2);overflow:hidden;align-self:flex-start;min-width:320px}
.stat-box{background:var(--surf);padding:1.25rem 1rem;text-align:center}
.stat-box strong{display:block;font-family:'Unbounded',sans-serif;font-size:1.75rem;font-weight:900;color:var(--gold);line-height:1}
.stat-box span{font-size:.75rem;color:var(--muted2);margin-top:.25rem;display:block}

/* ---- SECTIONS ---- */
.section-cats,.section-recent{padding:3rem 0}
.section-title{margin-bottom:1.5rem;font-size:1.4rem}
.section-block{margin-bottom:3rem}
.section-block h2{margin-bottom:1.25rem;font-size:1.25rem}

/* ---- CATEGORY GRID ---- */
.cats-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(140px,1fr));gap:.75rem}
.cat-card{display:flex;flex-direction:column;align-items:center;background:var(--surf);border:1px solid var(--border);border-radius:var(--r2);padding:1.25rem .75rem;text-align:center;transition:all .2s;cursor:pointer}
.cat-card:hover{border-color:var(--border2);background:var(--surf2);transform:translateY(-2px)}
.cat-emoji{font-size:2rem;margin-bottom:.5rem}
.cat-name{font-size:.8rem;font-weight:600;line-height:1.3}
.cat-cnt{font-size:.65rem;color:var(--muted);margin-top:.2rem}

/* Subcategories */
.subcat-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(180px,1fr));gap:.75rem}
.subcat-card{display:flex;align-items:center;gap:.75rem;background:var(--surf);border:1px solid var(--border);border-radius:var(--r);padding:.85rem 1rem;transition:all .2s}
.subcat-card:hover{border-color:var(--gold);transform:translateX(4px)}
.subcat-emoji{font-size:1.5rem;flex-shrink:0}
.subcat-name{font-size:.85rem;font-weight:600}
.subcat-cnt{font-size:.7rem;color:var(--muted);margin-left:auto}

/* District grid */
.dist-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(200px,1fr));gap:.75rem}
.dist-card{display:flex;align-items:center;justify-content:space-between;background:var(--surf);border:1px solid var(--border);border-radius:var(--r);padding:.85rem 1rem;transition:all .2s}
.dist-card:hover{border-color:var(--gold)}
.dist-all{border-color:rgba(245,166,35,.25);background:rgba(245,166,35,.05)}
.dist-name{font-size:.85rem;font-weight:500}
.dist-cnt{font-size:.75rem;color:var(--muted);background:var(--surf2);padding:2px 8px;border-radius:99px}

/* ---- BUSINESS GRID (cards) ---- */
.biz-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(260px,1fr));gap:1rem}
.biz-card{background:var(--surf);border:1px solid var(--border);border-radius:var(--r2);padding:1.25rem;transition:all .2s;display:flex;flex-direction:column;gap:.5rem}
.biz-card:hover{border-color:var(--border2);transform:translateY(-2px);box-shadow:0 8px 32px rgba(0,0,0,.3)}
.biz-card-top{display:flex;justify-content:space-between;align-items:center}
.biz-cat{font-size:.7rem;color:var(--muted2)}
.biz-rating{font-size:.75rem;color:var(--gold)}
.biz-name{font-size:.95rem;font-weight:700;line-height:1.3}
.biz-meta{display:flex;gap:.75rem;font-size:.75rem;color:var(--muted)}

/* ---- BUSINESS LIST (listing page) ---- */
.biz-list{display:flex;flex-direction:column;gap:.75rem}
.biz-list-item{background:var(--surf);border:1px solid var(--border);border-radius:var(--r2);padding:1.25rem;display:flex;align-items:flex-start;justify-content:space-between;gap:1.5rem;transition:border-color .2s}
.biz-list-item:hover{border-color:var(--border2)}
.biz-list-main{flex:1}
.biz-list-name{font-size:1.1rem;margin-bottom:.4rem}
.biz-list-name a{transition:color .2s}.biz-list-name a:hover{color:var(--gold)}
.biz-list-meta{display:flex;flex-wrap:wrap;gap:.5rem;font-size:.78rem;color:var(--muted);margin-bottom:.5rem}
.biz-list-desc{font-size:.85rem;color:var(--muted2);line-height:1.55}
.badge-top{background:var(--gold);color:#000;font-size:.6rem;font-weight:700;padding:2px 7px;border-radius:99px;margin-left:.5rem;vertical-align:middle}
.biz-list-actions{display:flex;flex-direction:column;gap:.5rem;flex-shrink:0}
.btn-detail{background:var(--gold);color:#000;font-size:.75rem;font-weight:700;padding:.45rem .9rem;border-radius:8px;white-space:nowrap;transition:background .2s}
.btn-detail:hover{background:var(--gold2)}
.btn-call,.btn-tg{display:inline-flex;align-items:center;justify-content:center;width:36px;height:36px;border-radius:8px;border:1px solid var(--border2);font-size:1rem;transition:border-color .2s}
.btn-call:hover,.btn-tg:hover{border-color:var(--gold)}

/* ---- BUSINESS DETAIL PAGE ---- */
.biz-page{padding:2rem 0 4rem}
.biz-header{display:flex;align-items:flex-start;justify-content:space-between;gap:1.5rem;margin-bottom:2rem;flex-wrap:wrap}
.biz-header-left{flex:1}
.biz-cat-badge{display:inline-block;background:rgba(245,166,35,.1);color:var(--gold);font-size:.75rem;padding:.25rem .65rem;border-radius:6px;margin-bottom:.5rem}
.biz-header h1{margin-bottom:.5rem;font-size:clamp(1.4rem,3vw,2rem)}
.biz-header-meta{display:flex;flex-wrap:wrap;gap:.75rem;font-size:.85rem;color:var(--muted2)}
.biz-stars{color:var(--gold)}
.biz-layout{display:grid;grid-template-columns:1fr 300px;gap:2rem;align-items:start}
.biz-section{margin-bottom:2rem}
.biz-section h2{font-size:1.1rem;margin-bottom:.75rem;padding-bottom:.5rem;border-bottom:1px solid var(--border)}
.biz-desc{font-size:.95rem;color:var(--muted2);line-height:1.7}
.biz-langs{background:var(--surf);border:1px solid var(--border);border-radius:var(--r);padding:1rem}
.biz-langs p{font-size:.85rem;color:var(--muted2);padding:.4rem 0;border-bottom:1px solid var(--border)}
.biz-langs p:last-child{border-bottom:none}
.biz-keywords{display:flex;flex-wrap:wrap;gap:.4rem;margin-top:1rem}
.kw-tag{background:var(--surf2);border:1px solid var(--border);font-size:.7rem;padding:.2rem .6rem;border-radius:6px;color:var(--muted2)}

/* Sidebar contact card */
.biz-sidebar{}
.biz-contact-card{background:var(--surf);border:1px solid var(--border);border-radius:var(--r2);padding:1.25rem;position:sticky;top:80px}
.biz-contact-card h3{font-size:.95rem;margin-bottom:1rem;padding-bottom:.5rem;border-bottom:1px solid var(--border)}
.contact-row{display:flex;align-items:center;gap:.75rem;padding:.6rem 0;border-bottom:1px solid var(--border);font-size:.85rem;color:var(--muted2);transition:color .2s}
.contact-row:last-of-type{border-bottom:none}
.contact-row:hover{color:var(--text)}
.contact-icon{font-size:1rem;flex-shrink:0;width:1.5rem;text-align:center}
.btn-bot-cta{display:inline-flex;align-items:center;gap:.5rem;background:var(--gold);color:#000;font-family:'Unbounded',sans-serif;font-size:.7rem;font-weight:700;padding:.55rem 1.1rem;border-radius:8px;transition:all .2s;flex-shrink:0}
.btn-bot-cta:hover{background:var(--gold2)}
.btn-bot-full{display:flex;align-items:center;justify-content:center;gap:.5rem;background:var(--gold);color:#000;font-weight:700;font-size:.8rem;padding:.65rem;border-radius:8px;margin-top:1rem;transition:background .2s}
.btn-bot-full:hover{background:var(--gold2)}
.biz-lang-badge{background:var(--surf2);border:1px solid var(--border);border-radius:var(--r);padding:.75rem;margin-top:.75rem;font-size:.8rem;display:flex;flex-wrap:wrap;gap:.4rem;align-items:center}
.biz-lang-badge strong{color:var(--muted2)}

/* Page header */
.page-header{display:flex;align-items:center;gap:1rem;padding:2rem 0 1.5rem;border-bottom:1px solid var(--border);margin-bottom:2rem}
.cat-icon-big{font-size:2.5rem;flex-shrink:0}
.page-header h1{font-size:clamp(1.3rem,3vw,2rem);margin-bottom:.25rem}
.page-sub{font-size:.85rem;color:var(--muted2)}

/* ---- BOT CTA SECTION ---- */
.bot-cta-section{background:linear-gradient(135deg,rgba(245,166,35,.08),rgba(245,166,35,.03));border-top:1px solid rgba(245,166,35,.15);border-bottom:1px solid rgba(245,166,35,.15);padding:2.5rem 0;margin-top:3rem}
.bot-cta-inner{display:flex;align-items:center;gap:1.5rem;flex-wrap:wrap}
.bot-cta-icon{font-size:2.5rem;flex-shrink:0}
.bot-cta-title{font-family:'Unbounded',sans-serif;font-size:1.25rem;font-weight:700;margin-bottom:.25rem}
.bot-cta-sub{font-size:.85rem;color:var(--muted2)}
.btn-cta-lg{display:inline-flex;align-items:center;gap:.5rem;background:var(--gold);color:#000;font-family:'Unbounded',sans-serif;font-size:.8rem;font-weight:700;padding:.9rem 1.75rem;border-radius:var(--r);margin-left:auto;transition:all .2s;flex-shrink:0}
.btn-cta-lg:hover{background:var(--gold2);transform:translateY(-1px)}

/* Inline CTA */
.section-cta-inline{background:var(--surf);border:1px solid var(--border);border-radius:var(--r2);padding:1.5rem;text-align:center;margin-top:2rem;display:flex;align-items:center;justify-content:center;gap:1rem;flex-wrap:wrap}
.section-cta-inline p{font-size:.9rem;color:var(--muted2)}

/* Empty state */
.empty-state{text-align:center;padding:4rem 0;color:var(--muted2)}
.empty-state p{margin-bottom:1.5rem}

/* ---- FOOTER ---- */
.site-footer{border-top:1px solid var(--border);padding:3rem 0 1.5rem}
.footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr;gap:2rem;margin-bottom:2rem}
.footer-brand .logo{margin-bottom:.75rem}
.footer-desc{font-size:.82rem;color:var(--muted);line-height:1.6;margin-bottom:.75rem}
.footer-bot-link{display:inline-flex;align-items:center;gap:.4rem;font-size:.8rem;color:var(--gold)}
.footer-col h4{font-family:'Unbounded',sans-serif;font-size:.75rem;font-weight:700;color:var(--muted2);margin-bottom:.75rem;letter-spacing:.06em;text-transform:uppercase}
.footer-col ul{list-style:none;display:flex;flex-direction:column;gap:.4rem}
.footer-col ul a{font-size:.82rem;color:var(--muted);transition:color .2s}.footer-col ul a:hover{color:var(--text)}
.footer-bottom{border-top:1px solid var(--border);padding-top:1.25rem;display:flex;justify-content:space-between;flex-wrap:wrap;gap:.5rem;font-size:.75rem;color:var(--muted)}
.footer-bottom a{color:var(--gold)}

/* FAQ */
.faq-section{}
.faq-item{background:var(--surf);border:1px solid var(--border);border-radius:var(--r);margin-bottom:.5rem;overflow:hidden}
.faq-item summary{padding:1rem 1.25rem;cursor:pointer;font-weight:600;font-size:.9rem;list-style:none;display:flex;justify-content:space-between;align-items:center;transition:background .2s}
.faq-item summary::after{content:'›';font-size:1.2rem;color:var(--gold);transform:rotate(90deg);transition:transform .2s}
.faq-item[open] summary::after{transform:rotate(-90deg)}
.faq-item summary:hover{background:var(--surf2)}
.faq-item p{padding:.75rem 1.25rem 1rem;font-size:.85rem;color:var(--muted2);line-height:1.65;border-top:1px solid var(--border)}

/* ---- RESPONSIVE ---- */
@media(max-width:900px){
  .hdr-nav,.hdr-right .btn-cta{display:none}
  .burger{display:flex}
  .hdr-right{gap:.5rem}
  .biz-layout{grid-template-columns:1fr}
  .biz-sidebar{position:static}
  .biz-contact-card{position:static}
  .hero-stats{grid-template-columns:repeat(2,1fr);min-width:unset;width:100%}
  .footer-grid{grid-template-columns:1fr 1fr}
  .footer-brand{grid-column:1/-1}
}
@media(max-width:640px){
  .hero-inner{flex-direction:column}
  .biz-header{flex-direction:column}
  .btn-bot-cta{width:100%;justify-content:center}
  .biz-list-item{flex-direction:column}
  .biz-list-actions{flex-direction:row}
  .bot-cta-inner{flex-direction:column;text-align:center}
  .btn-cta-lg{margin:0 auto}
  .footer-grid{grid-template-columns:1fr}
  .cats-grid{grid-template-columns:repeat(2,1fr)}
  .section-cta-inline{flex-direction:column}
}
