/* ══ main.css — Спільне для всіх сторінок: reset, токени, body, шапка, підвал, промо, типографіка.
   Правити тут; сторінка підключає чанк через site_css() у шаблоні. ══ */

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; -webkit-tap-highlight-color:transparent; }
:root { --primary-color:#137849;            
    --primary-pale-color:#1E905D;       
    --primary-light-pale-color:#fff9db;
    --secondary-color:#EE4F30;          
    --secondary-dark-color:#FF5722;     
    --secondary-pale-color:#72C39F;
    --secondary-light-pale-color:#F1F4E8;
    --accent-color:#FFBC00;             
    --accent-pale-color:#FFF9DB;
    --black-color:#333333;
    --neutral-color:#8B8B8B; --neutral-dark-color:#959595;
    --neutral-pale-color:#B8B8B8; --neutral-light-pale-color:#D8DADD;
    --danger-color:#D82B2B; --ok-color:#1E905D; --action-color:#1E905D;
    --button-primary-color:#1E905D; --button-primary-hover-color:#137849;
    --button-secondary-color:#FF5722; --button-secondary-hover-color:#EE4F30;
    --bg-body-color:#f6f6f6; --bg-base-color:#137849; --bg-alt-color:#1E905D;
    --bg-tooltip-color:#454545; --footer-text-color:#72C39F;
    
    --green:var(--primary-color); --green-d:var(--button-primary-hover-color);
    --green-l:var(--secondary-light-pale-color);
    
    --text-strong:#414141;   
    --text-muted:#676767;    
    --text-soft:#9b9b9b;     
    --text-faint:#a0a0a0;    
    
    --line-soft:#ebebeb;     
    --line-fill:#e6e6e6;     
    
    --fs-meta:10px;  --fs-xs:12px; --fs-sm:13px; --fs-md:14px;
    --fs-base:15px;  --fs-lg:16px; --fs-xl:18px; --fs-2xl:20px;
    
    --sp-1:4px; --sp-2:8px; --sp-3:12px; --sp-4:16px;
    --sp-5:20px; --sp-6:24px; --sp-7:30px;
    
    --r-sm:4px; --r-md:8px; --r-pill:999px;
    
    --shadow-card:0 2px 10px rgba(0,0,0,.1);
    --shadow-pop:0 6px 26px rgba(0,0,0,.16);

    
    --ink:#414141; --ink-2:#4B5157; --body:#676767;
    --muted:#A0A0A0; --faint:#9AA1A8;
    --line:#DFE2E5; --line-2:#EEF0F2; --card:#F4F5F6; --bg:#fff;
    --star:#F5A524; --red:#d82b2b; --radius:4px;
    --link:#0071BC; }
html { -webkit-text-size-adjust:100%; scroll-behavior:smooth; }
body { font-family:'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI',
       Roboto, 'Helvetica Neue', Arial, sans-serif; color:var(--body);
       background:#f6f6f6; font-size:16px; line-height:27px; }
h1, h2, h3, h4, .logo b { font-family:'Poppins', 'Lato', sans-serif; }
a { color:#0071bc; text-decoration:none; }
img { max-width:100%; }
.wrap { max-width:980px; margin:0 auto; padding:0 20px; }
.nav { background:#fff; border-bottom:1px solid #ebebeb; color:#414141;
       position:sticky; top:0; z-index:60; }
.nav-in { display:flex; align-items:stretch; min-height:70px; }
.logo { background:var(--green); display:flex; text-decoration:none;
        align-items:center; justify-content:center;
        flex:0 0 auto; padding:0 18px; }
.logo img { height:34px; width:auto; display:block; }
.nav-r { margin-left:auto; display:flex; align-items:center; gap:28px;
         padding-right:28px; flex:0 0 auto; }
@media (max-width:1200px) {
  .nav-r { gap:18px; padding-right:18px; }
}
@media (max-width:1050px) {
  .nav-r { gap:12px; padding-right:12px; }
  .nav-r .drop { font-size:14px; }
  .nav-r a { font-size:14px; }
  .logo { padding:0 14px; }
}
.nav-r a { color:var(--link); font-size:15px; font-weight:400;
           text-decoration:none; white-space:nowrap; }
.nav-r a:hover { color:var(--green); }
.nav-r .sep { align-self:center; width:1px; height:24px; background:var(--line); }
.nav-r a.alt { color:var(--ink-2); }
.nav-r .drop { position:relative; display:flex; align-items:center; gap:6px;
               cursor:pointer; color:var(--link); font-size:15px; font-weight:400; }
.nav-r .drop svg { width:13px; height:13px; transition:transform .18s; }
.nav.open .drop svg { transform:rotate(180deg); }
.nav.open .drop { background:#fff; }
.mega { display:none; position:fixed; top:70px; left:0; right:0; z-index:55;
        background:var(--card); border-bottom:1px solid var(--line-2);
        padding:34px 0 26px; box-shadow:0 14px 30px rgba(0,0,0,.12); }
.mega.open { display:block; }
.mega-g { display:grid; grid-template-columns:repeat(3, 1fr); gap:2px 40px; }
.mega-all { display:inline-block; margin-top:18px; color:var(--link);
            font-size:16px; text-decoration:none; }
.mega-all:hover { text-decoration:underline; }
.cc { position:fixed; left:0; right:0; bottom:0; z-index:90; background:#fff;
      box-shadow:0 -4px 24px rgba(0,0,0,.14); }
.cc[hidden] { display:none; }
.cc-box { display:flex; align-items:center; gap:40px;
          max-width:1280px; margin:0 auto; padding:26px 24px; }
.cc-tx { flex:1; min-width:0; }
.cc-box h3 { font-size:20px; line-height:1.4; font-weight:700; color:var(--ink); }
.cc-box p { font-size:13px; color:var(--ink-2); line-height:1.55; margin-top:10px; }
.cc-btns { flex:0 0 auto; display:flex; gap:12px; }
.cc-b { padding:13px 22px; border-radius:4px; font-size:14px; font-weight:700;
        cursor:pointer; font-family:inherit; white-space:nowrap; }
.cc-ok { border:0; background:var(--green); color:#fff; order:3; }
.cc-ok:hover { background:var(--green-d); }
.cc-alt { border:1px solid var(--line); background:#fff; color:var(--ink);
          font-weight:400; }
.cc-alt:hover { border-color:var(--muted); }
.burger { display:none; border:0; background:none; cursor:pointer;
          width:42px; height:46px;
          flex-direction:column; align-items:center; justify-content:center;
          gap:5px; align-self:center; }
.burger span { display:block; width:22px; height:2px; border-radius:2px;
               background:#5A6169; transition:transform .2s, opacity .15s; }
.burger.on span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
.burger.on span:nth-child(2) { opacity:0; }
.burger.on span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }
.m-menu { display:none; background:#fff; }
.m-menu.open { display:block; position:fixed; top:50px; left:0; right:0;
               bottom:0; z-index:58; overflow-y:auto; padding:25px 0; }
.m-menu a { display:flex; align-items:center; gap:18px; padding:0 0 0 25px;
            height:58px; color:#0071bc; font-size:17px; font-weight:700;
            text-decoration:none; }
.m-menu a svg { width:24px; height:24px; flex:0 0 auto; }
.m-menu .m-app { justify-content:center; gap:14px; margin:34px 25px 0;
                 height:64px; padding:0; background:var(--accent-color);
                 color:#414141; border-radius:4px; font-size:15px;
                 font-weight:800; letter-spacing:.3px; }
.m-menu .m-app svg { width:20px; height:20px; }
.app-bar { display:none; background:#FDF3E3; }
.app-bar .wrap { display:flex; align-items:center; gap:10px; padding:11px 14px; }
.app-bar-x { border:0; background:none; cursor:pointer; color:var(--muted);
             padding:10px; line-height:0; flex:0 0 auto; }
.app-bar-x svg { width:20px; height:20px; display:block; }
.app-bar-tx { flex:1; min-width:0; line-height:1.35; }
.app-bar-tx b { display:block; font-size:14px; color:var(--ink); }
.app-bar-tx span { font-size:13px; color:var(--ink-2); }
.app-bar-btn { flex:0 0 auto; background:var(--green); color:#fff;
               text-decoration:none; font-size:11px; font-weight:800;
               padding:9px 12px; border-radius:4px; letter-spacing:.3px; }
.promo { max-width:980px; margin:28px auto 0; padding:0 20px; }
.promo-in { display:flex; align-items:stretch; background:var(--green);
            border-radius:8px; overflow:hidden; height:92px;
            box-shadow:0 6px 16px rgba(0,0,0,.14); }
.promo-img { flex:0 0 250px; background:var(--line-2); }
.promo-img img { width:100%; height:100%; object-fit:cover; display:block; }
.promo-tx { flex:1; display:flex; align-items:center; justify-content:center;
            padding:12px 20px; color:#fff; font-size:16px; font-weight:700;
            text-align:center; line-height:1.3; }
.promo-go { flex:0 0 auto; display:grid; place-items:center; padding-right:24px; }
.promo-go span { width:36px; height:36px; border-radius:50%; background:#fff;
                 display:grid; place-items:center; }
.promo-go svg { width:17px; height:17px; color:var(--green); }
.dots { display:flex; justify-content:center; gap:14px; margin-top:16px; }
.dots i { width:11px; height:11px; border-radius:50%; background:#D9D9D9;
          display:block; cursor:pointer; }
.dots i.on { background:#2E3238; }
h1 { font-size:42px; font-weight:700; letter-spacing:1px; line-height:56px;
     color:#414141; max-width:640px; margin-bottom:20px; }
.cat { display:flex; align-items:center; gap:20px; padding:16px 2px;
       text-decoration:none; color:var(--link); border-bottom:1px solid transparent; }
.cat .ic { flex:0 0 64px; display:flex; justify-content:center;
           color:var(--link); }
.cat .ic svg { width:36px; height:36px; stroke-width:1.5; }
.cat .nm { font-size:16px; font-weight:700; line-height:1.3;
           border-bottom:2px solid transparent; padding-bottom:2px; }
.cat .arw { display:none; margin-left:auto; color:var(--link); }
.cat:hover .nm { border-bottom-color:var(--star); }
.cat.on .nm,
.grid .cat:first-child .nm { border-bottom-color:var(--star); }
.cat .cnt { display:none; }
.empty { grid-column:1/-1; color:var(--muted); font-size:15px; padding:20px 4px; }
.app-btns { display:flex; gap:14px; margin-top:20px; position:relative; z-index:3; }
.app-btn { display:inline-flex; align-items:center; justify-content:center;
           gap:10px; white-space:nowrap;
           background:var(--green); color:#fff; text-decoration:none;
           font-size:14px; font-weight:700; padding:13px 20px; border-radius:6px; }
.app-btn:hover { background:var(--green-d); }
.app-btn svg { width:17px; height:17px; flex:0 0 auto; }
.foot { background:#fff; padding:0 0 20px; }
.foot .wrap { padding-top:0; }
.foot-g { display:flex; justify-content:space-between;
          padding:20px 0; border-top:1px solid #e6e6e6; }
.foot h5 { font-size:15px; font-weight:500; color:#676767; line-height:25px;
           margin-bottom:1px; }
.foot a { display:block; color:#676767; font-size:13px; text-decoration:none;
          line-height:24px; margin-right:25px; }
.foot a:hover { color:var(--green); }
.foot-btm { position:relative; display:flex; align-items:center; gap:22px;
            padding:20px 0; border-top:1px solid #e6e6e6; }
.foot-btm .soc { display:flex; align-items:center; gap:18px; }
.foot-btm .soc a { padding:0; color:#B0B0B0; }
.foot-btm .soc svg { width:26px; height:26px; display:block; }
.foot-btm .soc a:hover { color:var(--green); }
.foot-btm .blog { color:#676767; font-size:13px; font-weight:400;
                  line-height:27px; text-decoration:none; padding:0; }
.cp { position:absolute; left:50%; transform:translateX(-50%);
      color:#676767; font-size:15px; white-space:nowrap; }
@media (max-width:900px) {
  .nav, body.pf-page .nav, body.cab-order-page .nav { position:fixed; top:0; left:0; right:0; z-index:1000; height:50px; }
  body { padding-top:50px; }
  .nav-in { min-height:50px; height:50px; align-items:center; }
  .logo { padding:0 8px; align-self:stretch; }
  .logo img { height:22px; }
  .nav-r { display:none; }
  .mega { display:none !important; }
  .burger { display:flex; }
  .burger { order:3; flex:0 0 auto; padding:0 12px; }
  .app-bar { display:block; }
  body.menu-open { overflow:hidden; }
  .cc-box { flex-direction:column; align-items:stretch; gap:0;
              padding:22px 18px; max-height:82vh; overflow-y:auto; }
  .cc-btns { flex-direction:column; margin-top:18px; }
  .cc-b { width:100%; padding:15px 16px; }
  .cc-ok { order:0; }
  .promo { margin-top:18px; padding:0 16px; }
  .promo-in { height:92px; }
  .promo-img { flex:0 0 120px; }
  .promo-tx { font-size:12px; line-height:1.4; padding:10px 12px;
                text-align:left; }
  .promo-go { padding-right:16px; }
  .promo-go span { width:30px; height:30px; }
  .promo-go svg { width:14px; height:14px; }
  .dots { gap:6px; margin-top:12px; }
  .dots i { position:relative; width:9px; height:9px; }
  .dots i::after { content:''; position:absolute; inset:-11px; }
  .wrap { padding:0 16px; }
  h1 { font-size:24px; line-height:33px; letter-spacing:0; margin-bottom:15px; }
  .cat { width:100%; padding:18px 25px; gap:24px;
           border-bottom:1px solid var(--line-2); }
  .cat .ic { flex:0 0 56px; }
  .cat .ic svg { width:38px; height:38px; }
  .cat .nm { font-size:17px; }
  .cat .arw { display:block; }
  .cat .arw svg { width:18px; height:18px; }
  .app-btns { flex-direction:column; gap:10px; margin-top:0; }
  .app-btn { justify-content:center; font-size:14px; padding:10px 25px 9px; }
  .foot { margin-top:36px; }
  .foot-g { flex-direction:column; gap:26px; padding:24px 0; }
  .foot h5 { font-size:15px; margin-bottom:5px; line-height:25px; }
  .foot a { font-size:14px; line-height:24px; margin-right:0; }
  .foot-btm { flex-direction:column; align-items:center; gap:18px;
                padding:22px 0; text-align:center; }
  .foot-btm .soc { gap:0; justify-content:center; }
  .foot-btm .soc a { margin:0 12px; }
  .foot-btm .soc svg { width:24px; height:24px; }
  .soc a.foot-blog { margin:0 12px; }
  .cp { position:static; transform:none; margin:0; font-size:14px; }
}
.textDisplay { font-family:'Poppins','Lato',sans-serif;
               font-size:18px; line-height:26px; font-weight:400;
               color:var(--text-strong); margin:0; }
.textP1 { font-size:16px; line-height:24px; font-weight:400;
               color:var(--text-strong); margin:0; }
.textP2 { font-size:15px; line-height:22px; font-weight:400;
               color:var(--text-muted); margin:0; }
.textP3 { font-size:14px; line-height:20px; font-weight:400;
               color:var(--text-muted); margin:0; }
.textMeta { font-size:10px; line-height:14px; font-weight:400;
               color:var(--text-muted); margin:0; }
.textDisplay_bold { font-weight:600; }
.textP1_bold, .textP2_bold,
.textP3_bold, .textMeta_bold { font-weight:700; }
.textMeta_big { font-size:13px; line-height:17px; }
.textP3_big { font-size:15px; line-height:22px; }
.textP2_big { font-size:16px; line-height:24px; }
.textMeta_light, .textP3_light, .textP2_light { color:var(--text-faint); }
.textP3_dark,  .textP2_dark,  .textMeta_dark { color:var(--text-strong); }
.textDim { color:var(--text-muted); }
.textFaint { color:var(--text-soft); }
@media (max-width:568px) {
  .textDisplay { font-size:16px; }
}
.heading1 { font-family:'Poppins',sans-serif; font-size:42px; line-height:56px;
            font-weight:700; color:var(--text-strong); margin:0; }
.heading2 { font-family:'Poppins',sans-serif; font-size:32px; line-height:44px;
            font-weight:600; color:var(--text-strong); margin:0; }
.heading3 { font-family:'Poppins',sans-serif; font-size:24px; line-height:36px;
            font-weight:500; color:var(--text-strong); margin:0; }
.heading4 { font-size:20px; line-height:28px; font-weight:600;
            color:var(--text-strong); margin:0; }
@media (max-width:568px) {
  .heading1 { font-size:27px; line-height:36px; }
  .heading2 { font-size:24px; line-height:28px; }
  .heading3 { font-size:21px; line-height:28px; }
  .heading4 { font-size:18px; line-height:24px; }
}
@media (max-width:900px) {
  .wrap { padding:0 15px; }
}
.jobs-btn { display:block; text-align:center; background:var(--green);
            color:#fff; text-decoration:none; font-size:15px; font-weight:700;
            padding:13px 20px; border-radius:6px; }
.jobs-btn:hover { background:var(--green-d); }
.jobs-alt { display:block; text-align:center; margin-top:12px;
            color:var(--link); font-size:14px; text-decoration:none; }
.jobs-alt:hover { text-decoration:underline; }
.jobs-btn[disabled] { opacity:.6; cursor:default; }
button.jobs-btn { width:100%; border:0; cursor:pointer;
                  font-family:inherit; letter-spacing:.4px; }
@keyframes wzin { to { opacity:1; transform:none; } }
body.nav-flow .nav { position:static; }
body.nav-flow .svc-loc.stuck { top:0; }
@media (max-width:900px) {
  body.nav-flow .svc-loc.stuck { top:0; }
}
.soc a.foot-blog { display:inline-block; width:auto; height:auto;
    background:none; color:#676767; font-size:15px; text-decoration:none;
    align-self:center; margin-left:6px; }
.soc a.foot-blog:hover { color:var(--green); }
.toasts { position:fixed; top:76px; right:16px; z-index:240; display:flex;
          flex-direction:column; gap:10px; width:340px; max-width:92vw; }
.toast { display:flex; gap:11px; background:#FFFDF3; border:1px solid #F1E9C8;
         border-radius:10px; padding:13px 34px 13px 13px; position:relative;
         box-shadow:0 8px 30px rgba(0,0,0,.12); cursor:pointer;
         animation:toastIn .25s ease; }
@keyframes toastIn { from { opacity:0; transform:translateX(24px); } }
.toast-x { position:absolute; top:8px; right:8px; border:0; background:none;
           color:#9b9b9b; font-size:15px; cursor:pointer; }
.toast b { font-size:14px; }
.toast small { color:#676767; font-size:13px;
           display:block; margin-top:2px; }
.del-opts { display:flex; flex-direction:column; gap:14px; margin:10px 0 24px; }
.del-opts label { display:flex; gap:11px; align-items:flex-start;
                  font-size:15px; cursor:pointer; }
.del-opts input { margin-top:3px; width:17px; height:17px;
                  accent-color:#0071BC; flex:0 0 auto; }
@keyframes cabspin { to { transform:rotate(360deg); } }
body:has(.cab-two), body:has(.pf-two), body:has(.st-two) { background:#F6F6F6; }
body:has(.cab-two) { background:#F6F6F6; }
body:has(.st-two) { background:#fff; }
@keyframes othIn { from { transform:translateX(30px); opacity:0; } }
body:has(.cab-pop.closed) .cab-wide2 { padding-bottom:26px; }
body:has(.cab-pop.closed) .cab-pop { padding-bottom:0; }
.foot { margin-top:0; }
