/* ================================================================
   tworzenie-stron-www.com — Main Stylesheet
   Owner: Media Express LLC | https://mediaexpress.us/
   Design: MESH/5.1 Variant B — dark-navy + gold
   No frameworks. Pure CSS only.
   ================================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --pn-bar-h:   37px;
  --gold:       #eab308;
  --gold-dark:  #ca8a04;
  --gold-light: rgba(234,179,8,0.12);
  --dark:       #0f172a;
  --dark2:      #1e293b;
  --dark3:      #0a1020;
  --white:      #ffffff;
  --muted:      #94a3b8;
  --muted2:     #8899aa;
  --border:     #334155;
  --footer-bg:  #020617;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--dark);
  color: var(--white);
  line-height: 1.6;
  font-size: 1rem;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(234,179,8,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(234,179,8,.022) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}

.orb {
  position: fixed; border-radius: 50%; filter: blur(140px);
  pointer-events: none; z-index: 0;
  animation: orb-drift ease-in-out infinite alternate;
}
.orb1 { width:700px; height:700px; background:rgba(234,179,8,.05);  top:-200px; right:-180px; animation-duration:28s; }
.orb2 { width:500px; height:500px; background:rgba(99,102,241,.04); bottom:-150px; left:-150px; animation-duration:22s; animation-delay:-10s; }
.orb3 { width:350px; height:350px; background:rgba(234,179,8,.03);  top:45%; left:38%; animation-duration:35s; animation-delay:-16s; }

@keyframes orb-drift {
  0%   { transform: translate(0,0) scale(1); }
  100% { transform: translate(55px,45px) scale(1.09); }
}

@keyframes hero-in {
  0%   { opacity:0; transform:translateY(22px); }
  100% { opacity:1; transform:none; }
}
.hero .badge        { animation: hero-in .7s ease .05s both, heartbeat 3s ease-in-out 1.2s infinite; }
.hero h1            { animation: hero-in .9s ease .2s both; }
.hero .hero-tagline { animation: hero-in .9s ease .38s both; }
.hero .hero-slogan  { animation: hero-in .9s ease .52s both; }
.hero .hero-desc    { animation: hero-in .9s ease .7s both; }
.hero .btn-group-center { animation: hero-in .9s ease .88s both; }

@keyframes heartbeat {
  0%,100% { box-shadow: inset 0 0 8px rgba(234,179,8,.15); border-color: rgba(234,179,8,.55); }
  50%      { box-shadow: inset 0 0 22px rgba(234,179,8,.55), inset 0 0 6px rgba(234,179,8,.8); border-color: rgba(234,179,8,1); }
}

.reveal { opacity:0; transform:translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity:1; transform:none; }
.reveal-delay-1 { transition-delay:.1s; }
.reveal-delay-2 { transition-delay:.22s; }
.reveal-delay-3 { transition-delay:.35s; }

header, main, footer, section, .container, .container-wide { position:relative; z-index:1; }

img { max-width:100%; display:block; }
a { color:var(--gold); text-decoration:none; }
a:hover { color:var(--white); }

.container      { max-width:960px;  margin:0 auto; padding:0 1.25rem; }
.container-wide { max-width:1100px; margin:0 auto; padding:0 1.25rem; }

section { padding:4.5rem 1.25rem; scroll-margin-top: calc(var(--pn-bar-h,37px) + 58px); }

h1 { font-size:clamp(1.6rem,4vw,2.75rem); font-weight:900; line-height:1.1; }
h2 { font-size:clamp(1.4rem,3.5vw,2.25rem); font-weight:800; margin-bottom:1rem; }
h2 span { color:var(--gold); }
h3 { font-size:1.1rem; font-weight:700; margin-bottom:.5rem; color:var(--gold); }
h4 { font-size:.95rem; font-weight:700; margin-bottom:.35rem; }
p  { line-height:1.7; }

.section-label {
  display:inline-block; font-size:.72rem; font-weight:800;
  letter-spacing:.14em; text-transform:uppercase;
  color:var(--gold); margin-bottom:.75rem;
}
.section-intro { color:var(--muted); font-size:1rem; margin-bottom:2.5rem; max-width:700px; margin-left:auto; margin-right:auto; }
.text-gold   { color:var(--gold); }
.text-muted  { color:var(--muted); }
.text-center { text-align:center; }

/* ── HEADER ── */
header {
  background:rgba(15,23,42,.02);
  backdrop-filter:blur(14px) saturate(160%);
  -webkit-backdrop-filter:blur(14px) saturate(160%);
  padding:.55rem 1.5rem;
  display:flex; align-items:center; justify-content:space-between;
  position:sticky; top:var(--pn-bar-h,40px); z-index:200;
  box-shadow:0 2px 20px rgba(0,0,0,.45);
}
header::after {
  content:''; position:absolute; bottom:0; left:0; right:0; height:1px;
  background:linear-gradient(90deg,transparent 0%,rgba(234,179,8,.25) 15%,rgba(234,179,8,.7) 50%,rgba(234,179,8,.25) 85%,transparent 100%);
}

.logo { display:flex; align-items:center; gap:.65rem; text-decoration:none; flex-shrink:0; }
.logo-mark { width:34px; height:34px; border-radius:50%; overflow:hidden; flex-shrink:0; border:2px solid var(--gold); }
.logo-mark img { width:100%; height:100%; object-fit:cover; display:block; }
.logo-text-wrap { display:flex; flex-direction:column; line-height:1.15; }
.logo-name { font-size:1.1rem; font-weight:800; color:var(--white); letter-spacing:-.01em; }
.logo-name span { color:var(--gold); }
.logo-sub  { font-size:.65rem; color:#8899aa; font-weight:600; letter-spacing:.06em; text-transform:uppercase; }

nav { display:flex; align-items:center; gap:.5rem; }
nav a {
  color:rgba(241,245,249,.62); font-size:13px; font-weight:500;
  white-space:nowrap; transition:color .2s, box-shadow .2s;
  letter-spacing:.01em; padding-bottom:2px; line-height:1; text-decoration:none;
}
nav a:not(.nav-cta):hover { color:#f1f5f9; box-shadow:inset 0 -2px 0 0 #eab308; }
nav a.nav-cta {
  background:var(--gold); color:#000 !important; font-weight:700 !important;
  font-size:.78rem !important; padding:.28rem .9rem; border-radius:6px;
  display:inline-flex; align-items:center; line-height:1; transition:background .2s;
  margin-left:.25rem;
}
nav a.nav-cta:hover { background:#f59e0b !important; color:#fff !important; }

.nav-toggle {
  display:none; flex-direction:column; gap:5px; background:none; border:none;
  cursor:pointer; padding:.4rem;
}
.nav-toggle span { display:block; width:24px; height:2px; background:var(--white); border-radius:2px; transition:.25s; }
.nav-toggle.open span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity:0; }
.nav-toggle.open span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }

/* ── SKIP LINK ── */
.skip-link { position:absolute; left:-9999px; }
.skip-link:focus { left:1rem; top:1rem; z-index:9999; background:var(--gold); color:#000; padding:.5rem 1rem; border-radius:6px; }

/* ── HERO ── */
.hero {
  min-height:calc(100vh - var(--pn-bar-h,40px) - 51.6px);
  display:flex; align-items:center; justify-content:center;
  text-align:center; padding:3rem 1.25rem 2.5rem;
  position:relative;
}
.hero .container { display:flex; flex-direction:column; align-items:center; gap:0.55rem; }
.badge {
  display:inline-block; font-size:.68rem; font-weight:800; letter-spacing:.09em;
  text-transform:uppercase; color:var(--gold);
  border:1px solid rgba(234,179,8,.55); border-radius:2rem;
  padding:.28rem .9rem;
}
.hero h1 span { color:var(--gold); }
.hero-tagline { font-size:clamp(.9rem,2vw,1.1rem); color:var(--muted); font-weight:500; max-width:640px; }
.hero-slogan  { font-size:clamp(.82rem,1.8vw,.95rem); color:rgba(241,245,249,.75); }
.hero-desc    { font-size:.88rem; color:var(--muted); max-width:620px; line-height:1.7; }
.hero-trust   { font-size:.75rem; color:var(--muted2); margin-top:.25rem; }

.btn-group-center { display:flex; flex-wrap:wrap; gap:.75rem; justify-content:center; }
.btn-primary {
  background:var(--gold); color:#000; font-weight:800; font-size:.9rem;
  padding:.7rem 1.6rem; border-radius:8px; transition:.2s; display:inline-block;
}
.btn-primary:hover { background:#fbbf24; color:#000; transform:translateY(-1px); box-shadow:0 4px 20px rgba(234,179,8,.4); }
.btn-secondary {
  border:1px solid rgba(234,179,8,.45); color:var(--gold); font-weight:700; font-size:.9rem;
  padding:.7rem 1.6rem; border-radius:8px; transition:.2s; display:inline-block;
}
.btn-secondary:hover { background:var(--gold-light); color:var(--white); }
.btn-ghost {
  color:var(--muted); font-size:.85rem; font-weight:600;
  padding:.7rem 1.2rem; border-radius:8px; transition:.2s; display:inline-block;
  border:1px solid rgba(148,163,184,.2);
}
.btn-ghost:hover { color:var(--white); background:rgba(255,255,255,.05); }

/* ── HERO ARROW ── */
.page-hero-arrow {
  position:fixed; bottom:28px; left:50%; transform:translateX(-50%);
  width:44px; height:44px; border-radius:50%;
  border:1px solid rgba(234,179,8,.5); background:rgba(10,15,28,.6);
  backdrop-filter:blur(6px);
  display:flex; align-items:center; justify-content:center;
  cursor:pointer; z-index:100; transition:opacity .3s, border-color .2s, background .2s;
  color:var(--gold); text-decoration:none;
  box-shadow:0 0 12px rgba(234,179,8,.25);
  animation:hero-bounce 2.2s ease-in-out infinite;
}
.page-hero-arrow:hover { border-color:var(--gold); background:rgba(234,179,8,.1); animation:none; transform:translateX(-50%) translateY(4px); }
.page-hero-arrow svg { width:20px; height:20px; stroke:var(--gold); fill:none; stroke-width:2.5; stroke-linecap:round; stroke-linejoin:round; }
.page-hero-arrow.hidden { opacity:0; pointer-events:none; }
@keyframes hero-bounce {
  0%,100% { transform:translateX(-50%) translateY(0); }
  50%      { transform:translateX(-50%) translateY(7px); }
}

/* ── SERVICE TILES ── */
.services-grid {
  display:grid; grid-template-columns:repeat(auto-fit,minmax(270px,1fr)); gap:1.25rem;
  margin-top:2.5rem;
}
.svc-card {
  background:var(--dark2); border:1px solid var(--border); border-radius:14px;
  padding:1.75rem 1.5rem; transition:.25s; cursor:default;
}
.svc-card:hover { border-color:rgba(234,179,8,.45); transform:translateY(-3px); box-shadow:0 8px 32px rgba(0,0,0,.3); }
.svc-icon { font-size:2rem; margin-bottom:1rem; }
.svc-card h3 { font-size:1.05rem; margin-bottom:.5rem; }
.svc-card p  { font-size:.88rem; color:var(--muted); line-height:1.6; }

/* ── CONTENT SECTIONS ── */
.section-two-col {
  display:grid; grid-template-columns:1fr 1fr; gap:3rem; align-items:center;
}
.section-two-col.reverse { direction:rtl; }
.section-two-col.reverse > * { direction:ltr; }

.feature-list { list-style:none; display:flex; flex-direction:column; gap:.6rem; margin-top:1.25rem; }
.feature-list li { display:flex; align-items:flex-start; gap:.6rem; font-size:.9rem; color:var(--muted); }
.feature-list li::before { content:'✓'; color:var(--gold); font-weight:800; flex-shrink:0; margin-top:.1rem; }

.stat-block { display:flex; flex-wrap:wrap; gap:1.5rem; margin-top:1.5rem; }
.stat-item { text-align:center; }
.stat-num { font-size:2.5rem; font-weight:900; color:var(--gold); line-height:1; }
.stat-label { font-size:.75rem; color:var(--muted); font-weight:600; text-transform:uppercase; letter-spacing:.08em; margin-top:.25rem; }

.section-divider { height:1px; background:linear-gradient(90deg,transparent,var(--border),transparent); margin:0; }

/* ── CTA BOX ── */
.cta-box {
  background:linear-gradient(135deg,rgba(234,179,8,.12) 0%,rgba(234,179,8,.06) 100%);
  border:1px solid rgba(234,179,8,.3); border-radius:16px;
  padding:3rem 2rem; text-align:center;
}
.cta-box h2 { margin-bottom:1rem; }
.cta-box p  { color:var(--muted); margin-bottom:2rem; }

/* ── KEYWORD MICRO BLOCK ── */
.kw-micro {
  padding:.5rem 1.25rem 1.5rem;
  max-width:1000px;
  margin:0 auto;
  text-align:center;
  font-size:10px;
  line-height:1 !important;
  color:#1e2d3e;
  overflow-x:hidden;
}
.kw-micro *{
  font-size:10px !important; font-weight:normal !important; color:#1e2d3e !important;
  display:inline !important; margin:0 !important; padding:0 !important;
  line-height:1 !important; text-decoration:none !important;
  letter-spacing:0 !important; word-spacing:.15em !important;
  overflow-wrap:break-word !important; word-break:break-word !important;
}

/* ── FOOTER ── */
footer {
  background:var(--footer-bg); padding:3rem 1.25rem 1.5rem;
  border-top:1px solid var(--border);
}
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr; gap:2.5rem; margin-bottom:2.5rem; }
.footer-brand .logo-name { font-size:1.1rem; font-weight:800; color:var(--white); }
.footer-brand .logo-name span { color:var(--gold); }
.footer-brand p { font-size:.83rem; color:var(--muted); margin-top:.75rem; line-height:1.7; }
.footer-col h4 { font-size:.8rem; font-weight:800; letter-spacing:.1em; text-transform:uppercase; color:var(--gold); margin-bottom:1rem; }
.footer-col a { display:block; font-size:.82rem; color:var(--muted); margin-bottom:.5rem; transition:.15s; }
.footer-col a:hover { color:var(--white); }
.footer-bottom { border-top:1px solid var(--border); padding-top:1.25rem; display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:.75rem; }
.footer-bottom p { font-size:.75rem; color:var(--muted2); }

/* ── RESPONSIVE ── */
@media(max-width:1024px) {
  nav { display:none; }
  nav.open { display:flex; flex-direction:column; position:fixed; top:calc(var(--pn-bar-h,37px) + 58px); left:0; right:0; background:rgba(10,16,32,.97); padding:1rem; z-index:199; gap:.25rem; }
  nav.open a { padding:.75rem 1rem; border-radius:8px; font-size:.95rem; }
  .nav-toggle { display:flex; }
  .section-two-col { grid-template-columns:1fr; gap:2rem; }
  .section-two-col.reverse { direction:ltr; }
  .footer-grid { grid-template-columns:1fr 1fr; }
}
.reklama-grid { display:grid; grid-template-columns:1fr 1fr; gap:1.5rem; }
@media(max-width:600px) {
  .services-grid { grid-template-columns:1fr; }
  .reklama-grid  { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr; }
  .stat-block { gap:1rem; }
  .footer-bottom { flex-direction:column; text-align:center; }
}

/* ── FAQ ACCORDION ── */
.faq-grid { display:flex; flex-direction:column; gap:.55rem; max-width:800px; margin:0 auto; }
.faq-item { background:var(--dark2); border:1px solid var(--border); border-radius:12px; overflow:hidden; transition:border-color .2s, box-shadow .2s; }
.faq-item:hover { border-color:rgba(234,179,8,.4); box-shadow:0 2px 16px rgba(0,0,0,.25); }
.faq-item[open] { border-color:rgba(234,179,8,.5); box-shadow:0 4px 24px rgba(234,179,8,.08); }
.faq-item summary {
  padding:1.1rem 1.5rem;
  font-size:1rem;
  font-weight:800;
  cursor:pointer;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:1.25rem;
  list-style:none;
  color:var(--white);
  line-height:1.45;
  user-select:none;
  -webkit-user-select:none;
  transition:background .15s, color .15s;
  letter-spacing:-.01em;
}
.faq-item summary:hover { background:rgba(234,179,8,.04); }
.faq-item summary:active { background:rgba(234,179,8,.08); }
.faq-item summary::-webkit-details-marker { display:none; }
.faq-item summary::marker { display:none; }
.faq-item summary::after {
  content:"+";
  width:28px; height:28px; min-width:28px;
  background:rgba(234,179,8,.1);
  border:1px solid rgba(234,179,8,.3);
  border-radius:50%;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:1.15rem;
  font-weight:700;
  color:var(--gold);
  flex-shrink:0;
  transition:background .2s, border-color .2s, transform .25s ease;
  line-height:1;
}
.faq-item[open] summary::after { content:"−"; background:rgba(234,179,8,.18); border-color:rgba(234,179,8,.6); }
.faq-item[open] summary { background:rgba(234,179,8,.05); border-bottom:1px solid rgba(234,179,8,.2); color:var(--gold); }
.faq-body { padding:.85rem 1.5rem 1.35rem; font-size:.88rem; color:var(--muted); line-height:1.82; }
.faq-body strong { color:var(--white); }
.faq-body a { color:var(--gold); }

/* ── INDUSTRY GRID ── */
.industry-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(210px,1fr)); gap:.75rem; margin:1rem 0 1.5rem; }
.industry-card { background:rgba(13,20,38,.5); border:1px solid rgba(234,179,8,.2); border-radius:10px; padding:1rem; font-size:.83rem; color:var(--muted); transition:border-color .2s; }
.industry-card:hover { border-color:rgba(234,179,8,.45); }
.industry-card strong { color:var(--white); display:block; margin-bottom:.25rem; }

/* ── CONTENT PROSE SECTION ── */
.prose-section { max-width:800px; margin:0 auto; }
.prose-h3 { font-size:1.05rem; font-weight:800; color:var(--gold); margin:2rem 0 .75rem; letter-spacing:-.01em; }
.prose-p { font-size:14px; color:var(--muted); line-height:1.85; margin-bottom:1rem; }
.prose-p strong { color:var(--white); }
.prose-lead { font-size:15px; color:var(--muted); line-height:1.85; margin-bottom:1.25rem; }

/* ── TRUST CARDS ── */
.trust-cards { display:flex; flex-direction:column; gap:1rem; }
.trust-card { background:var(--dark2); border:1px solid rgba(234,179,8,.25); border-radius:14px; padding:1.4rem; }
.trust-card-title { font-size:.95rem; font-weight:800; color:var(--gold); margin-bottom:.5rem; }
.trust-card-body { font-size:.84rem; color:var(--muted); line-height:1.7; }

@media(max-width:600px) {
  .faq-item summary { font-size:.85rem; padding:.9rem 1.1rem; }
  .faq-body { padding:.65rem 1.1rem 1rem; }
  .industry-grid { grid-template-columns:1fr 1fr; }
}
