/* ============================================================
   taniestrony.net — Complete Stylesheet
   Bold & Direct Design System
   ============================================================ */

/* 1. CSS Custom Properties
   ============================================================ */
:root {
  --bg: #fafaf9;
  --bg-white: #ffffff;
  --text: #1c1917;
  --text-secondary: #78716c;
  --text-muted: #6b6b6b;
  --border: #e7e5e4;
  --accent-start: #f97316;
  --accent-end: #ef4444;
  --accent: #f97316;
  --success: #16a34a;
  --dark: #1c1917;
  --radius: 4px;
  --font: "Inter", system-ui, -apple-system, sans-serif;
}

/* 2. Reset + Base
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
}

body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  overflow-x: clip;
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

/* 3. Container
   ============================================================ */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* 4. Typography helpers
   ============================================================ */
.gradient-text {
  background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding-right: 4px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

/* 5. Buttons
   ============================================================ */
.btn-primary,
.btn-secondary,
.btn-accent {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all 0.2s ease;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}

.btn-primary {
  background-color: var(--dark);
  color: #ffffff;
  border: 2px solid var(--dark);
}

.btn-primary:hover {
  background-color: #292524;
  border-color: #292524;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(28, 25, 23, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text);
  border: 2px solid var(--border);
}

.btn-secondary:hover {
  border-color: var(--text);
  transform: translateY(-1px);
}

.btn-accent {
  background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
  color: #ffffff;
  border: 2px solid transparent;
}

.btn-accent:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(249, 115, 22, 0.4);
}

.btn-lg {
  padding: 18px 36px;
  font-size: 15px;
}

/* 6. Navigation
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 0;
}

.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--text);
  text-decoration: none;
}

.logo span {
  font-weight: 400;
  color: var(--accent);
}

.nav-links {
  display: none;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-email {
  display: none;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  align-items: center;
  gap: 6px;
}

.nav-cta {
  display: none;
  padding: 10px 20px;
  font-size: 13px;
}

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  cursor: pointer;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* 7. Mobile Menu
   ============================================================ */
.mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 320px;
  background-color: var(--bg-white);
  border-left: 1px solid var(--border);
  z-index: 99;
  padding: 32px 24px;
  flex-direction: column;
  gap: 8px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}

.mobile-menu a {
  display: block;
  padding: 14px 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}

.mobile-menu a:hover {
  color: var(--accent);
}

.mobile-menu .btn-accent {
  margin-top: 24px;
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 16px;
}

.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(28, 25, 23, 0.5);
  z-index: 98;
}

.mobile-overlay.open {
  display: block;
}

/* 8. Hero Section
   ============================================================ */
.hero {
  padding: 60px 0 80px;
  background-color: var(--bg);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}
.hero-grid > * {
  min-width: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background-color: #fef3c7;
  color: #92400e;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius);
  margin-bottom: 20px;
  border: 1px solid #fde68a;
}

.hero h1 {
  font-size: clamp(30px, 8vw, 40px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -1px;
  color: var(--text);
  margin-bottom: 16px;
  overflow-wrap: break-word;
}

.hero-price {
  font-size: 52px;
  font-weight: 900;
  letter-spacing: -2px;
  display: block;
  margin-bottom: 4px;
  padding-right: 4px;
}

.hero-subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.6;
  max-width: 480px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.trust-indicators {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
}

.trust-item .check {
  width: 18px;
  height: 18px;
  background-color: var(--success);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  flex-shrink: 0;
}

/* Domain checker card */
.domain-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: 0 2px 12px rgba(28, 25, 23, 0.06);
}

.domain-card-header {
  margin-bottom: 24px;
}

.domain-card-header h3 {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 4px;
}

.domain-card-header p {
  font-size: 14px;
  color: var(--text-secondary);
}

.domain-input-group {
  display: flex;
  gap: 0;
  margin-bottom: 16px;
}

.domain-input-group input {
  flex: 1;
  padding: 14px 16px;
  border: 2px solid var(--border);
  border-right: none;
  border-radius: var(--radius) 0 0 var(--radius);
  font-size: 15px;
  background-color: var(--bg);
  outline: none;
  transition: border-color 0.2s;
}

.domain-input-group input:focus {
  border-color: var(--accent);
}

.domain-input-group button {
  padding: 14px 20px;
  background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  border: none;
  border-radius: 0 var(--radius) var(--radius) 0;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s;
}

.domain-input-group button:hover {
  opacity: 0.9;
}

#domain-result {
  min-height: 24px;
  font-size: 14px;
  font-weight: 500;
}

#domain-result.available {
  color: var(--success);
}

#domain-result.taken {
  color: var(--accent-end);
}

.domain-available {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  background-color: #ecfdf5;
  border: 1px solid #a7f3d0;
  border-radius: var(--radius);
}

.domain-available .domain-note {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 400;
}

.domain-available .domain-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border-radius: var(--radius);
  text-decoration: none;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    opacity 0.15s ease;
}

.domain-available .domain-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.35);
  opacity: 0.95;
}

.domain-available .domain-cta:focus-visible {
  outline: 3px solid var(--text);
  outline-offset: 2px;
}

.domain-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.domain-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
}

.domain-feature .check {
  width: 20px;
  height: 20px;
  background-color: #dcfce7;
  color: var(--success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
  font-weight: 700;
}

/* 9. Social Proof Bar
   ============================================================ */
.social-proof {
  background-color: var(--bg-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
}

.social-proof .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
}

.proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 120px;
}

.proof-number {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -1px;
  color: var(--text);
  line-height: 1;
  margin-bottom: 4px;
}

.proof-number.gradient-text {
  background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.proof-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* 10. Value Stack Section
   ============================================================ */
.value-stack {
  padding: 80px 0;
  background-color: var(--bg);
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -1.5px;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 12px;
}

.section-header p {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.6;
}

.value-items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
  margin-bottom: 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.value-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background-color: var(--bg-white);
  gap: 16px;
}

.value-item:hover {
  background-color: var(--bg);
}

.value-item-name {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
}

.value-item-name .check {
  width: 20px;
  height: 20px;
  background-color: #dcfce7;
  color: var(--success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
  font-weight: 700;
}

.value-item-price {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-secondary);
  text-decoration: line-through;
  white-space: nowrap;
}

.value-total {
  background-color: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
}

.value-total-old {
  font-size: 20px;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-bottom: 8px;
}

.value-total-price {
  font-size: 64px;
  font-weight: 900;
  letter-spacing: -3px;
  line-height: 1;
  margin-bottom: 12px;
}

.value-savings-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background-color: #dcfce7;
  color: var(--success);
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--radius);
  border: 1px solid #bbf7d0;
}

/* 11. Process Steps
   ============================================================ */
.process {
  padding: 80px 0;
  background-color: var(--bg-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.step-number {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background-color: var(--dark);
  color: #ffffff;
  font-size: 18px;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: -0.5px;
}

.step-content h3 {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.3px;
  margin-bottom: 6px;
  color: var(--text);
}

.step-content p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* 12. Portfolio
   ============================================================ */
.portfolio {
  padding: 80px 0;
  background-color: var(--bg);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.portfolio-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition:
    box-shadow 0.2s,
    transform 0.2s;
}

.portfolio-card:hover {
  box-shadow: 0 8px 24px rgba(28, 25, 23, 0.1);
  transform: translateY(-2px);
}

.portfolio-thumb {
  height: 200px;
  background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  position: relative;
  overflow: hidden;
}

.portfolio-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio-thumb-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.portfolio-thumb-placeholder span {
  font-size: 32px;
}

.portfolio-info {
  padding: 20px;
}

.portfolio-info h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text);
}

.portfolio-info p {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.portfolio-tag {
  display: inline-block;
  padding: 4px 10px;
  background-color: var(--bg);
  color: var(--text-secondary);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

/* 13. Industry Grid
   ============================================================ */
.industries {
  padding: 80px 0;
  background-color: var(--bg-white);
  border-top: 1px solid var(--border);
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (min-width: 640px) {
  .industry-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Sekcja podstron na landing page — mini-cards z auto-ikonami */
.branza-podstrony-sub {
  margin: 12px 0 24px;
  color: var(--text-secondary, #57534e);
  font-size: 15px;
  line-height: 1.6;
}
.branza-podstrony-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 20px;
}
@media (min-width: 640px) {
  .branza-podstrony-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 960px) {
  .branza-podstrony-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
  }
}

.branza-podstrona-card {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 16px 14px;
  background: var(--bg-white, #fff);
  border: 1px solid var(--border, #e7e5e4);
  border-radius: 10px;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
  position: relative;
  overflow: hidden;
}
.branza-podstrona-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--accent-start, #f97316),
    var(--accent-end, #ef4444)
  );
  opacity: 0;
  transition: opacity 0.2s ease;
}
.branza-podstrona-card:hover {
  border-color: var(--accent, #f97316);
  box-shadow: 0 4px 16px rgba(249, 115, 22, 0.1);
  transform: translateY(-2px);
}
.branza-podstrona-card:hover::before {
  opacity: 1;
}

.branza-podstrona-card .podstrona-number {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: var(--bg-alt, #f7f7fa);
  color: var(--text-muted, #78716c);
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: -0.02em;
}
.branza-podstrona-card .podstrona-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.branza-podstrona-card .podstrona-icon {
  font-size: 28px;
  line-height: 1;
}
.branza-podstrona-card .podstrona-text {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  color: var(--text, #1c1917);
  font-weight: 500;
}

.industry-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 12px;
  background-color: var(--bg-white, #fff);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.industry-item:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
}

.industry-emoji {
  font-size: 28px;
  margin-bottom: 8px;
  line-height: 1;
}

.industry-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}

/* Preview variant — used on examples section with screenshot thumbnails */
.industry-item--preview {
  padding: 0;
  overflow: hidden;
}

.industry-item--preview .industry-item__thumb {
  aspect-ratio: 16 / 10;
  position: relative;
  overflow: hidden;
  background-color: var(--bg-alt, #f7f7fa);
  width: 100%;
}

/* Examples section — większe karty ze screenshotami (3x4 dla 12 itemów) */
.examples-section .industry-grid {
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 640px) {
  .examples-section .industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 960px) {
  .examples-section .industry-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1200px) {
  .examples-section .industry-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.industry-item--preview .industry-item__thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.35s ease;
}

.industry-item--preview:hover .industry-item__thumb img {
  transform: scale(1.04);
}

.industry-item--preview .industry-item__footer {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border-top: 1px solid var(--border);
  width: 100%;
}

.industry-item--preview .industry-emoji {
  font-size: 20px;
  margin-bottom: 0;
  flex-shrink: 0;
}

.industry-item--preview .industry-name {
  font-size: 13px;
  line-height: 1.25;
}

/* 14. Comparison Table
   ============================================================ */
.comparison {
  padding: 80px 0;
  background-color: var(--bg);
}

.comparison-table {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.comparison-cell {
  padding: 14px 16px;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
  display: flex;
  align-items: center;
}

.comparison-cell:last-child,
.comparison-cell:nth-child(4n) {
  border-right: none;
}

.comparison-header {
  background-color: var(--dark);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  justify-content: center;
  text-align: center;
}

.comparison-header:first-child {
  justify-content: flex-start;
  text-align: left;
}

.comparison-header.highlighted {
  background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
  color: #ffffff;
}

.comparison-cell.highlight {
  background-color: #fff7ed;
}

.comparison-cell.feature-label {
  font-weight: 500;
  color: var(--text);
}

.comparison-cell.center {
  justify-content: center;
  text-align: center;
}

.check-yes {
  color: var(--success);
  font-size: 18px;
  font-weight: 900;
}

.check-no {
  color: var(--accent-end);
  font-size: 18px;
  font-weight: 900;
}

/* 15. Guarantee Section
   ============================================================ */
.guarantee {
  padding: 64px 0;
  background-color: var(--dark);
  color: #ffffff;
}

.guarantee .container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  text-align: center;
}

.guarantee-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  flex-shrink: 0;
}

.guarantee-text h2 {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 12px;
  color: #ffffff;
}

.guarantee-text p {
  font-size: 16px;
  color: #d6d3d1;
  line-height: 1.7;
  max-width: 600px;
}

.guarantee-text strong {
  color: var(--accent);
}

/* 16. FAQ Section
   ============================================================ */
.faq {
  padding: 80px 0;
  background-color: var(--bg);
}

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

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-item details {
  padding: 0;
}

.faq-item details summary {
  padding: 20px 0;
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
}

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

.faq-item details summary::after {
  content: "+";
  font-size: 22px;
  font-weight: 400;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-item details[open] summary::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 0 20px 0;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.faq-answer p + p {
  margin-top: 12px;
}

/* 17. Final CTA Section
   ============================================================ */
.final-cta {
  padding: 100px 0;
  background-color: var(--dark);
  text-align: center;
}

.final-cta h2 {
  font-size: 40px;
  font-weight: 900;
  letter-spacing: -2px;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 16px;
}

.final-cta p {
  font-size: 17px;
  color: #d6d3d1;
  margin-bottom: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.final-cta .btn-accent {
  font-size: 16px;
  padding: 18px 40px;
}

.final-cta-subtext {
  margin-top: 16px;
  font-size: 13px;
  color: #a8a29e;
}

/* 18. Footer
   ============================================================ */
footer {
  background-color: var(--dark);
  border-top: 1px solid #292524;
  padding: 24px 0;
}

footer .container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
}

footer span,
footer a {
  font-size: 13px;
  color: #78716c;
}

footer a:hover {
  color: #a8a29e;
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

/* 19. Cookie Banner — small, non-intrusive
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  z-index: 200;
  background-color: var(--dark);
  color: white;
  border-radius: 8px;
  padding: 12px 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
  max-width: 380px;
  font-size: 13px;
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cookie-content {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-content p {
  font-size: 13px;
  color: #a8a29e;
  line-height: 1.4;
  margin: 0;
}

.cookie-content p a {
  color: var(--accent);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}

.nobr {
  white-space: nowrap;
}

.cookie-btn-accept {
  background: var(--accent);
  color: white;
  border: none;
  padding: 12px 20px;
  min-height: 44px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font);
}

.cookie-btn-accept:hover {
  opacity: 0.9;
}

.cookie-btn-reject {
  background: transparent;
  color: #78716c;
  border: 1px solid #44403c;
  padding: 12px 20px;
  min-height: 44px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  font-family: var(--font);
}

.cookie-btn-reject:hover {
  color: white;
  border-color: #78716c;
}

/* 20. Form Styles
   ============================================================ */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: 15px;
  font-family: var(--font);
  color: var(--text);
  background-color: var(--bg);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  outline: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  appearance: none;
  -webkit-appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.12);
  background-color: var(--bg-white);
}

.form-input.error,
.form-select.error,
.form-textarea.error {
  border-color: var(--accent-end);
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-input.success,
.form-select.success,
.form-textarea.success {
  border-color: var(--success);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
  line-height: 1.6;
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2378716c' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-error {
  font-size: 12px;
  color: var(--accent-end);
  font-weight: 500;
}

.form-hint {
  font-size: 12px;
  color: var(--text-muted);
}

/* 21. Animations
   ============================================================ */
.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.animate-pulse {
  animation: pulse 1.5s ease-in-out infinite;
}

/* 22. Utility Classes
   ============================================================ */
.text-center {
  text-align: center;
}
.text-accent {
  color: var(--accent);
}
.text-success {
  color: var(--success);
}
.text-muted {
  color: var(--text-muted);
}
.font-bold {
  font-weight: 700;
}
.font-black {
  font-weight: 900;
}
.mt-8 {
  margin-top: 8px;
}
.mt-16 {
  margin-top: 16px;
}
.mt-24 {
  margin-top: 24px;
}
.mb-8 {
  margin-bottom: 8px;
}
.mb-16 {
  margin-bottom: 16px;
}
.mb-24 {
  margin-bottom: 24px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ============================================================
   RESPONSIVE — Tablet: min-width 768px
   ============================================================ */
@media (min-width: 768px) {
  /* Nav */
  .nav-cta {
    display: inline-flex;
  }
  .nav-email {
    display: none;
  }

  /* Hero */
  .hero {
    padding: 80px 0 100px;
  }
  .hero h1 {
    font-size: 52px;
    letter-spacing: -2.5px;
  }
  .hero-price {
    font-size: 64px;
  }

  /* Social proof */
  .social-proof .container {
    gap: 48px;
  }

  /* Value stack */
  .value-items {
    grid-template-columns: 1fr 1fr;
  }

  /* Steps */
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  .step {
    flex-direction: column;
    align-items: flex-start;
  }

  /* Portfolio */
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Industry */
  .industry-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  /* Guarantee */
  .guarantee .container {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
    gap: 32px;
  }
  .guarantee-icon {
    margin-top: 4px;
  }

  /* Footer */
  footer .container {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  /* Cookie — no overrides needed, already inline */
}

/* ============================================================
   RESPONSIVE — Desktop: min-width 1024px
   ============================================================ */
@media (min-width: 1024px) {
  /* Nav */
  .nav-links {
    display: flex;
  }
  .hamburger {
    display: none;
  }

  /* Hero */
  .hero {
    padding: 80px 0 120px;
  }
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
  }
  .hero h1 {
    font-size: 56px;
    letter-spacing: -3px;
  }
  .hero-price {
    font-size: 72px;
  }

  /* Section headers */
  .section-header h2 {
    font-size: 44px;
  }

  /* Value stack */
  .value-items {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .steps-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .step {
    flex-direction: column;
    align-items: flex-start;
  }

  /* Portfolio */
  .portfolio-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Industry */
  .industry-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  /* Final CTA */
  .final-cta h2 {
    font-size: 52px;
  }

  /* Comparison table scroll override */
  .comparison-wrapper {
    overflow: visible;
  }
}

/* Comparison table mobile scroll */
.comparison-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.comparison-table {
  min-width: 560px;
}

/* ============================================================
   23. Order Page
   ============================================================ */
.order-page {
  padding: 48px 0 80px;
}

.order-page h1 {
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -1.5px;
  margin-bottom: 4px;
}

.order-subtitle {
  color: var(--text-secondary);
  font-size: 15px;
  margin-bottom: 32px;
}

.order-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 768px) {
  .order-grid {
    grid-template-columns: 1fr 360px;
    gap: 48px;
    align-items: start;
  }
}

/* Order form fields */
.order-form .form-group {
  margin-bottom: 20px;
}

.order-form label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.order-form .form-optional {
  font-weight: 400;
  color: var(--text-muted);
}

.order-form input[type="text"],
.order-form input[type="tel"],
.order-form input[type="email"],
.order-form select,
.order-form textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  font-family: var(--font);
  color: var(--text);
  background-color: var(--bg-white);
  border: 2px solid var(--border);
  border-radius: 6px;
  outline: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}

.order-form input:focus,
.order-form select:focus,
.order-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.order-form select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2378716c' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
  cursor: pointer;
}

.order-form textarea {
  min-height: 100px;
  resize: vertical;
  line-height: 1.6;
}

/* Checkbox */
.form-checkbox label {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  cursor: pointer;
  font-weight: 400;
}

.form-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  min-width: 20px;
  margin-top: 2px;
  accent-color: var(--accent);
  cursor: pointer;
}

.form-checkbox span {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-secondary);
}

.form-checkbox a {
  color: var(--accent);
  text-decoration: underline;
}

.form-checkbox a:hover {
  color: var(--accent-end);
}

/* Submit button */
.order-submit {
  width: 100%;
  padding: 16px 28px;
  font-size: 15px;
  margin-top: 8px;
}

/* Error messages */
.order-form .form-error {
  font-size: 12px;
  color: var(--accent-end);
  font-weight: 500;
  min-height: 0;
  margin-top: 4px;
}

/* Security text */
.form-security {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 12px;
}

/* Form message */
.form-message {
  padding: 12px 16px;
  border-radius: 6px;
  font-size: 14px;
  margin-top: 16px;
}

.form-message-error {
  background-color: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

/* Order sidebar */
.order-sidebar {
  background: var(--bg-white);
  border: 2px solid var(--border);
  border-radius: 8px;
  padding: 28px;
  position: sticky;
  top: 88px;
}

.order-sidebar h3 {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.order-includes {
  list-style: none;
  margin-bottom: 24px;
}

.order-includes li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-size: 14px;
  color: var(--text-secondary);
}

.order-includes .check {
  color: var(--success);
  font-weight: 700;
  font-size: 16px;
}

.order-price {
  font-size: 40px;
  font-weight: 900;
  letter-spacing: -2px;
  background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}

.order-renewal {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.order-guarantee {
  background: #f0fdf4;
  color: #166534;
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
}

/* Success state */
.order-success {
  text-align: center;
  padding: 60px 20px;
}

.order-success .success-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--success), #22c55e);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  margin: 0 auto 20px;
}

.order-success h2 {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 8px;
}

.order-success p {
  color: var(--text-secondary);
  margin-bottom: 24px;
}

/* ============================================================
   24. Legal Pages (Regulamin, Polityka, Cookies)
   ============================================================ */
.legal-page {
  padding: 48px 0 80px;
}

.legal-page .container {
  max-width: 780px;
}

.legal-page h1 {
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -1.5px;
  margin-bottom: 8px;
}

.legal-updated {
  color: var(--text-muted);
  font-size: 13px;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.legal-page h2 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-top: 36px;
  margin-bottom: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.legal-page h2:first-of-type {
  border-top: none;
  padding-top: 0;
}

.legal-page h3 {
  font-size: 17px;
  font-weight: 700;
  margin-top: 24px;
  margin-bottom: 8px;
}

.legal-page p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.legal-page ul,
.legal-page ol {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-page ol {
  list-style: decimal;
}

.legal-page li {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.legal-page ul ul,
.legal-page ol ul {
  margin-top: 8px;
  margin-bottom: 8px;
}

.legal-page a {
  color: var(--accent);
  text-decoration: underline;
}

.legal-page a:hover {
  color: var(--accent-end);
}

.legal-page strong {
  color: var(--text);
  font-weight: 600;
}

/* Cookie policy table */
.legal-page table {
  width: 100%;
  border-collapse: collapse;
  margin: 12px 0 20px;
  font-size: 14px;
}

.legal-page th {
  background: var(--dark);
  color: white;
  padding: 10px 14px;
  text-align: left;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.legal-page td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
}

.legal-page tr:last-child td {
  border-bottom: none;
}

/* ============================================================
   25. Contact Page
   ============================================================ */
.contact-page {
  padding: 48px 0 80px;
}

.contact-page h1 {
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -1.5px;
  margin-bottom: 8px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 32px;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
}

.contact-card {
  background: var(--bg-white);
  border: 2px solid var(--border);
  border-radius: 8px;
  padding: 28px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: border-color 0.2s;
}

.contact-card:hover {
  border-color: var(--accent);
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.contact-card h3 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 4px;
}

.contact-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.contact-card a {
  color: var(--accent);
  font-weight: 600;
}

.contact-info-section {
  margin-top: 48px;
  padding: 32px;
  background: var(--dark);
  color: white;
  border-radius: 8px;
}

.contact-info-section h2 {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.contact-info-section p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
}

/* Section CTA */
.section-cta {
  text-align: center;
  margin-top: 40px;
}

/* Testimonials */
.testimonials {
  padding: 80px 0;
  background: var(--bg);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 40px;
}

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

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

.testimonial-stars {
  color: #f59e0b;
  font-size: 18px;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 16px;
  font-style: italic;
}

.testimonial-author strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
}

.testimonial-author span {
  font-size: 13px;
  color: var(--text-muted);
}

/* 26. Branza Page
   ============================================================ */
.branza-page {
  padding: 48px 0 80px;
}

.breadcrumb {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 32px;
}
.breadcrumb a {
  color: var(--accent);
}

.branza-hero {
  margin-bottom: 64px;
  padding-top: 24px;
}
.branza-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
@media (min-width: 960px) {
  .branza-hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
  }
}
.branza-hero-content {
  max-width: 620px;
  text-align: left;
}
.branza-hero-content .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 20px;
}
.branza-hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 28px 0 20px;
}
.branza-hero-trust {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  margin-top: 8px;
}
.branza-hero-trust .trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 500;
}
.branza-hero-trust .trust-item .check {
  color: var(--accent);
  font-weight: 900;
}

/* Right visual — demo preview lub price card */
.branza-hero-visual {
  width: 100%;
}
.branza-hero-preview {
  display: block;
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg-alt, #f7f7fa);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.14);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.branza-hero-preview:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.2);
}
.branza-hero-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.branza-hero-preview-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 20px 22px;
  background: linear-gradient(
    to top,
    rgba(15, 23, 42, 0.82),
    rgba(15, 23, 42, 0)
  );
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.1px;
}
.branza-hero-price-card {
  padding: 48px 32px;
  text-align: center;
  background: linear-gradient(135deg, var(--bg-alt, #f7f7fa), #fff);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 6px 24px rgba(15, 23, 42, 0.06);
}
.branza-hero-price-card .branza-hero-price-label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 10px;
  font-weight: 700;
}
.branza-hero-price-card .branza-price {
  display: block;
  font-size: 64px;
  line-height: 1;
  margin-bottom: 10px;
}
.branza-hero-price-card .branza-price-sub {
  display: block;
  font-size: 14px;
  color: var(--text-secondary);
}

.branza-hero h1 {
  font-size: 40px;
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1.15;
  margin-bottom: 16px;
}
.branza-hero h1 .accent {
  background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.branza-intro {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}
.branza-hero-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 24px;
}
.branza-price {
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -2px;
}
.branza-price-sub {
  font-size: 14px;
  color: var(--text-muted);
}

/* Features grid */
.branza-features-section {
  margin-bottom: 64px;
}
.branza-features-section h2 {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 32px;
}
.branza-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.branza-features .branza-feature-card {
  flex: 1 1 100%;
  min-width: 0;
}
@media (min-width: 768px) {
  .branza-features .branza-feature-card {
    flex: 1 1 calc(50% - 10px);
    max-width: calc(50% - 10px);
  }
  .branza-hero h1 {
    font-size: 48px;
  }
}
@media (min-width: 1024px) {
  .branza-features .branza-feature-card {
    flex: 1 1 calc(33.333% - 14px);
    max-width: calc(33.333% - 14px);
  }
}

.branza-feature-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.branza-feature-card .feature-icon {
  font-size: 28px;
  margin-bottom: 12px;
}
.branza-feature-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}
.branza-feature-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Podstrony list */
.branza-podstrony {
  margin-bottom: 64px;
}
.branza-podstrony h2 {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 24px;
}
.branza-podstrony-list {
  list-style: none;
}
.branza-podstrony-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
}
.branza-podstrony-list .check {
  color: var(--success);
  font-weight: 700;
}

/* Why section */
.branza-why {
  margin-bottom: 64px;
}
.branza-why h2 {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 32px;
}
.branza-why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) {
  .branza-why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.branza-why-item {
  text-align: center;
  padding: 32px 24px;
  background: var(--bg-white, #fff);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}
.branza-why-item:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 16px rgba(249, 115, 22, 0.08);
  transform: translateY(-2px);
}
.branza-why-item .why-icon {
  font-size: 40px;
  margin-bottom: 16px;
  display: inline-block;
  width: 72px;
  height: 72px;
  line-height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-soft, #fff7ed), #fee2e2);
}
.branza-why-item h3 {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.2px;
}
.branza-why-item p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Branza FAQ */
.branza-faq {
  margin-bottom: 64px;
  padding: 40px 32px;
  background: var(--bg-white, #fff);
  border: 1px solid var(--border);
  border-radius: 14px;
}
@media (max-width: 640px) {
  .branza-faq {
    padding: 28px 20px;
  }
}
.branza-faq h2 {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.8px;
  margin-bottom: 24px;
}
.branza-faq .faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: none;
  margin: 0;
  width: 100%;
}
.branza-faq .faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s ease;
  background: var(--bg-white, #fff);
  width: 100%;
}
.branza-faq .faq-item:hover {
  border-color: #d6d3d1;
}
.branza-faq .faq-item:has(details[open]) {
  border-color: var(--accent);
  box-shadow: 0 4px 16px rgba(249, 115, 22, 0.08);
}
.branza-faq details {
  padding: 0;
  border-bottom: none;
}
.branza-faq details summary {
  padding: 22px 26px;
  cursor: pointer;
  font-weight: 700;
  font-size: 17px;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  list-style: none;
  transition: background-color 0.15s;
  line-height: 1.35;
  letter-spacing: -0.2px;
}
.branza-faq details summary::-webkit-details-marker,
.branza-faq details summary::after {
  display: none;
  content: none;
}
.branza-faq details summary::before {
  content: "+";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent-soft, #fff7ed);
  color: var(--accent);
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
  transition:
    transform 0.2s,
    background 0.2s;
}
.branza-faq details[open] summary::before {
  content: "−";
  background: var(--accent);
  color: white;
}
.branza-faq details summary:hover {
  background: var(--bg-alt, #f7f7fa);
}
.branza-faq .faq-answer {
  padding: 0 26px 22px 80px;
  color: var(--text-secondary, #57534e);
  font-size: 15px;
  line-height: 1.7;
}
@media (max-width: 640px) {
  .branza-faq details summary {
    padding: 18px 18px;
    gap: 14px;
    font-size: 15px;
  }
  .branza-faq details summary::before {
    width: 32px;
    height: 32px;
    font-size: 22px;
  }
  .branza-faq .faq-answer {
    padding: 0 18px 18px 64px;
    font-size: 14px;
  }
}
.branza-faq .faq-answer p {
  margin: 0;
}

/* Branza → Demo reciprocal link */
.branza-demo-link {
  text-align: center;
  padding: 48px 24px;
  margin: 0 0 48px;
  background: var(--bg-white, #fff);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.branza-demo-link h2 {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}
.branza-demo-link p {
  color: var(--text-secondary, #6b6b6b);
  margin-bottom: 24px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* Branza CTA */
.branza-cta {
  background: var(--dark);
  color: white;
  padding: 60px 0;
  text-align: center;
  border-radius: var(--radius);
  margin-bottom: 48px;
}
.branza-cta h2 {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 8px;
  color: white;
}
.branza-cta p {
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* Related */
.branza-related {
  margin-bottom: 48px;
  padding: 32px 28px;
  background: var(--bg-alt, #f7f7fa);
  border-radius: 14px;
}
@media (max-width: 640px) {
  .branza-related {
    padding: 24px 20px;
  }
}
.branza-related-heading {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.3px;
}
.branza-related-links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
@media (min-width: 640px) {
  .branza-related-links {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  }
}
.branza-related-links a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: var(--bg-white, #fff);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  transition: all 0.2s ease;
}
.branza-related-links a:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateX(2px);
  box-shadow: 0 3px 10px rgba(249, 115, 22, 0.08);
}

/* Cennik page */
.cennik-page {
  padding: 48px 0 80px;
}
.cennik-page h1 {
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -1.5px;
  margin-bottom: 8px;
}
.cennik-main {
  background: var(--bg-white);
  border: 2px solid var(--border);
  border-radius: 8px;
  padding: 40px;
  margin: 32px 0;
  text-align: center;
}
.cennik-price {
  font-size: 56px;
  font-weight: 900;
  letter-spacing: -3px;
  background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}
.cennik-includes {
  list-style: none;
  max-width: 500px;
  margin: 24px auto;
  text-align: left;
}
.cennik-includes li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 15px;
}
.cennik-extras {
  margin: 40px 0;
}
.cennik-extras h2 {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 24px;
}
.cennik-extras-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 600px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .cennik-extras-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.cennik-extra-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.cennik-extra-item .extra-name {
  font-weight: 600;
  font-size: 14px;
}
.cennik-extra-item .extra-price {
  font-weight: 900;
  color: var(--accent);
}
.cennik-extra-item .extra-name small {
  display: block;
  margin-top: 4px;
  font-weight: 400;
  font-size: 12px;
  color: #78716c;
}
.cennik-extras-note {
  margin-top: 16px;
  font-size: 13px;
  color: #78716c;
  font-style: italic;
}
.cennik-vat-info {
  margin: 32px 0 16px;
  padding: 16px 20px;
  background: #fafaf9;
  border: 1px solid #e7e5e4;
  border-radius: 8px;
  font-size: 14px;
  color: #57534e;
  line-height: 1.55;
}
.cennik-vat-info p {
  margin: 0 0 8px;
}
.cennik-vat-info ul {
  margin: 0;
  padding-left: 20px;
}
.cennik-vat-info li {
  margin-bottom: 4px;
}

/* 30. Accessibility
   ============================================================ */
a:focus-visible,
button:focus-visible,
[role="button"]:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
details > summary:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
  border-radius: 2px;
}

/* ============================================================
   Skip link — a11y
   ============================================================ */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--accent, #f97316);
  color: #fff;
  padding: 8px 16px;
  z-index: 9999;
  text-decoration: none;
  font-weight: 600;
  border-bottom-right-radius: var(--radius, 4px);
}
.skip-link:focus {
  top: 0;
  outline: 3px solid var(--text, #1c1917);
  outline-offset: -3px;
}

.footer-seller {
  text-align: center;
  font-size: 11px;
  color: var(--text-muted);
  padding: 16px 20px 8px;
  border-top: 1px solid var(--border);
  line-height: 1.6;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
