/* BIMCOLLO — minimal white, dark gray text */
:root{
  --bg:#ffffff;
  --text:#2b2f36;
  --muted:#5b6472;
  --line:#e7e9ee;
  --panel:#f7f8fb;
  --shadow: 0 10px 30px rgba(20, 28, 40, .06);
  --radius:16px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.5;
}

a{ color:inherit; text-decoration:none; }
a:hover{ text-decoration:underline; }

.container{
  width:min(1100px, 92vw);
  margin-inline:auto;
}

.skip{
  position:absolute; left:-999px; top:auto;
  width:1px; height:1px; overflow:hidden;
}
.skip:focus{
  left:16px; top:16px; width:auto; height:auto;
  padding:10px 12px; background:var(--panel); border:1px solid var(--line);
  border-radius:12px; z-index:1000;
}

.header{
  border-bottom:1px solid var(--line);
  background: radial-gradient(1200px 500px at 50% -10%, #f7f8fb 0%, #fff 60%);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:18px 0;
}
.brand{ display:flex; gap:10px; align-items:center; font-weight:600; letter-spacing:.2px; }
.brand-mark{
  width:14px; height:14px; border-radius:4px;
  background:linear-gradient(135deg, #2b2f36 0%, #5b6472 100%);
  display:inline-block;
}
.brand-name{ font-size:14px; }

.menu{ display:flex; gap:18px; font-size:14px; }
.menu a{ padding:10px 8px; border-radius:10px; }
.menu a:hover{ background: rgba(0,0,0,.03); text-decoration:none; }

.burger{
  display:none; border:1px solid var(--line); background:#fff;
  border-radius:12px; padding:10px; gap:5px;
}
.burger span{
  display:block; width:18px; height:2px; background:var(--text);
  border-radius:2px;
}

.hero{ padding:48px 0 56px; }
.kicker{
  font-size:12px; letter-spacing:.12em; text-transform:uppercase;
  color:var(--muted); margin:0 0 10px;
}
h1{
  font-size:44px; line-height:1.1; margin:0 0 14px;
  letter-spacing:-0.02em;
}
.lead{ font-size:16px; color:var(--muted); max-width:56ch; margin:0 0 22px; }

.cta{ display:flex; gap:12px; flex-wrap:wrap; }
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px; border-radius:12px;
  border:1px solid var(--text);
  background:var(--text);
  color:#fff; font-weight:600; font-size:14px;
  text-decoration:none;
}
.btn:hover{ filter:brightness(1.05); text-decoration:none; }
.btn.ghost{
  background:#fff; color:var(--text); border:1px solid var(--line);
}
.btn.ghost:hover{ background:var(--panel); }

.meta{ display:flex; gap:10px; flex-wrap:wrap; margin-top:22px; }
.chip{
  padding:8px 10px; border:1px solid var(--line); border-radius:999px;
  font-size:12px; color:var(--muted); background:#fff;
}

.section{ padding:56px 0; }
.section.subtle{ background:var(--panel); border-block:1px solid var(--line); }
.section-head{ display:flex; align-items:flex-end; justify-content:space-between; gap:18px; flex-wrap:wrap; margin-bottom:20px; }
.section-head p{ color:var(--muted); margin:0; max-width:65ch; }
h2{ margin:0; font-size:26px; letter-spacing:-0.01em; }

.grid.cards{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:14px;
}
.card{
  grid-column: span 6;
  border:1px solid var(--line);
  border-radius: var(--radius);
  background:#fff;
  padding:18px 18px 16px;
  box-shadow: var(--shadow);
}
.card h3{ margin:0 0 6px; font-size:16px; }
.card p{ margin:0 0 10px; color:var(--muted); }
.card ul{ margin:0; padding-left:18px; color:var(--muted); }
.card li{ margin:6px 0; }

.note{
  margin-top:14px;
  padding:14px 16px;
  border:1px dashed #cfd5df;
  border-radius: var(--radius);
  color:var(--muted);
  background: #fff;
}

.two-col{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:18px;
  align-items:start;
}
.panel{
  border:1px solid var(--line);
  border-radius: var(--radius);
  background:#fff;
  padding:18px;
  box-shadow: var(--shadow);
}
.clean{ list-style:none; padding:0; margin:10px 0 0; color:var(--muted); }
.clean li{ padding:8px 0; border-bottom:1px solid var(--line); }
.clean li:last-child{ border-bottom:0; }
.divider{ height:1px; background:var(--line); margin:14px 0; }

.steps{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:12px;
}
.steps li{
  display:flex; gap:12px; align-items:flex-start;
  border:1px solid var(--line);
  border-radius: var(--radius);
  background:#fff;
  padding:16px;
  box-shadow: var(--shadow);
}
.step-num{
  width:34px; height:34px; display:grid; place-items:center;
  border-radius:12px; border:1px solid var(--line);
  color:var(--muted); font-weight:600;
}
.steps h3{ margin:0 0 4px; font-size:16px; }
.steps p{ margin:0; color:var(--muted); }

.contact-box{
  margin:14px 0 0;
  border:1px solid var(--line);
  border-radius: var(--radius);
  background:#fff;
  padding:12px 14px;
}
.row{
  display:flex; justify-content:space-between; gap:12px;
  padding:10px 0; border-bottom:1px solid var(--line);
}
.row:last-child{ border-bottom:0; }
.label{ color:var(--muted); font-size:13px; }
.mono{ font-variant-numeric: tabular-nums; }

.form{
  border:1px solid var(--line);
  border-radius: var(--radius);
  background:#fff;
  padding:18px;
  box-shadow: var(--shadow);
}
label{ display:block; font-size:13px; color:var(--muted); margin-bottom:10px; }
input,textarea{
  width:100%;
  margin-top:6px;
  padding:12px 12px;
  border-radius:12px;
  border:1px solid var(--line);
  font: inherit;
  color:var(--text);
  background:#fff;
}
input:focus, textarea:focus{
  outline:2px solid rgba(43,47,54,.15);
  border-color:#cfd5df;
}
textarea{ resize: vertical; }
.small{ font-size:12px; }
.muted{ color:var(--muted); }

.footer{
  border-top:1px solid var(--line);
  padding:22px 0;
  background:#fff;
}

/* Footer layout (fixed) */
.foot{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  flex-wrap:nowrap;   /* ключ: не даємо ламати в 2 рядки на широких */
}
.foot-left{
  display:flex;
  align-items:center;
  gap:18px;
}
.brand-inline{ display:flex; align-items:center; gap:10px; }

/* Footer social icons (horizontal) */
.social-icons{
  display:flex;
  flex-direction:row;
  gap:18px;
  align-items:center;
  margin:0;
}
.social-icons a{
  display:inline-flex;
  align-items:center;
  line-height:0;
}
.social-icons svg{
  width:24px;
  height:24px;
  fill: var(--muted);
  transition: fill .2s ease;
}
.social-icons a:hover svg{
  fill: var(--text);
}

@media (max-width: 600px){
  h1{ font-size:36px; }
  .card{ grid-column: span 12; }
  .two-col{ grid-template-columns: 1fr; }
  .menu{ display:none; }
  .burger{ display:inline-flex; flex-direction:column; }

  .mobile{
    display:none;
    border-top:1px solid var(--line);
    background:#fff;
  }
  .mobile.open{ display:block; }
  .mobile .container{ padding:8px 0 14px; }
  .mobile a{ display:block; padding:10px 8px; border-radius:10px; }
  .mobile a:hover{ background: rgba(0,0,0,.03); text-decoration:none; }

  /* Footer: allow wrapping on small screens */
  .foot{ flex-wrap:wrap; }
  .foot-left{ width:100%; justify-content:space-between; }
}

/* Form status + honeypot */
.status{ margin:0 0 10px; }
.status .ok{
  padding:12px 14px;
  border:1px solid var(--line);
  border-radius:12px;
  background:#fff;
  color:var(--text);
}
.status .err{
  padding:12px 14px;
  border:1px solid #f1c0c0;
  border-radius:12px;
  background:#fff;
  color:var(--text);
}
.hp{ position:absolute; left:-9999px; width:1px; height:1px; overflow:hidden; }

/* FORCE footer icons: same size as text + horizontal row */
.footer .social-icons{
  display:flex !important;
  flex-direction:row !important;
  flex-wrap:nowrap !important;
  align-items:center !important;
  gap:12px !important;
  margin:0 !important;
}

.footer .social-icons a{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  width:18px !important;
  height:18px !important;
  line-height:0 !important;
}

.footer .social-icons svg{
  width:18px !important;
  height:18px !important;
  fill: var(--muted) !important;
  display:block !important;
}

.footer .social-icons a:hover svg{
  fill: var(--text) !important;
}


