/* ─── RESET ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Space Grotesk', sans-serif;
  background: #0E1428;
  color: #F2EEE8;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }

body::before {
  content: '';
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background-image:
    linear-gradient(rgba(245,181,68,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,181,68,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* ─── NAVBAR ─────────────────────────────────── */
.pf-nav {
  position: sticky; top: 0; z-index: 200;
  height: 64px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 3rem;
  background: rgba(14,20,40,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(245,181,68,0.18);
}

.pf-logo-wrap {
  cursor: pointer; flex-shrink: 0;
  display: flex; align-items: center; gap: 0.55rem;
}
.pf-logo-icon {
  height: 34px; width: 34px;
  border-radius: 8px; object-fit: cover; flex-shrink: 0;
}
.pf-logo-text {
  font-family: 'Space Grotesk', sans-serif; font-weight: 800; font-size: 1.1rem;
  background: linear-gradient(90deg, #F2EEE8 0%, #F5B544 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  white-space: nowrap;
}
.pf-logo-text .logo-dot { color: #F5B544; -webkit-text-fill-color: #F5B544; }

/* Hero logo — desktop */
.hero-logo {
  width: min(680px, 95%);
  height: auto;
  display: block;
  align-self: center;
  margin-bottom: 2rem;
  filter: drop-shadow(0 0 40px rgba(245,181,68,0.3));
}
.hero-logo--mobile { display: none; }

/* Hero logo — mobile */
.hero-logo-icon {
  width: 110px; height: 110px;
  border-radius: 24px;
  object-fit: cover;
  margin: 0 auto 1rem;
  display: block;
  filter: drop-shadow(0 0 28px rgba(245,181,68,0.45));
}
.hero-logo-name {
  font-family: 'Space Grotesk', sans-serif; font-weight: 800; font-size: 2rem;
  text-align: center; margin-bottom: 0.4rem; letter-spacing: -0.5px;
  background: linear-gradient(90deg, #F2EEE8 0%, #F5B544 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-logo-name span { /* color flows from parent gradient */ }
.hero-logo-slogan {
  font-family: 'Space Grotesk', sans-serif; font-size: 1rem; font-style: italic;
  text-align: center; margin-bottom: 1.8rem;
  background: linear-gradient(90deg, #F5B544, #E8963A);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

.pf-nav-links {
  display: flex; align-items: center; gap: 0.15rem; list-style: none;
}
.pf-nav-links > li > a,
.pf-nav-links > li > button {
  display: flex; align-items: center; gap: 5px;
  padding: 0.38rem 0.8rem; border-radius: 7px;
  font-size: 0.875rem; color: #7A8BA0;
  background: none; border: none; cursor: pointer;
  font-family: 'Space Grotesk', sans-serif;
  transition: color 0.15s ease-out, opacity 0.15s ease-out; white-space: nowrap;
}
.pf-nav-links > li > a:hover,
.pf-nav-links > li > button:hover { color: #F2EEE8; background: rgba(255,255,255,0.06); }

.nav-cta {
  padding: 0.42rem 1.1rem !important;
  background: #F5B544 !important; color: #fff !important;
  border-radius: 8px !important; font-weight: 500 !important;
}
.nav-cta:hover { background: #E0A030 !important; }

/* Dropdown */
.pf-dd { position: relative; }
.dd-arrow {
  display: inline-block; width: 0; height: 0;
  border-left: 4px solid transparent; border-right: 4px solid transparent;
  border-top: 5px solid #7A8BA0; transition: transform 0.22s;
}
.pf-dd.open .dd-arrow { transform: rotate(180deg); border-top-color: #F5B544; }
.dd-menu {
  position: fixed; top: auto; left: auto;
  transform: translateX(-50%) translateY(-8px);
  background: #1A2241; border: 1px solid rgba(245,181,68,0.18);
  border-radius: 12px; padding: 0.4rem; min-width: 210px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
  box-shadow: 0 20px 48px rgba(0,0,0,0.55);
}
.dd-menu.open { opacity: 1; pointer-events: all; transform: translateX(-50%) translateY(0); display: block !important; }
.dd-menu a {
  display: flex; align-items: center; gap: 10px;
  padding: 0.55rem 0.85rem; border-radius: 7px;
  font-size: 0.875rem; color: #7A8BA0; cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.dd-menu a:hover { background: rgba(245,181,68,0.12); color: #F2EEE8; }
.dd-menu .dd-all { color: #F5B544; }
.dd-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.dd-divider { height: 1px; background: rgba(245,181,68,0.18); margin: 0.3rem 0.5rem; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px; flex-shrink: 0;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: #F2EEE8; border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s, width 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: sticky; top: 64px; z-index: 199;
  flex-direction: column;
  background: rgba(14,20,40,0.98); backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(245,181,68,0.18);
  padding: 0 1.5rem; gap: 0.25rem;
  overflow: hidden;
}
.mobile-menu.open { display: flex; padding: 1rem 1.5rem 1.5rem; }
.mobile-menu a {
  padding: 0.7rem 0.5rem; font-size: 1rem; color: #7A8BA0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color 0.2s; cursor: pointer;
}
.mobile-menu a:hover { color: #F2EEE8; }
.mobile-menu .mob-sub {
  font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(245,181,68,0.5); padding: 0.8rem 0.5rem 0.2rem;
  border: none; cursor: default; display: block;
}
.mobile-menu .mob-indent { padding-left: 1.25rem; font-size: 0.9rem; }
.mobile-menu .mob-cta {
  margin-top: 0.5rem; padding: 0.75rem 1rem;
  background: #F5B544; color: #fff !important;
  border-radius: 10px; text-align: center; font-weight: 500; border: none;
}

/* ─── HERO ───────────────────────────────────── */
.pf-hero {
  min-height: calc(100vh - 64px);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 4rem 2rem; text-align: center; position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 0.35rem 1rem; border-radius: 100px;
  border: 1px solid rgba(245,181,68,0.18); background: rgba(245,181,68,0.08);
  font-size: 0.75rem; color: #F5B544;
  letter-spacing: 0.09em; text-transform: uppercase; font-weight: 500;
  margin-bottom: 2rem; animation: fadeUp 0.6s ease both;
}
.hero-dot {
  width: 6px; height: 6px; border-radius: 50%; background: #43e695;
  animation: blink 2s infinite;
}
.pf-hero h1 {
  font-family: 'Space Grotesk', sans-serif; font-weight: 800;
  font-size: clamp(2.2rem, 7vw, 5rem); line-height: 1.08;
  letter-spacing: -2px; margin-bottom: 1.25rem;
  animation: fadeUp 0.6s 0.1s ease both;
}
.pf-hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, #F5B544 20%, #E8963A 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.pf-hero > p {
  max-width: 520px; font-size: 1.05rem; color: #7A8BA0;
  line-height: 1.75; margin-bottom: 2.5rem; font-weight: 300;
  animation: fadeUp 0.6s 0.2s ease both;
}
.hero-btns {
  display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center;
  animation: fadeUp 0.6s 0.3s ease both;
}

/* Przyciski */
.btn-p {
  padding: 0.78rem 2rem; background: #F5B544; color: #fff;
  border-radius: 10px; font-weight: 500; font-size: 0.95rem;
  border: none; cursor: pointer; font-family: 'Space Grotesk', sans-serif;
  transition: transform 0.15s ease-out, opacity 0.15s ease-out;
  will-change: transform;
}
.btn-p:hover { opacity: 0.85; transform: translateY(-2px); }
.btn-g {
  padding: 0.78rem 2rem; background: transparent; color: #F2EEE8;
  border-radius: 10px; font-weight: 500; font-size: 0.95rem;
  border: 1px solid rgba(245,181,68,0.18); cursor: pointer;
  font-family: 'Space Grotesk', sans-serif; transition: background 0.2s;
}
.btn-g:hover { background: rgba(255,255,255,0.05); }

/* Scroll hint */
.scroll-hint {
  margin-top: 3.5rem; display: flex; flex-direction: column; align-items: center; gap: 10px;
  animation: fadeUp 0.6s 0.5s ease both;
}
.scroll-label { font-size: 0.75rem; color: #7A8BA0; letter-spacing: 0.08em; text-transform: uppercase; }
.scroll-btn {
  width: 44px; height: 44px; border: 1px solid rgba(245,181,68,0.18); border-radius: 50%;
  background: rgba(245,181,68,0.08); display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: #F5B544;
  transition: background 0.22s, border-color 0.22s;
  animation: floatArrow 2s ease-in-out infinite;
}
.scroll-btn svg { width: 18px; height: 18px; animation: arrowPulse 2s ease-in-out infinite; }
.scroll-btn:hover { background: rgba(245,181,68,0.22); border-color: rgba(245,181,68,0.6); }

/* ─── SEKCJE ─────────────────────────────────── */
.pf-section { padding: 6rem 3rem; max-width: 1120px; margin: 0 auto; position: relative; z-index: 1; }
.divider { width: 100%; height: 1px; background: rgba(245,181,68,0.18); border: none; position: relative; z-index: 1; }
.sec-label { font-size: 0.72rem; letter-spacing: 0.13em; text-transform: uppercase; color: #F5B544; font-weight: 600; margin-bottom: 0.6rem; }
.sec-title { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: clamp(1.8rem, 4vw, 3rem); letter-spacing: -1px; margin-bottom: 0.9rem; }
.sec-sub { color: #7A8BA0; font-size: 0.97rem; max-width: 480px; line-height: 1.75; margin-bottom: 3rem; }

/* O mnie */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-text p { color: #7A8BA0; line-height: 1.8; font-size: 0.95rem; margin-bottom: 1.1rem; }
.about-stats { display: flex; gap: 2.5rem; margin-top: 2rem; flex-wrap: wrap; }
.stat-num { font-family: 'Space Grotesk', sans-serif; font-size: 2.2rem; font-weight: 800; line-height: 1; }
.stat-num.accent  { color: #F5B544; }
.stat-num.accent2 { color: #E8963A; }
.stat-num.accent3 { color: #43e695; }
.stat-lbl { font-size: 0.78rem; color: #7A8BA0; margin-top: 4px; }

.code-box { background: #1A2241; border: 1px solid rgba(245,181,68,0.18); border-radius: 16px; padding: 1.75rem; overflow: auto; }
.code-dots { display: flex; gap: 7px; margin-bottom: 1.1rem; align-items: center; }
.code-dots span { width: 11px; height: 11px; border-radius: 50%; }
.code-fn { font-size: 0.73rem; color: #7A8BA0; margin-left: 6px; }
pre { font-size: 0.78rem; color: #7A8BA0; line-height: 1.85; font-family: 'Courier New', monospace; }
.kw   { color: #F5B544; }
.fn   { color: #43e695; }
.prop { color: #ff9d6c; }
.str  { color: #ffcb6b; }

/* Skills */
.skills-list { display: flex; flex-direction: column; gap: 1.5rem; }
.skill-row { display: flex; flex-direction: column; gap: 0.45rem; }
.skill-top { display: flex; justify-content: space-between; }
.skill-name { font-size: 0.88rem; font-weight: 500; }
.skill-pct  { font-size: 0.8rem; color: #7A8BA0; }
.skill-track { height: 7px; background: #1C2548; border-radius: 100px; overflow: hidden; }
.skill-bar {
  height: 100%; border-radius: 100px; width: 0%;
  transition: width 1.3s cubic-bezier(0.4,0,0.2,1); position: relative;
}
.skill-bar::after {
  content: ''; position: absolute; right: -1px; top: 50%; transform: translateY(-50%);
  width: 11px; height: 11px; border-radius: 50%; background: inherit;
}

/* Kalkulator ROI */
.calc-wrap {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 2.5rem; align-items: start;
}
.calc-inputs { display: flex; flex-direction: column; gap: 2rem; }
.calc-field label {
  display: block; font-size: 0.875rem; color: #8A9BB0; margin-bottom: 0.9rem; font-weight: 500;
}
.calc-input-wrap { display: flex; align-items: center; gap: 1rem; }
.calc-input-wrap input[type="range"] {
  flex: 1; -webkit-appearance: none; height: 4px;
  background: linear-gradient(90deg, #F5B544, #E8963A);
  border-radius: 4px; outline: none; cursor: pointer;
}
.calc-input-wrap input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; width: 18px; height: 18px; border-radius: 50%;
  background: #fff; border: 3px solid #F5B544; cursor: pointer;
}
.calc-val-display {
  font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1rem;
  color: #fff; min-width: 110px; text-align: right; white-space: nowrap;
}
.calc-btns-pkg { display: flex; gap: 0.75rem; }
.pkg-btn {
  flex: 1; padding: 0.85rem 1rem; border-radius: 12px; border: 1px solid rgba(245,181,68,0.25);
  background: #1A2241; color: #7A8BA0; font-family: 'Space Grotesk', sans-serif; font-weight: 700;
  font-size: 0.85rem; cursor: pointer; transition: border-color 0.18s ease-out, background 0.18s ease-out, color 0.18s ease-out; text-align: center; line-height: 1.5;
}
.pkg-btn small { display: block; font-family: 'Space Grotesk', sans-serif; font-weight: 400; font-size: 0.78rem; color: #4A5870; margin-top: 2px; }
.pkg-btn.active, .pkg-btn:hover { border-color: #F5B544; background: rgba(245,181,68,0.12); color: #fff; }
.pkg-btn.active small, .pkg-btn:hover small { color: #a09edd; }
.calc-result {
  background: #1A2241; border: 1px solid rgba(245,181,68,0.25);
  border-radius: 22px; padding: 2.25rem; position: sticky; top: 80px;
}
.calc-result-inner { display: flex; flex-direction: column; gap: 0; }
.calc-result-label { font-size: 0.8rem; color: #607090; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.35rem; }
.calc-result-value {
  font-family: 'Space Grotesk', sans-serif; font-weight: 800; font-size: 2rem; color: #fff; margin-bottom: 1.25rem;
}
.calc-result-value.accent-green { color: #43e695; }
.calc-result-value.accent-purple {
  background: linear-gradient(90deg, #F5B544, #E8963A);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.calc-divider-line { height: 1px; background: rgba(245,181,68,0.12); margin-bottom: 1.25rem; }
@media(max-width:768px) {
  .calc-wrap { grid-template-columns: 1fr; }
  .calc-result { position: static; }
}

/* Tabela porównawcza */
.cmp-wrap { margin-top: 3.5rem; }
.cmp-title {
  font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1.15rem;
  text-align: center; margin-bottom: 1.5rem; color: #F2EEE8;
}
.cmp-table { border: 1px solid rgba(245,181,68,0.18); border-radius: 18px; overflow: hidden; }
.cmp-head, .cmp-row {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
}
.cmp-head {
  background: rgba(245,181,68,0.08); border-bottom: 1px solid rgba(245,181,68,0.15);
}
.cmp-row { border-bottom: 1px solid rgba(245,181,68,0.08); }
.cmp-row:last-child { border-bottom: none; }
.cmp-row:hover { background: rgba(245,181,68,0.04); }
.cmp-col-label, .cmp-col {
  padding: 1rem 1.25rem; font-size: 0.875rem; display: flex; align-items: center;
}
.cmp-col-label { color: #8A9BB0; }
.cmp-col { justify-content: center; text-align: center; font-weight: 500; color: #A0B0C0; }
.cmp-col--us {
  background: rgba(245,181,68,0.07);
  border-left: 1px solid rgba(245,181,68,0.15);
  border-right: 1px solid rgba(245,181,68,0.15);
  color: #fff; font-weight: 600;
}
.cmp-col--them { color: #607090; }
.cmp-yes { color: #43e695 !important; }
.cmp-no { color: #E8963A !important; }
@media(max-width:600px) {
  .cmp-col-label { font-size: 0.78rem; padding: 0.85rem 0.75rem; }
  .cmp-col { font-size: 0.78rem; padding: 0.85rem 0.5rem; }
}

/* Dlaczego my */
.why-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2.5rem;
}
.why-card {
  background: #1A2241; border: 1px solid rgba(245,181,68,0.18);
  border-radius: 20px; padding: 2.25rem 2rem;
  transition: transform 0.22s ease-out, box-shadow 0.22s ease-out;
  will-change: transform;
}
.why-card:hover { transform: translateY(-4px); box-shadow: 0 0 0 1px rgba(245,181,68,0.4), 0 12px 32px rgba(0,0,0,0.3); }
.why-icon-wrap {
  width: 54px; height: 54px; border-radius: 14px;
  border: 1px solid; display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.35rem;
}
.why-card h3 {
  font-family: 'Space Grotesk', sans-serif; font-size: 1.15rem; font-weight: 700;
  margin-bottom: 0.45rem;
}
.why-sub { color: #7A8BA0; font-size: 0.875rem; margin-bottom: 1.4rem; line-height: 1.6; }
.why-list { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.why-list li {
  display: flex; align-items: flex-start; gap: 0.6rem;
  font-size: 0.875rem; color: #A0B0C0; line-height: 1.55;
}
.why-check {
  color: #F5B544; font-weight: 700; flex-shrink: 0; margin-top: 1px;
}
@media(max-width:700px) {
  .why-grid { grid-template-columns: 1fr; }
}

/* Oferta */
.offer-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; align-items: stretch; }
.offer-grid.has-open { align-items: start; }
.offer-card {
  background: #1A2241; border: 1px solid rgba(245,181,68,0.18);
  border-radius: 18px; padding: 2rem 1.75rem;
  position: relative; overflow: hidden;
}
.offer-card.featured { border-color: rgba(245,181,68,0.42); }
.offer-icon { width: 46px; height: 46px; border-radius: 11px; display: flex; align-items: center; justify-content: center; font-size: 1.35rem; margin-bottom: 1.25rem; }
.offer-card h3 { font-family: 'Space Grotesk', sans-serif; font-size: 1.1rem; font-weight: 700; margin-bottom: 0.65rem; }
.offer-card p { color: #7A8BA0; font-size: 0.87rem; line-height: 1.68; }
.offer-price { margin-top: 1.4rem; padding-top: 1.25rem; padding-top: 1.25rem; border-top: 1px solid rgba(245,181,68,0.18); font-family: 'Space Grotesk', sans-serif; font-size: 1.35rem; font-weight: 700; }
.offer-price small { font-size: 0.78rem; color: #7A8BA0; font-family: 'Space Grotesk',sans-serif; font-weight: 300; }
.badge-pop { position: absolute; top: 1.2rem; right: 1.2rem; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.06em; background: #F5B544; color: #fff; padding: 0.18rem 0.55rem; border-radius: 4px; }

/* Kalkulator — rozszerzone style */
.calc-section { position: relative; overflow: hidden; }
.calc-glow-bg {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(245,181,68,0.07) 0%, transparent 70%);
}
.calc-section .sec-label,
.calc-section .sec-title,
.calc-section .sec-sub,
.calc-stat-banner,
.calc-wrap,
.calc-footnote { position: relative; z-index: 1; }

.calc-stat-banner {
  display: grid; grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0; margin-top: 2.5rem; margin-bottom: 0;
  background: #1A2241; border: 1px solid rgba(245,181,68,0.22);
  border-radius: 18px; overflow: hidden;
}
.calc-stat-item {
  padding: 1.5rem 1.75rem; display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 0.35rem;
}
.calc-stat-num {
  font-family: 'Space Grotesk', sans-serif; font-weight: 800; font-size: 2rem;
  background: linear-gradient(90deg, #F5B544, #E8963A);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.calc-stat-desc { font-size: 0.8rem; color: #7A8BA0; line-height: 1.5; max-width: 180px; }
.calc-stat-sep { width: 1px; background: rgba(245,181,68,0.15); margin: 1rem 0; }
@media(max-width:768px) {
  .calc-stat-banner { grid-template-columns: 1fr; }
  .calc-stat-sep { width: auto; height: 1px; margin: 0 1rem; }
  .calc-stat-item { padding: 1.25rem; }
}

.calc-avg-badge {
  display: inline-block; margin-left: 0.5rem; font-size: 0.72rem; font-weight: 600;
  background: rgba(67,230,149,0.12); color: #43e695;
  padding: 0.1rem 0.5rem; border-radius: 4px; border: 1px solid rgba(67,230,149,0.2);
  vertical-align: middle;
}
.calc-footnote {
  font-size: 0.75rem; color: #4A5870; margin-top: 0.5rem; line-height: 1.5;
  font-style: italic;
}

/* Projekty */
.projects-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.proj-card { background: #1A2241; border: 1px solid rgba(245,181,68,0.18); border-radius: 16px; overflow: hidden; transition: transform 0.22s ease-out, box-shadow 0.22s ease-out; will-change: transform; }
.proj-card:hover { transform: translateY(-5px); box-shadow: 0 0 0 1px rgba(245,181,68,0.4), 0 16px 36px rgba(0,0,0,0.35); }
.proj-thumb { height: 175px; overflow: hidden; position: relative; }
.proj-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.45s ease; }
.proj-card:hover .proj-thumb img { transform: scale(1.06); }
.proj-body { padding: 1.25rem 1.5rem; }
.proj-tag { display: inline-block; font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.18rem 0.55rem; border-radius: 4px; background: rgba(245,181,68,0.12); color: #F5B544; margin-bottom: 0.55rem; font-weight: 600; }
.proj-body h3 { font-family: 'Syne',sans-serif; font-size: 1rem; font-weight: 700; margin-bottom: 0.4rem; }
.proj-body p { font-size: 0.84rem; color: #7A8BA0; line-height: 1.65; }
.proj-link { display: inline-flex; align-items: center; gap: 5px; margin-top: 0.9rem; font-size: 0.82rem; color: #F5B544; font-weight: 500; transition: opacity 0.18s; cursor: pointer; }
.proj-link:hover { opacity: 0.8; }

/* Kontakt */
.contact-wrap { background: #1A2241; border: 1px solid rgba(245,181,68,0.18); border-radius: 22px; padding: 3.5rem; display: flex; gap: 4rem; align-items: center; }
.contact-left { flex: 1; }
.contact-left h2 { font-family: 'Syne',sans-serif; font-size: 2.2rem; font-weight: 800; letter-spacing: -1px; line-height: 1.15; margin-bottom: 0.85rem; }
.contact-left h2 em { font-style: normal; background: linear-gradient(135deg, #F5B544, #E8963A); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.contact-left p { color: #7A8BA0; font-size: 0.95rem; line-height: 1.75; }
.contact-right { flex: 1; display: flex; flex-direction: column; gap: 1rem; }
.contact-item { display: flex; align-items: center; gap: 14px; padding: 1rem 1.2rem; background: #1C2548; border-radius: 12px; border: 1px solid rgba(245,181,68,0.18); transition: border-color 0.2s; }
.contact-item:hover { border-color: rgba(245,181,68,0.4); }
.contact-icon { width: 38px; height: 38px; border-radius: 9px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }
.contact-lbl { font-size: 0.73rem; color: #7A8BA0; margin-bottom: 2px; }
.contact-val { font-size: 0.92rem; }

/* Footer */
.pf-footer { padding: 1.75rem 3rem; border-top: 1px solid rgba(245,181,68,0.18); display: flex; justify-content: space-between; align-items: center; position: relative; z-index: 1; flex-wrap: wrap; gap: 0.5rem; }
.pf-footer span { font-size: 0.8rem; color: #7A8BA0; }
.footer-accent { color: #F5B544; }

/* ─── ANIMACJE ───────────────────────────────── */
@keyframes fadeUp { from{opacity:0;transform:translateY(22px)} to{opacity:1;transform:translateY(0)} }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.25} }
@keyframes floatArrow { 0%,100%{transform:translateY(0)} 50%{transform:translateY(7px)} }
@keyframes arrowPulse { 0%,100%{opacity:1} 50%{opacity:0.5} }

/* ─── TABLET ≤ 1024px ───────────────────────── */
@media (max-width: 1024px) {
  .pf-nav { padding: 0 1.75rem; }
  .pf-nav-links > li > a,
  .pf-nav-links > li > button { padding: 0.38rem 0.55rem; font-size: 0.82rem; }
  .pf-section { padding: 5rem 2rem; }
  .about-grid { gap: 2.5rem; }
  .offer-grid { grid-template-columns: repeat(2,1fr); }
  .projects-grid { grid-template-columns: repeat(2,1fr); }
  .contact-wrap { gap: 2.5rem; padding: 2.5rem; }
}

/* ─── MOBILE ≤ 768px ────────────────────────── */
@media (max-width: 768px) {
  .pf-nav { padding: 0 1.25rem; }
  .pf-nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-logo--desktop,
  .hero-logo.hero-logo--desktop { display: none !important; }
  .hero-logo--mobile { display: block !important; }

  .pf-hero { padding: 3rem 1.25rem; }
  .pf-hero h1 { font-size: clamp(2rem, 9vw, 3.2rem); letter-spacing: -1px; }
  .pf-hero > p { font-size: 0.95rem; }
  .hero-btns { flex-direction: column; width: 100%; }
  .btn-p, .btn-g { width: 100%; text-align: center; justify-content: center; }

  .pf-section { padding: 4rem 1.25rem; }
  .sec-title { font-size: clamp(1.6rem, 7vw, 2.2rem); }

  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .offer-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }

  .contact-wrap { flex-direction: column; gap: 2rem; padding: 2rem 1.5rem; }
  .contact-left h2 { font-size: 1.8rem; }
  .pf-footer { padding: 1.5rem 1.25rem; flex-direction: column; text-align: center; }
}

/* ─── SMALL MOBILE ≤ 480px ──────────────────── */
@media (max-width: 480px) {
  .pf-hero h1 { font-size: clamp(1.8rem, 10vw, 2.5rem); }
  .about-stats { flex-direction: column; gap: 1rem; }
  .code-box { padding: 1.25rem; }
  pre { font-size: 0.72rem; }
  .contact-wrap { padding: 1.5rem 1.25rem; }
}

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 2.5rem; max-width: 820px; margin-left: auto; margin-right: auto; }
.faq-item { background: #1A2241; border: 1px solid rgba(245,181,68,0.18); border-radius: 14px; overflow: hidden; transition: border-color 0.2s; }
.faq-item.open { border-color: rgba(245,181,68,0.42); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 1.25rem 1.5rem; font-family: 'Space Grotesk', sans-serif; font-weight: 700;
  font-size: 0.95rem; color: #F2EEE8; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq-q:hover { color: #fff; }
.faq-arrow {
  width: 18px; height: 18px; flex-shrink: 0; border-right: 2px solid #F5B544; border-bottom: 2px solid #F5B544;
  transform: rotate(45deg); transition: transform 0.25s; margin-top: -4px;
}
.faq-item.open .faq-arrow { transform: rotate(-135deg); margin-top: 4px; }
.faq-a { display: none; padding: 0 1.5rem 1.25rem; }
.faq-item.open .faq-a { display: block; }
.faq-a p { color: #7A8BA0; font-size: 0.875rem; line-height: 1.75; }
.badge-pop { position: absolute; top: 1.2rem; right: 1.2rem; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.06em; background: #F5B544; color: #fff; padding: 0.18rem 0.55rem; border-radius: 4px; }
@media(max-width:900px) { .offer-grid { grid-template-columns: 1fr; } }

/* Kalkulator — rozszerzone style */
.calc-section { position: relative; overflow: hidden; }
.calc-glow-bg {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(245,181,68,0.07) 0%, transparent 70%);
}
.calc-section .sec-label,
.calc-section .sec-title,
.calc-section .sec-sub,
.calc-stat-banner,
.calc-wrap,
.calc-footnote { position: relative; z-index: 1; }
.calc-stat-banner {
  display: grid; grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0; margin-top: 2.5rem; margin-bottom: 0;
  background: #1A2241; border: 1px solid rgba(245,181,68,0.22);
  border-radius: 18px; overflow: hidden;
}
.calc-stat-item {
  padding: 1.5rem 1.75rem; display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 0.35rem;
}
.calc-stat-num {
  font-family: 'Space Grotesk', sans-serif; font-weight: 800; font-size: 2rem;
  background: linear-gradient(90deg, #F5B544, #E8963A);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.calc-stat-desc { font-size: 0.8rem; color: #7A8BA0; line-height: 1.5; max-width: 180px; }
.calc-stat-sep { width: 1px; background: rgba(245,181,68,0.15); margin: 1rem 0; }
.calc-avg-badge {
  display: inline-block; margin-left: 0.5rem; font-size: 0.72rem; font-weight: 600;
  background: rgba(67,230,149,0.12); color: #43e695;
  padding: 0.1rem 0.5rem; border-radius: 4px; border: 1px solid rgba(67,230,149,0.2);
  vertical-align: middle;
}
.calc-footnote { font-size: 0.75rem; color: #4A5870; margin-top: 0.5rem; line-height: 1.5; font-style: italic; }

/* Projekty */
.projects-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.proj-card { background: #1A2241; border: 1px solid rgba(245,181,68,0.18); border-radius: 16px; overflow: hidden; transition: transform 0.22s ease-out, box-shadow 0.22s ease-out; will-change: transform; }
.proj-card:hover { transform: translateY(-5px); box-shadow: 0 0 0 1px rgba(245,181,68,0.4), 0 16px 36px rgba(0,0,0,0.35); }
.proj-thumb { height: 175px; overflow: hidden; position: relative; }
.proj-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.45s ease; }
.proj-card:hover .proj-thumb img { transform: scale(1.06); }
.proj-body { padding: 1.25rem 1.5rem; }
.proj-tag { display: inline-block; font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.18rem 0.55rem; border-radius: 4px; background: rgba(245,181,68,0.12); color: #F5B544; margin-bottom: 0.55rem; font-weight: 600; }
.proj-body h3 { font-family: 'Syne',sans-serif; font-size: 1rem; font-weight: 700; margin-bottom: 0.4rem; }
.proj-body p { font-size: 0.84rem; color: #7A8BA0; line-height: 1.65; }
.proj-link { display: inline-flex; align-items: center; gap: 5px; margin-top: 0.9rem; font-size: 0.82rem; color: #F5B544; font-weight: 500; transition: opacity 0.18s; cursor: pointer; }
.proj-link:hover { opacity: 0.8; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 2.5rem; max-width: 820px; margin-left: auto; margin-right: auto; }
.faq-item { background: #1A2241; border: 1px solid rgba(245,181,68,0.18); border-radius: 14px; overflow: hidden; transition: border-color 0.2s; }
.faq-item.open { border-color: rgba(245,181,68,0.42); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 1.25rem 1.5rem; font-family: 'Space Grotesk', sans-serif; font-weight: 700;
  font-size: 0.95rem; color: #F2EEE8; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq-q:hover { color: #fff; }
.faq-arrow { width: 18px; height: 18px; flex-shrink: 0; border-right: 2px solid #F5B544; border-bottom: 2px solid #F5B544; transform: rotate(45deg); transition: transform 0.25s; margin-top: -4px; }
.faq-item.open .faq-arrow { transform: rotate(-135deg); margin-top: 4px; }
.faq-a { display: none; padding: 0 1.5rem 1.25rem; }
.faq-item.open .faq-a { display: block; }
.faq-a p { color: #7A8BA0; font-size: 0.875rem; line-height: 1.75; }

/* Kontakt */
.contact-wrap { background: #1A2241; border: 1px solid rgba(245,181,68,0.18); border-radius: 22px; padding: 3.5rem; display: flex; gap: 4rem; align-items: center; }
.contact-left { flex: 1; }
.contact-left h2 { font-family: 'Syne',sans-serif; font-size: 2.2rem; font-weight: 800; letter-spacing: -1px; line-height: 1.15; margin-bottom: 0.85rem; }
.contact-left h2 em { font-style: normal; background: linear-gradient(135deg, #F5B544, #E8963A); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.contact-left p { color: #7A8BA0; font-size: 0.95rem; line-height: 1.75; }
.contact-right { flex: 1; display: flex; flex-direction: column; gap: 1rem; }
.contact-item { display: flex; align-items: center; gap: 14px; padding: 1rem 1.2rem; background: #1C2548; border-radius: 12px; border: 1px solid rgba(245,181,68,0.18); transition: border-color 0.2s; }
.contact-item:hover { border-color: rgba(245,181,68,0.4); }
.contact-icon { width: 38px; height: 38px; border-radius: 9px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }
.contact-lbl { font-size: 0.73rem; color: #7A8BA0; margin-bottom: 2px; }
.contact-val { font-size: 0.92rem; }
.contact-val a { color: #F2EEE8; transition: color 0.18s; }
.contact-val a:hover { color: #F5B544; }

/* Footer */
.pf-footer { padding: 1.75rem 3rem; border-top: 1px solid rgba(245,181,68,0.18); display: flex; justify-content: space-between; align-items: center; position: relative; z-index: 1; flex-wrap: wrap; gap: 0.5rem; }
.pf-footer span { font-size: 0.8rem; color: #7A8BA0; }
.footer-accent { color: #F5B544 !important; }

/* ─── ANIMACJE ────────────────────────────────── */
@keyframes fadeUp { from{opacity:0;transform:translateY(22px)} to{opacity:1;transform:translateY(0)} }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.25} }
@keyframes floatArrow { 0%,100%{transform:translateY(0)} 50%{transform:translateY(7px)} }
@keyframes arrowPulse { 0%,100%{opacity:1} 50%{opacity:0.5} }

/* ─── TABLET ≤ 1024px ───────────────────────── */
@media (max-width: 1024px) {
  .pf-nav { padding: 0 1.75rem; }
  .pf-nav-links > li > a,
  .pf-nav-links > li > button { padding: 0.38rem 0.55rem; font-size: 0.82rem; }
  .pf-section { padding: 5rem 2rem; }
  .about-grid { gap: 2.5rem; }
  .offer-grid { grid-template-columns: repeat(2,1fr); }
  .projects-grid { grid-template-columns: repeat(2,1fr); }
  .contact-wrap { gap: 2.5rem; padding: 2.5rem; }
  .calc-stat-banner { grid-template-columns: 1fr auto 1fr; }
}

/* ─── MOBILE ≤ 768px ────────────────────────── */
@media (max-width: 768px) {
  .pf-nav { padding: 0 1.25rem; }
  .pf-nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-logo--desktop,
  .hero-logo.hero-logo--desktop { display: none !important; }
  .hero-logo--mobile { display: block !important; }
  .pf-hero { padding: 3rem 1.25rem; }
  .pf-hero h1 { font-size: clamp(2rem, 9vw, 3.2rem); letter-spacing: -1px; }
  .pf-hero > p { font-size: 0.95rem; }
  .hero-btns { flex-direction: column; width: 100%; }
  .btn-p, .btn-g { width: 100%; text-align: center; justify-content: center; }
  .pf-section { padding: 4rem 1.25rem; }
  .sec-title { font-size: clamp(1.6rem, 7vw, 2.2rem); }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .offer-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .contact-wrap { flex-direction: column; gap: 2rem; padding: 2rem 1.5rem; }
  .contact-left h2 { font-size: 1.8rem; }
  .pf-footer { padding: 1.5rem 1.25rem; flex-direction: column; text-align: center; }
  .calc-wrap { grid-template-columns: 1fr; }
  .calc-result { position: static; }
  .calc-result-inner { align-items: center; text-align: center; }
  .calc-result-value { font-size: 1.6rem; }
  .calc-result-label { font-size: 0.72rem; }
  .calc-divider-line { width: 100%; }
  .calc-stat-banner { grid-template-columns: 1fr; }
  .calc-stat-sep { width: auto; height: 1px; margin: 0 1rem; }
  .calc-stat-item { padding: 1.25rem; }
  .cmp-col-label { font-size: 0.78rem; padding: 0.85rem 0.75rem; }
  .cmp-col { font-size: 0.78rem; padding: 0.85rem 0.5rem; }
}


/* ─── HERO SYGNET + WORDMARK (nowy design Navy+Amber) ──── */
.hero-logo.hero-logo--desktop {
  display: flex; flex-direction: column; align-items: center;
  margin-bottom: 2rem; animation: fadeUp 0.6s ease both;
  background: none; filter: none;
}
.hero-sygnet {
  width: 120px; height: 120px;
  filter: drop-shadow(0 0 32px rgba(245,181,68,0.35));
  margin-bottom: 1.25rem;
}
.hero-wordmark {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 600; letter-spacing: -0.04em; line-height: 1;
  color: #F2EEE8;
}
.hero-dot-accent { color: #F5B544; }
.hero-divider {
  width: 80px; height: 1px;
  background: rgba(242,238,232,0.2);
  margin: 1.4rem 0 1rem;
}
.hero-subline {
  font-size: 1rem; letter-spacing: 0.04em; opacity: 0.6;
  font-weight: 400; color: #F2EEE8;
}
.hero-tagline {
  font-size: 1.3rem; font-style: italic; font-weight: 500;
  color: #F5B544; letter-spacing: -0.01em; margin-top: 0.4rem;
}

/* Mobile hero - sygnet zamiast icon.png */
.hero-logo-icon {
  background: none !important;
  border-radius: 0 !important;
  object-fit: contain !important;
}
.hero-logo-slogan {
  background: none !important;
  -webkit-text-fill-color: #F5B544 !important;
  color: #F5B544 !important;
}
.hero-logo-name {
  background: none !important;
  -webkit-text-fill-color: #F2EEE8 !important;
  color: #F2EEE8 !important;
  background-clip: unset !important;
}

/* Skill bar — amber gradient */
.skill-bar { background: linear-gradient(90deg, #F5B544, #E8963A); }
.skill-track { background: #1C2548; }

/* Grid body background dots — amber */
body::before {
  background-image:
    linear-gradient(rgba(245,181,68,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,181,68,0.035) 1px, transparent 1px);
}

/* Calc glow — amber */
.calc-glow-bg {
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(245,181,68,0.06) 0%, transparent 70%);
}
/* ─── SMALL MOBILE ≤ 480px ──────────────────── */
@media (max-width: 480px) {
  .pf-hero h1 { font-size: clamp(1.8rem, 10vw, 2.5rem); }
  .about-stats { flex-direction: column; gap: 1rem; }
  .code-box { padding: 1.25rem; }
  pre { font-size: 0.72rem; }
  .contact-wrap { padding: 1.5rem 1rem; }
  .faq-q { font-size: 0.88rem; padding: 1rem 1.25rem; }
}
