/* ============================================================
     HERO
     ============================================================ */
.hero {
  padding: 76px 0 88px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(34px, 4.6vw, 48px);
  margin-bottom: 22px;
  color: var(--text-special-heading);
  font-weight: 100;
  max-width: 480px;
}
.hero h1 .hl {
  font-weight: 600;
}
.hero p.lead {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 32px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

/* --- karta "dashboard" — element sygnaturowy hero --- */
.logo-strip {
  margin-top: 64px;
  padding-top: 36px;
  border-top: 1px solid var(--line-soft);
}
.logo-strip .cap {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .report-card {
    transform: none;
    max-width: 460px;
  }
}

/* ============================================================
     SEKCJA — WSPÓLNY UKŁAD NAGŁÓWKA
     ============================================================ */
.section-head h2 {
  font-size: clamp(26px, 3vw, 36px);
  margin-bottom: 14px;
}
.band {
  padding: 96px 0;
}
/* --- problem / bolączki --- */
@media (max-width: 980px) {
  .pain-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .pain-grid {
    grid-template-columns: 1fr;
  }
}

/* --- zakres / co dostajesz --- */
.scope-wrap {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: start;
}
.scope-item {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line-soft);
}
.scope-note {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 28px;
  position: sticky;
  top: 100px;
}
@media (max-width: 900px) {
  .scope-wrap {
    grid-template-columns: 1fr;
  }
  .scope-note {
    position: static;
  }
}

/* --- proces --- */
@media (min-width: 900px) {
  .process-step:not(:last-child)::after {
    display: block;
  }
}
@media (max-width: 900px) {
  .process-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 24px;
  }
}
@media (max-width: 560px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
}

/* --- cennik --- */
.pricing-step {
  margin-bottom: 32px;
}
/* Ta strona (w odróżnieniu od pozostałych) nie zeruje marginesu na
   ostatnim .pricing-step — nadpisuje globalną regułę z components.css
   żeby zachować oryginalny odstęp na dole sekcji cennika. */
.pricing-step:last-of-type {
  margin-bottom: 32px;
}

.step-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

/* Karta Hero (Krok 1: Wdrożenie) */
.price-card.price-card-hero {
  display: grid;
  grid-template-columns: 0.85fr 2fr;
  gap: 64px;
  align-items: start;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: 32px;
}

.price-card.price-card-hero .price {
  font-size: 1.5rem;
}

.price-card-hero .hero-main {
  display: flex;
  flex-direction: column;
}

.price-card-hero .price-feat {
  margin-bottom: 0;
}

/* Grid Abonamentów (Krok 2) */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

.price-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: 30px;
  display: flex;
  flex-direction: column;
}

.price-card.rec {
  border-color: var(--accent);
  background: linear-gradient(180deg, var(--accent-dim), var(--surface) 40%);
  position: relative;
}

.price-card .badge {
  position: absolute;
  top: -13px;
  left: 24px;
  background: var(--accent);
  color: var(--accent-ink);
  font-family: var(--font-mono);
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.price-card h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

.price-card .desc {
  font-size: 13.5px;
  color: var(--text-muted);
  margin-bottom: 22px;
  min-height: 34px;
}

.price-card .price {
  font-family: var(--font-mono);
  font-size: 34px;
  color: var(--text);
  margin-bottom: 2px;
}

.price-card .price span {
  font-size: 14px;
  color: var(--text-muted); /* Podniesiony kontrast */
  font-weight: 400;
}

.price-card .period {
  font-size: 12.5px;
  color: var(--text-muted); /* Podniesiony kontrast */
  margin-bottom: 24px;
}

.price-card .period strong {
  color: var(--text);
}

.price-feat {
  display: grid;
  gap: 11px;
  margin-bottom: 26px;
  flex: 1;
}

/* Responsywność */
@media (max-width: 900px) {
  .price-card-hero {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .price-grid {
    grid-template-columns: 1fr;
  }
}

/* --- mockup przeglądarki/telefonu — element sygnaturowy tej podstrony --- */
.browser-mockup-wrap {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 28px;
  max-width: 720px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.browser-mockup {
  flex: 1 1 420px;
  max-width: 480px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.18);
}
.browser-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line-soft);
  background: var(--surface-2);
}
.browser-url {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--text-faint);
  background: var(--ink);
  border-radius: 20px;
  padding: 4px 12px;
  flex: 1;
  text-align: center;
}
.browser-body {
  padding: 20px;
}
.bb-hero {
  margin-bottom: 16px;
}
.bb-line {
  height: 8px;
  border-radius: 4px;
  background: var(--surface-3);
  margin-bottom: 9px;
  width: 100%;
}
.bb-line.title {
  height: 14px;
  width: 65%;
  margin-bottom: 12px;
}
.bb-line.short {
  width: 40%;
}
.bb-btn {
  height: 26px;
  width: 100px;
  border-radius: 14px;
  background: var(--accent-dim);
  border: 1px solid var(--accent);
  margin-top: 14px;
}
.bb-cards {
  display: flex;
  gap: 10px;
}
.bb-card {
  flex: 1;
  height: 56px;
  border-radius: 8px;
  background: var(--surface-2);
  border: 1px solid var(--line-soft);
}
.phone-mockup {
  flex: 0 0 140px;
  max-width: 140px;
  border-radius: 20px;
  transform: rotate(2deg);
}
.phone-mockup .bb-line {
  margin-bottom: 7px;
}
@media (max-width: 640px) {
  .phone-mockup {
    display: none;
  }
}

/* --- realizacje --- */
.work-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  overflow: hidden;
  background: var(--surface);
}
.work-thumb {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--surface-2), var(--ink));
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-faint);
}
.work-body h4 {
  font-size: 16.5px;
  margin-bottom: 8px;
}
.work-body .metric {
  font-size: 14px;
  color: var(--status);
  font-weight: 600;
}
@media (max-width: 900px) {
  .work-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .work-grid {
    grid-template-columns: 1fr;
  }
}

/* --- opinie --- */
.quote-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 26px;
}
.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
  color: var(--accent);
}
.stars svg {
  width: 15px;
  height: 15px;
}
.quote-card p.q {
  font-size: 14.5px;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.quote-who {
  display: flex;
  align-items: center;
  gap: 10px;
}
.quote-who .name {
  font-size: 13.5px;
  font-weight: 600;
}
@media (max-width: 900px) {
  .quote-grid {
    grid-template-columns: 1fr;
  }
}

/* --- FAQ --- */
/* --- CTA końcowe / kontakt --- */
.cta-band {
  background: var(--surface);
  border-top: 1px solid var(--line-soft);
}
.cta-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
}
.cta-copy h2 {
  font-size: clamp(26px, 3.4vw, 38px);
  margin-bottom: 18px;
}
.cta-copy p {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 28px;
  max-width: 440px;
}
.contact-alt {
  display: grid;
  gap: 14px;
  margin-top: 32px;
}
.contact-alt a {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14.5px;
  color: var(--text-muted);
}
.contact-alt a svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
}

.form-card {
  background: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: 30px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
  padding: 12px 14px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px; /* iOS Safari: <16px na inputach wywoluje auto-zoom przy fokusie */
}
@media (max-width: 900px) {
  .cta-grid {
    grid-template-columns: 1fr;
  }
  .field-row {
    grid-template-columns: 1fr;
  }
}

/* --- mobilny pasek CTA (tylko małe ekrany) --- */
