:root{
  --bg: #0f1a12;
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.72);
  --muted2: rgba(255,255,255,.60);
  --brand: #f6ea3a;   /* żółty */
  --accent: #64c65b;  /* zielony */
  --stroke: rgba(255,255,255,.14);
}

*{ box-sizing: border-box; }
html,body{ margin:0; padding:0; }

/* Smooth anchor scroll */
html{ scroll-behavior: smooth; }
/* Offset pod sticky topbar */
:target{ scroll-margin-top: 90px; }

body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(1200px 600px at 20% 0%, rgba(100,198,91,.25), transparent 60%),
    radial-gradient(900px 500px at 80% 10%, rgba(246,234,58,.18), transparent 55%),
    var(--bg);
  line-height: 1.5;
}

a{ color: inherit; }
.container{
  width: min(1040px, calc(100% - 40px));
  margin: 0 auto;
}

/* Topbar */
.topbar{
  position: sticky;
  top:0;
  z-index: 10;
  backdrop-filter: blur(10px);
  background: rgba(15,26,18,.65);
  border-bottom: 1px solid var(--stroke);
}

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

.brand{
  text-decoration:none;
  display:flex;
  align-items:center;
  gap: 12px;
}

.brand__mark{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(246,234,58,.16);
  border: 1px solid rgba(246,234,58,.35);
}

.brand__logo{
  width: 34px;
  height: 34px;
  object-fit: contain;
  display:block;
}

.brand__name{
  color: var(--muted);
  font-weight: 650;
}

.topbar__nav{
  display:flex;
  align-items:center;
  gap: 14px;
}

.topbar__nav a{
  text-decoration:none;
  color: var(--muted);
}

.topbar__nav a:hover{ color: var(--text); }

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(246,234,58,.45);
  background: rgba(246,234,58,.18);
  color: var(--text);
  text-decoration:none;
  font-weight: 750;
}

.btn:hover{ background: rgba(246,234,58,.26); }

.btn--ghost{
  border-color: rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
}

.btn--ghost:hover{ background: rgba(255,255,255,.10); }

.btn--small{ padding: 10px 12px; border-radius: 12px; }
.btn--full{ width: 100%; }

/* Hero */
.hero{ padding: 54px 0 26px; }

.hero__grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 22px;
  align-items:start;
}

.kicker{
  margin: 0 0 10px;
  display:inline-flex;
  align-items:center;
  gap:10px;
  color: rgba(100,198,91,.95);
  font-weight: 800;
}

h1{
  margin: 0 0 12px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.lead{
  margin:0 0 18px;
  color: var(--muted);
  font-size: 18px;
}

.cta{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
  margin: 8px 0 14px;
}

.meta{
  margin:0;
  color: var(--muted);
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
  align-items:center;
}

.dot{ opacity:.5; }

/* Card */
.card{
  padding: 18px;
  border-radius: 18px;
  border: 1px solid var(--stroke);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
}

.card__title{
  margin: 0 0 10px;
  font-size: 18px;
}

.list{
  margin:0;
  padding-left: 18px;
  color: var(--muted);
}

.list li{ margin: 6px 0; }

.card__actions{
  display:grid;
  gap: 10px;
  margin-top: 14px;
}

/* Sections */
.section{
  padding: 34px 0;
  border-top: 1px solid var(--stroke);
}

.section--alt{
  background: rgba(255,255,255,.03);
}

.section h2{
  margin: 0 0 10px;
  font-size: 26px;
}

.section__lead{
  margin: 0 0 18px;
  color: var(--muted);
  max-width: 70ch;
}

/* Offer tiles */
.grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.tile{
  padding: 16px;
  border-radius: 16px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.04);
}

.tile h3{ margin: 0 0 6px; font-size: 16px; }
.tile p{ margin: 0; color: var(--muted); }

/* Contact */
.contact{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.contact__box{
  padding: 16px;
  border-radius: 16px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.04);
}

.contact__big{
  margin: 10px 0 0;
  font-weight: 850;
  font-size: 18px;
}

.contact__big a{ text-decoration:none; }

/* Social buttons in Contact */
.contact-actions{
  margin-top: 12px;
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
}

.social-link{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  text-decoration:none;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  font-weight: 650;
}

.social-link svg{
  width: 18px;
  height: 18px;
  fill: currentColor;
  opacity: .9;
}

.social-link:hover{ background: rgba(255,255,255,.12); }

/* Static map */
.map{
  margin-top: 18px;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid var(--stroke);
  background: rgba(0,0,0,.18);
}

.map__title{
  margin: 0 0 10px;
  font-size: 16px;
}

.map__imageLink{
  display:block;
  border-radius: 12px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.08);
}

.map img{
  width: 100%;
  height: auto;
  display:block;
}

.map__actions{
  margin-top: 12px;
  display:flex;
  justify-content:flex-start;
  flex-wrap:wrap;
  gap: 10px;
}

/* Footer – compact, company info only */
.footer{
  border-top: 1px solid var(--stroke);
  padding: 18px 0;
  color: var(--muted);
}

.footer__inner{
  display:flex;
  gap: 18px;
  align-items:flex-start;
  justify-content:space-between;
  flex-wrap:wrap;
}

.footer__inner--compact{
  align-items: center;
}

.footer__company{
  max-width: 520px;
}

.footer__company strong{
  color: rgba(255,255,255,.88);
}

.footer__meta{
  display:block;
  margin-top: 6px;
  font-size: 14px;
  color: rgba(255,255,255,.70);
}

.footer__note{
  color: var(--muted2);
  font-size: 14px;
  white-space: nowrap;
}

/* Responsive */
@media (max-width: 860px){
  .hero__grid{ grid-template-columns: 1fr; }
  .grid{ grid-template-columns: 1fr; }
  .contact{ grid-template-columns: 1fr; }

  /* Na mobile chowamy linki tekstowe, zostawiamy CTA */
  .topbar__nav a:not(.btn){ display:none; }
}