:root {
  --primary: #0c3a6d;
  --secondary: #e46a1a;
  --neutral: #ffffff;
  --neutral-dark: #f5f5f5;
  --text: #1f2b3a;
  --shadow: 0 10px 30px rgba(12, 58, 109, 0.15);
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: 'Open Sans', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--neutral);
  line-height: 1.6;
  padding-top: 0;
}
body.nav-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.page {
  overflow-x: hidden;
  background: linear-gradient(135deg, #f7f9fc 0%, #ffffff 35%);
}
header {
  position: static;
  z-index: 20;
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(12, 58, 109, 0.08);
}
.nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Poppins', sans-serif;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.5px;
}
.logo img {
  height: 40px;
  width: auto;
}
.logo-light { color: #f6f8fb; }
.nav-links {
  display: flex;
  gap: 18px;
  align-items: center;
  font-weight: 600;
  color: var(--primary);
}
.nav-links a {
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.nav-links a:hover {
  border-color: var(--secondary);
  color: var(--secondary);
}
.nav-cta {
  white-space: nowrap;
  min-width: auto;
  padding: 10px 14px;
  gap: 6px;
}
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 42px;
  height: 42px;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid rgba(12, 58, 109, 0.3);
  background: rgba(12, 58, 109, 0.08);
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  height: 2px;
  width: 18px;
  background: var(--primary);
  border-radius: 999px;
  margin: 0 auto;
}
.icon-phone {
  width: 18px;
  height: 18px;
  fill: var(--secondary);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s ease;
  text-align: center;
  min-width: 200px;
}
.btn-primary {
  background: var(--secondary);
  color: #fff;
  box-shadow: var(--shadow);
}
.btn-primary:hover { background: #cf5c15; }
.btn-primary:active { background: #b14b10; box-shadow: inset 0 2px 6px rgba(0,0,0,0.2); }
.btn-secondary {
  background: transparent;
  color: var(--secondary);
  border-color: var(--secondary);
}
.btn-secondary:hover { background: rgba(228, 106, 26, 0.1); }
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  align-items: center;
  gap: 32px;
  padding: 96px 20px 72px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(12,58,109,0.1), transparent 35%), radial-gradient(circle at 80% 30%, rgba(228,106,26,0.12), transparent 35%);
  z-index: 0;
}
.hero-copy {
  position: relative;
  z-index: 1;
  padding: 24px;
  background: rgba(255,255,255,0.92);
  border-radius: 16px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(12, 58, 109, 0.08);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: rgba(12, 58, 109, 0.08);
  border-radius: 999px;
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 12px;
}
h1, h2, h3 {
  font-family: 'Poppins', sans-serif;
  color: var(--primary);
  margin: 0 0 12px;
  line-height: 1.2;
}
h1 { font-size: 38px; }
h2 { font-size: 30px; }
h3 { font-size: 22px; }
p { margin: 0 0 16px; font-size: 16px; }
.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  margin-top: 16px;
}
.microcopy {
  font-size: 14px;
  color: #45556b;
}
.hero-visual {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 320px;
  aspect-ratio: 16 / 9;
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
section {
  padding: 72px 0;
  position: relative;
}
.section-light { background: var(--neutral); }
.section-soft { background: var(--neutral-dark); }
.section-title {
  max-width: 680px;
  margin-bottom: 32px;
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  border: 1px solid rgba(12, 58, 109, 0.08);
  box-shadow: 0 8px 24px rgba(12, 58, 109, 0.08);
}
.badge {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 12px;
  background: rgba(228, 106, 26, 0.1);
  color: var(--secondary);
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 8px;
}
.list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
.list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  padding: 12px 14px;
  background: rgba(12, 58, 109, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(12, 58, 109, 0.08);
  color: #2d3b4f;
}
.list strong { color: var(--primary); }
.benefits .card h3 { margin-bottom: 6px; }
.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 16px;
}
.stat {
  background: rgba(12, 58, 109, 0.06);
  border: 1px solid rgba(12, 58, 109, 0.12);
  color: var(--primary);
  padding: 12px 14px;
  border-radius: 10px;
  font-weight: 700;
  min-width: 160px;
}
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}
.quote {
  background: #fff;
  padding: 18px;
  border-radius: 12px;
  border: 1px solid rgba(12, 58, 109, 0.1);
  box-shadow: 0 8px 24px rgba(12, 58, 109, 0.08);
  font-style: italic;
  color: #2d3b4f;
}
.comparison {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 16px;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(12, 58, 109, 0.08);
  border-radius: 999px;
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
}
.pill-alt {
  background: rgba(228,106,26,0.12);
  color: #a43c00;
}
details {
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(12, 58, 109, 0.1);
  padding: 14px 16px;
  box-shadow: 0 8px 24px rgba(12, 58, 109, 0.08);
}
summary {
  cursor: pointer;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  color: var(--primary);
}
details[open] summary { color: var(--secondary); }
footer {
  background: #0a2f59;
  color: #e4ecf7;
  padding: 32px 0;
}
footer .footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  align-items: center;
}
footer a { color: #f6a55c; }
.sticky-cta {
  position: fixed;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  max-width: 440px;
  z-index: 30;
  display: none !important; /* wyłączony sticky CTA na dole */
}
.sticky-cta .btn { width: 100%; }
.mini-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--secondary);
  font-weight: 700;
  margin-top: 10px;
  text-decoration: underline;
}
.section-cta { margin-top: 32px; }
.visual-center {
  max-width: 960px;
  margin: 0 auto;
}
.microcopy-center {
  margin-top: 12px;
  text-align: center;
}
@media (max-width: 960px) {
  h1 { font-size: 32px; }
  h2 { font-size: 26px; }
  body { padding-top: calc(96px + env(safe-area-inset-top, 0px)); }
  header {
    position: fixed;
    top: env(safe-area-inset-top, 0px);
    left: 0;
    right: 0;
    width: 100%;
    z-index: 40;
  }
  .nav {
    position: relative;
    padding: 10px 12px;
    flex-wrap: wrap;
    gap: 8px;
  }
  .logo img { height: 34px; }
  .logo span { font-size: 19px; }
  .menu-toggle { display: flex; margin-left: auto; order: 2; }
  .nav-links {
    display: none;
    position: absolute;
    top: 56px;
    left: 12px;
    right: 12px;
    background: #fff;
    border: 1px solid rgba(12, 58, 109, 0.12);
    border-radius: 12px;
    padding: 12px;
    box-shadow: 0 10px 30px rgba(12, 58, 109, 0.12);
    flex-direction: column;
    gap: 12px;
    z-index: 40;
  }
  body.nav-open .nav-links { display: flex; }
  .nav-cta {
    order: 3;
    width: 100%;
    justify-content: center;
  }
  .hero {
    grid-template-columns: 1fr;
    padding-top: 72px;
  }
}
@media (max-width: 720px) {
  body { padding-top: calc(96px + env(safe-area-inset-top, 0px)); }
  .nav {
    padding: 8px 12px;
  }
  .logo img { height: 32px; }
  .logo span { font-size: 18px; }
  .nav-links { top: 56px; }
  .hero-visual {
    aspect-ratio: 4 / 5;
    min-height: 260px;
  }
  .hero-copy { background: rgba(255,255,255,0.96); }
}

@media (min-width: 961px) {
  body { padding-top: 0; }
  header { position: static; top: auto; }
}
