/* public/assets/style.css */
:root{
  --bg: #f6fbff;
  --card: #ffffff;
  --text: #0e1b2a;
  --muted: #4b5a6b;
  --line: rgba(14,27,42,.10);
  --shadow: 0 10px 30px rgba(10, 30, 60, .10);
  --primary: #2b84d8;   /* błękit */
  --primary2:#66c7ff;   /* jasny błękit */
  --primaryDark:#1f66b0;
  --radius: 18px;
  --container: 1100px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background: radial-gradient(1200px 700px at 20% 0%, rgba(102,199,255,.22), transparent 60%),
              radial-gradient(900px 600px at 90% 10%, rgba(43,132,216,.18), transparent 55%),
              var(--bg);
  line-height:1.5;
}

a{ color:var(--primaryDark); text-decoration:none; }
a:hover{ text-decoration:underline; }

.container{
  max-width: var(--container);
  margin:0 auto;
  padding: 0 16px;
}

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

.topbar{
  position: sticky;
  top:0;
  z-index: 1000;
  background: rgba(246,251,255,.86);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}

.topbar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding: 12px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  min-width: 220px;
}
.brand__mark{
  width:38px;height:38px;
  display:grid;place-items:center;
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  color:#fff;
  font-weight:800;
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(43,132,216,.25);
}
.brand__name{
  font-weight:800;
  letter-spacing:.2px;
}
.brand__tag{
  display:block;
  font-size:12px;
  color:var(--muted);
  margin-top:2px;
}

.nav{ display:flex; align-items:center; gap:10px; }
.nav__toggle{
  display:none;
  border:1px solid var(--line);
  background:#fff;
  border-radius: 12px;
  padding:10px;
  cursor:pointer;
}
.nav__toggle span{
  display:block;
  width:22px;height:2px;
  background: var(--text);
  margin:4px 0;
  border-radius:2px;
}
.nav__list{
  display:flex;
  list-style:none;
  gap:14px;
  margin:0;padding:0;
  align-items:center;
}
.nav__list a{
  color:var(--text);
  font-weight:600;
  font-size:14px;
  padding:10px 10px;
  border-radius: 12px;
}
.nav__list a:hover{
  background: rgba(43,132,216,.08);
  text-decoration:none;
}
.nav__cta{
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  color:#fff !important;
  box-shadow: 0 10px 26px rgba(43,132,216,.18);
}

.topbar__contact .pill{
  display:inline-flex;
  align-items:center;
  border:1px solid rgba(43,132,216,.22);
  background: rgba(255,255,255,.7);
  padding:10px 12px;
  border-radius: 999px;
  font-weight:700;
  white-space:nowrap;
}

.hero{
  padding: 30px 0 8px;
}
.hero__grid{
  display:grid;
  grid-template-columns: 1.25fr .85fr;
  gap: 18px;
  align-items: stretch;
}
.hero__copy{
  padding: 18px;
}
.hero h1{
  font-size: clamp(28px, 3.2vw, 44px);
  line-height:1.12;
  margin: 10px 0 10px;
}
.lead{
  color: var(--muted);
  font-size: 16px;
  margin: 0 0 14px;
}
.hero__cta{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin: 14px 0 14px;
}
.hero__bullets{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top: 10px;
}
.chip{
  background: rgba(255,255,255,.65);
  border:1px solid var(--line);
  border-radius: 999px;
  padding: 9px 12px;
  font-weight:650;
  font-size:13px;
}

.card{
  background: var(--card);
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
}
.card--soft{
  background: rgba(255,255,255,.72);
}
.card--highlight{
  border-color: rgba(43,132,216,.28);
  box-shadow: 0 16px 40px rgba(43,132,216,.16);
}
.card__title{ margin:0 0 6px; }
.card__desc{ margin:0 0 12px; color:var(--muted); }

.mini-form label{
  display:block;
  margin-bottom: 10px;
}
.mini-form span{
  display:block;
  font-size:12px;
  color:var(--muted);
  margin-bottom:6px;
}
input, select, textarea{
  width:100%;
  border:1px solid var(--line);
  border-radius: 14px;
  padding: 12px 12px;
  font-size: 14px;
  background:#fff;
  color:var(--text);
}
textarea{ resize: vertical; }
input:focus, select:focus, textarea:focus{
  outline: 3px solid rgba(43,132,216,.20);
  border-color: rgba(43,132,216,.35);
}

.btn{
  border:1px solid transparent;
  border-radius: 14px;
  padding: 12px 14px;
  font-weight:800;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  text-decoration:none !important;
}
.btn--primary{
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  color:#fff;
  box-shadow: 0 12px 28px rgba(43,132,216,.20);
}
.btn--primary:hover{ filter: brightness(.98); }
.btn--ghost{
  background: rgba(255,255,255,.75);
  border-color: rgba(43,132,216,.18);
  color: var(--text);
}
.btn--block{ width:100%; }

.mini-note{ margin:10px 0 0; color:var(--muted); font-size:13px; }

.section{
  padding: 34px 0;
}
.section--alt{
  background: rgba(255,255,255,.55);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.section__head{
  max-width: 820px;
  margin: 0 auto 16px;
  text-align:center;
}
.section__head h2{
  margin: 0 0 8px;
  font-size: clamp(22px, 2.1vw, 32px);
}
.section__head p{
  margin:0;
  color: var(--muted);
}

.grid{
  display:grid;
  gap: 14px;
}
.cards{
  grid-template-columns: repeat(3, 1fr);
}
.two{
  grid-template-columns: repeat(2, 1fr);
}
.gminy{
  grid-template-columns: repeat(3, 1fr);
}

.ticks, .bullets{
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
}
.ticks li{ margin: 6px 0; }
.ticks li::marker{ color: var(--primary); }
.bullets li{ margin: 6px 0; }

.inline-cta{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top: 10px;
}

.note{
  margin-top: 14px;
  background: rgba(43,132,216,.08);
  border: 1px solid rgba(43,132,216,.18);
  border-radius: var(--radius);
  padding: 14px;
}
.note h3{ margin:0 0 8px; }
.note p{ margin:0; color: var(--muted); }

.steps{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.step__n{
  width:34px;height:34px;
  display:grid;place-items:center;
  border-radius: 12px;
  background: rgba(43,132,216,.14);
  border:1px solid rgba(43,132,216,.20);
  font-weight:900;
  margin-bottom: 10px;
}

.faq details{
  background: #fff;
  border:1px solid var(--line);
  border-radius: 16px;
  padding: 12px 14px;
  margin-bottom: 10px;
  box-shadow: 0 10px 26px rgba(10,30,60,.06);
}
.faq summary{
  cursor:pointer;
  font-weight:800;
}
.faq__a{
  margin-top: 8px;
  color: var(--muted);
}

.contact{
  display:grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 14px;
  align-items:start;
}
.big a{
  font-size: 18px;
  font-weight: 900;
}
.small{ color: var(--muted); font-size:13px; }
.mini-tip{
  margin-top: 10px;
  background: rgba(102,199,255,.16);
  border: 1px solid rgba(102,199,255,.25);
  padding: 10px 12px;
  border-radius: 14px;
  color: var(--muted);
}

.formgrid{
  grid-template-columns: repeat(2, 1fr);
}
.full{ grid-column: 1 / -1; }
.checkbox{
  display:flex;
  gap:10px;
  align-items:center;
}
.checkbox input{
  width:18px;height:18px;
}
.form-actions{ margin-top: 10px; }

.hp{ position:absolute; left:-9999px; width:1px; height:1px; overflow:hidden; }

.footer{
  padding: 26px 0;
}
.footer__grid{
  display:grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 12px;
}
.footer__brand{ font-weight: 900; }
.footer__head{ font-weight: 900; margin-bottom: 6px; }
.footer__bottom{
  margin-top: 12px;
  padding-top: 12px;
  border-top:1px solid var(--line);
}

.floating-call{
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 1000;
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  color:#fff;
  border-radius: 999px;
  padding: 12px 14px;
  font-weight:900;
  box-shadow: 0 18px 40px rgba(43,132,216,.25);
  text-decoration:none !important;
  display:none;
}

.cookie{
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  padding: 12px;
  z-index: 2000;
}
.cookie__inner{
  max-width: var(--container);
  margin: 0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border:1px solid var(--line);
  border-radius: 18px;
  padding: 12px 12px;
  box-shadow: 0 20px 50px rgba(10,30,60,.18);
}
.cookie__text{ color: var(--text); font-weight: 650; }
.cookie__actions{ display:flex; gap: 10px; }

@media (max-width: 980px){
  .cards{ grid-template-columns: repeat(2, 1fr); }
  .gminy{ grid-template-columns: repeat(2, 1fr); }
  .steps{ grid-template-columns: repeat(2, 1fr); }
  .footer__grid{ grid-template-columns: 1fr; }
}

@media (max-width: 820px){
  .topbar__contact{ display:none; }
  .nav__toggle{ display:inline-block; }
  .nav__list{
    position:absolute;
    right: 16px;
    top: 64px;
    flex-direction:column;
    background: rgba(255,255,255,.95);
    border:1px solid var(--line);
    border-radius: 16px;
    padding: 10px;
    box-shadow: var(--shadow);
    width: min(320px, calc(100vw - 32px));
    display:none;
  }
  .nav__list.is-open{ display:flex; }
  .nav__list a{ width:100%; text-align:center; }
  .hero__grid{ grid-template-columns: 1fr; }
  .hero__copy{ text-align:center; }
  .hero__cta{ justify-content:center; }
  .hero__bullets{ justify-content:center; }
  .contact{ grid-template-columns: 1fr; }
  .formgrid{ grid-template-columns: 1fr; }
  .floating-call{ display:inline-flex; }
  .cookie__inner{ flex-direction: column; align-items: stretch; }
  .cookie__actions{ width:100%; }
  .cookie__actions .btn{ width:100%; }
}
