:root {
  --navy-deep: #0f172a;
  --navy: #1e293b;
  --gold: #c75c0a;
  --gold-hover: #a54a08;
  --gold-light: #f59e0b;
  --bg: #f8fafc;
  --text: #0f172a;
  --muted: #64748b;
  --border: #e2e8f0;
  --white: #ffffff;
  --radius: 12px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  scroll-margin-top: 84px;
}

/* Focus visibility */
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: 3px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
}

.btn-gold:hover {
  background: var(--gold-hover);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--navy-deep);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--navy-deep);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--white);
  font-weight: 800;
  font-size: 1.15rem;
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--gold);
  color: var(--white);
  font-weight: 800;
  font-size: 1.05rem;
}

.header-inner nav .btn-gold {
  padding: 10px 20px;
  font-size: 0.9rem;
}

/* Hero */
.hero {
  background: linear-gradient(160deg, var(--navy-deep), var(--navy));
  color: var(--white);
  padding: 88px 0 72px;
  text-align: center;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  margin: 0 0 20px;
  line-height: 1.15;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: #cbd5e1;
  max-width: 640px;
  margin: 0 auto 36px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.hero-note {
  color: #94a3b8;
  font-size: 0.9rem;
  margin: 0;
}

/* Generic section spacing */
.section {
  padding: 80px 0;
}

.section-light {
  background: var(--bg);
}

.section-navy {
  background: var(--navy-deep);
  color: var(--white);
}

h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.25rem);
  font-weight: 800;
  text-align: center;
  margin: 0 0 48px;
}

.section-navy h2 {
  color: var(--white);
}

/* Problem cards */
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 720px) {
  .card-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}

.card h3 {
  margin: 0 0 12px;
  font-size: 1.1rem;
  color: var(--navy-deep);
}

.card p {
  margin: 0;
  color: var(--muted);
}

/* Jak dziala steps */
.step-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 720px) {
  .step-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.step {
  text-align: center;
}

.step-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  color: var(--gold);
}

.step h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
}

.step p {
  margin: 0;
  color: var(--muted);
}

/* Tarcza reklamacyjna */
.shield-text {
  max-width: 680px;
  margin: 0 auto 32px;
  text-align: center;
  color: #cbd5e1;
  font-size: 1.05rem;
}

.chip-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.chip {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  padding: 10px 20px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--white);
}

/* White label */
.white-label-text {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  color: var(--muted);
  font-size: 1.05rem;
}

/* Pricing */
.price-card {
  max-width: 420px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
  box-shadow: 0 20px 40px -24px rgba(15, 23, 42, 0.25);
}

.price-amount {
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy-deep);
  margin: 0 0 24px;
}

.price-list {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  text-align: left;
}

.price-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}

.price-list li:last-child {
  border-bottom: none;
}

.price-note {
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 20px;
}

/* FAQ */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-list details {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 24px;
  margin-bottom: 14px;
}

.faq-list summary {
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::before {
  content: "+";
  color: var(--gold);
  font-weight: 800;
  margin-right: 12px;
}

.faq-list details[open] summary::before {
  content: "\2212";
}

.faq-list p {
  margin: 14px 0 0;
  color: var(--muted);
}

/* Footer */
.site-footer {
  background: var(--navy-deep);
  color: #94a3b8;
  padding: 48px 0 32px;
  text-align: center;
}

.site-footer .logo {
  justify-content: center;
  margin-bottom: 16px;
}

.site-footer p {
  margin: 0 0 10px;
}

.site-footer a {
  color: var(--gold-light);
  text-decoration: underline;
}

.footer-links {
  margin-top: 20px;
  font-size: 0.85rem;
}
