/* Podstawowy reset i typografia */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #06070a;
  color: #f5f5f5;
  line-height: 1.6;
}

/* Skip link dla dostępności */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--accent);
  color: #fff;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  z-index: 1000;
  font-weight: 600;
  border-radius: 0 0 var(--radius-md) 0;
}

.skip-link:focus {
  top: 0;
  outline: 3px solid #fff;
  outline-offset: 2px;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Kolory i drobne zmienne (prosty system) */
:root {
  --bg-main: #06070a;
  --bg-elevated: #10131a;
  --bg-elevated-soft: #151923;
  --accent: #ff7a1a;
  --accent-soft: rgba(255, 122, 26, 0.15);
  --text-main: #f5f5f5;
  --text-muted: #a4a9b8;
  --border-subtle: #222735;
  --danger: #ff4b4b;
  --success: #42c96b;
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.65);
  --radius-lg: 16px;
  --radius-md: 10px;
  --radius-pill: 999px;
}

/* Górny pasek nawigacji */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(18px);
  background: linear-gradient(
    to bottom,
    rgba(6, 7, 10, 0.96),
    rgba(6, 7, 10, 0.9),
    rgba(6, 7, 10, 0.85)
  );
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.5rem;
  gap: 1rem;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-img {
  height: 52px;
  width: auto;
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.65));
}

.logo-text {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  font-size: 0.92rem;
}

.nav-links a {
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  color: var(--text-muted);
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
  transform: translateY(-1px);
}

.nav-links a.active {
  background: var(--accent-soft);
  color: #ffffff;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.nav-contact strong {
  font-size: 0.95rem;
  color: #ffffff;
}

.btn-primary,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.2rem;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease,
    transform 0.12s ease, box-shadow 0.12s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #ff9b42);
  color: #050608;
  box-shadow: 0 10px 28px rgba(255, 122, 26, 0.36);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(255, 122, 26, 0.45);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  background: rgba(9, 11, 16, 0.8);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.06);
}

.nav-phone-label {
  display: none;
}

/* Mobilne menu */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #ffffff;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px 0;
  background: #ffffff;
  border-radius: 999px;
}

/* Sekcja hero (strona główna) */
.hero {
  padding: 3.5rem 0 3rem;
  background: radial-gradient(circle at top left, #1b212f 0, #06070a 55%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.5fr);
  gap: 2.5rem;
  align-items: center;
}

.hero-image-wrap {
  border-radius: var(--radius-lg);
  border: 2px solid rgba(255, 122, 26, 0.4);
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 30px rgba(255, 122, 26, 0.2);
  background: radial-gradient(circle at top, #1e2433, #05060a);
  position: relative;
  padding: 3px;
  overflow: visible;
}

/* Cienka linia gradientowa wokół ramki (opcja 7) */
.hero-image-wrap::before {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: var(--radius-lg);
  background: linear-gradient(
    135deg,
    rgba(255, 122, 26, 1) 0%,
    rgba(255, 122, 26, 0.6) 25%,
    rgba(255, 122, 26, 0.8) 50%,
    rgba(255, 122, 26, 0.5) 75%,
    rgba(255, 122, 26, 1) 100%
  );
  z-index: -1;
  animation: gradientGlow 4s ease-in-out infinite;
  filter: blur(1.5px);
  opacity: 0.7;
}

@keyframes gradientGlow {
  0%, 100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}

/* Dekoracyjne kropki/punkty wokół ramki (opcja 6) */
.hero-image-wrap::after {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  border-radius: var(--radius-lg);
  background-image: 
    radial-gradient(circle, rgba(255, 122, 26, 0.7) 2.5px, transparent 2.5px),
    radial-gradient(circle, rgba(255, 122, 26, 0.5) 2px, transparent 2px),
    radial-gradient(circle, rgba(255, 122, 26, 0.4) 1.5px, transparent 1.5px);
  background-size: 
    50px 50px,
    40px 40px,
    30px 30px;
  background-position:
    0 0,
    25px 25px,
    15px 15px;
  z-index: -2;
  pointer-events: none;
  opacity: 0.7;
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: calc(var(--radius-lg) - 2px);
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.2rem 0.8rem;
  border-radius: 999px;
  background: rgba(8, 10, 16, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.07);
  margin-bottom: 1.1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.hero-kicker-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(255, 122, 26, 0.8);
}

.hero h1 {
  font-size: clamp(1.8rem, 2.5vw, 2.2rem);
  margin-bottom: 1rem;
  line-height: 1.3;
  font-weight: 600;
}

.hero h1 span {
  color: var(--accent);
}

.hero-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  max-width: 32rem;
  line-height: 1.7;
}

.hero-subtitle ul {
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}

.hero-subtitle li {
  margin-bottom: 0.4rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 1.5rem;
}

.hero-note {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.hero-note strong {
  color: #ffffff;
}

.hero-card {
  background: linear-gradient(145deg, #10131a, #090b11);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-soft);
}

.hero-card-title {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}

.hero-card-main {
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.badge {
  font-size: 0.75rem;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  background: rgba(9, 11, 16, 0.9);
}

.badge-accent {
  border-color: rgba(255, 122, 26, 0.65);
  background: rgba(255, 122, 26, 0.16);
  color: #ffd8b3;
}

/* Sekcje główne */
section {
  padding: 3rem 0;
}

.section-heading {
  margin-bottom: 2rem;
}

.section-kicker {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--accent);
  margin-bottom: 0.4rem;
}

.section-title {
  font-size: 1.7rem;
  margin-bottom: 0.4rem;
}

.section-lead {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 38rem;
}

/* Kafle usług / kart */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--bg-elevated);
  border-radius: var(--radius-lg);
  padding: 1rem 1.2rem;
  border: 1px solid var(--border-subtle);
  border-top: 2px solid rgba(255, 122, 26, 0.2);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.55);
  transition: transform 0.16s ease, box-shadow 0.16s ease,
    border-color 0.16s ease, background 0.16s ease, border-top-color 0.16s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 122, 26, 0.3), transparent);
  opacity: 0;
  transition: opacity 0.16s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.7);
  border-color: rgba(255, 122, 26, 0.4);
  border-top-color: rgba(255, 122, 26, 0.8);
  background: #111623;
}

.card:hover::before {
  opacity: 1;
}

.card-icon {
  width: 32px;
  height: 32px;
  border-radius: 12px;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.2rem;
  margin-bottom: 0.9rem;
}

.card-title {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  line-height: 1.3;
  color: #fff;
  font-weight: 600;
}

.card-title a {
  color: inherit;
  text-decoration: none;
}

.card-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  line-height: 1.5;
  flex-grow: 1;
}

.card-read-more {
  margin-top: auto;
  padding-top: 0.75rem;
}

.card-read-more .btn-outline {
  font-size: 0.8rem;
  padding: 0.45rem 1rem;
  background: linear-gradient(135deg, var(--accent), #ff9b42);
  color: #050608;
  border: none;
  box-shadow: 0 4px 12px rgba(255, 122, 26, 0.3);
  font-weight: 500;
}

.card-read-more .btn-outline:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(255, 122, 26, 0.4);
  background: linear-gradient(135deg, #ff8a0a, #ffa852);
}

.card-tag {
  display: inline-block;
  font-size: 0.75rem;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
}

/* Layout treści wewnętrznych stron */
.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 2.3fr) minmax(0, 1.6fr);
  gap: 2rem;
}

.content-main {
  background: var(--bg-elevated);
  border-radius: var(--radius-lg);
  padding: 1.7rem 1.8rem;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
}

.content-aside {
  background: var(--bg-elevated-soft);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.8rem;
  border: 1px solid var(--border-subtle);
  border-left: 3px solid var(--accent);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  position: relative;
}

.content-aside::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), rgba(255, 122, 26, 0.3));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.content-aside h2 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 122, 26, 0.2);
  position: relative;
}

.content-aside h2::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 60px;
  height: 2px;
  background: var(--accent);
}

.content-main h2 {
  font-size: 1.3rem;
  margin-bottom: 0.7rem;
  color: #fff;
  font-weight: 600;
  padding-left: 0.75rem;
  border-left: 3px solid var(--accent);
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.content-main h2[id] {
  /* żeby po kliknięciu w skrót nagłówek nie chował się pod górnym paskiem */
  scroll-margin-top: 90px;
}

.content-main h3 {
  font-size: 1.05rem;
  margin-top: 1.3rem;
  margin-bottom: 0.4rem;
  color: #fff;
  font-weight: 600;
  padding-left: 0.5rem;
  border-left: 2px solid rgba(255, 122, 26, 0.5);
  padding-top: 0.2rem;
  padding-bottom: 0.2rem;
}

.content-main p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
}

.content-image {
  margin: 1.1rem 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.content-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content-main ul {
  margin: 0.3rem 0 0.9rem 1.2rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.content-main li {
  margin-bottom: 0.3rem;
}

.badge-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.badge-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.45rem 0.75rem;
  border-radius: var(--radius-md);
  background: rgba(9, 11, 16, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.85rem;
}

.badge-row-label {
  color: var(--text-muted);
}

.badge-row-value {
  color: #ffffff;
  font-weight: 500;
}

.contact-highlight {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  padding: 1rem;
  background: rgba(255, 122, 26, 0.08);
  border-radius: var(--radius-md);
  border-left: 2px solid rgba(255, 122, 26, 0.4);
  margin-top: 1.1rem;
}

.contact-highlight strong {
  color: #ffffff;
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
}

/* Tabela kontakt / godziny */
.info-list {
  list-style: none;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.info-list li {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: padding-left 0.2s ease;
  position: relative;
}

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

.info-list li::before {
  content: '';
  position: absolute;
  left: -1.8rem;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 0;
  background: var(--accent);
  border-radius: 2px;
  transition: height 0.2s ease;
}

.info-list li:hover {
  padding-left: 0.5rem;
}

.info-list li:hover::before {
  height: 60%;
}

.info-label {
  color: var(--text-muted);
  font-weight: 500;
  flex-shrink: 0;
  min-width: 120px;
}

.info-value {
  color: #ffffff;
  text-align: right;
  font-weight: 400;
}

.info-value a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s ease;
  position: relative;
}

.info-value a::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.2s ease;
}

.info-value a:hover {
  color: var(--accent);
}

.info-value a:hover::after {
  width: 100%;
}

.info-highlight {
  color: var(--accent);
}

/* Formularz kontaktowy */
.form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.5rem;
  margin-top: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-group-full {
  grid-column: 1 / -1;
}

label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

input,
textarea {
  background: #05070d;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.55rem 0.9rem;
  color: #ffffff;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease,
    background 0.18s ease;
}

textarea {
  border-radius: 12px;
  min-height: 120px;
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: rgba(255, 122, 26, 0.8);
  box-shadow: 0 0 0 1px rgba(255, 122, 26, 0.4);
  background: #070914;
}

.form-footer {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 0.5rem;
}

.form-note {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Komunikaty błędów i sukcesu w formularzu */
.form-error {
  display: none;
  font-size: 0.75rem;
  color: var(--danger);
  margin-top: 0.25rem;
}

.form-error.show {
  display: block;
}

input:invalid:not(:placeholder-shown),
textarea:invalid:not(:placeholder-shown) {
  border-color: var(--danger);
}

input:valid:not(:placeholder-shown),
textarea:valid:not(:placeholder-shown) {
  border-color: var(--success);
}

.form-message {
  display: none;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.form-message.show {
  display: block;
}

.form-message.success {
  background: rgba(66, 201, 107, 0.15);
  border: 1px solid var(--success);
  color: var(--success);
}

.form-message.error {
  background: rgba(255, 75, 75, 0.15);
  border: 1px solid var(--danger);
  color: var(--danger);
}

#submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.checkbox-row input[type="checkbox"] {
  margin-top: 0.1rem;
  width: 14px;
  height: 14px;
  border-radius: 4px;
}

/* Promocje */
.promo-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.promo-card {
  background: rgba(9, 11, 16, 0.96);
  border-radius: var(--radius-lg);
  padding: 1rem 1.1rem;
  border: 1px solid var(--border-subtle);
  font-size: 0.88rem;
  color: var(--text-muted);
}

.promo-card-title {
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: #ffffff;
}

.promo-ribbon {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.18rem 0.7rem;
  border-radius: 999px;
  background: rgba(17, 105, 24, 0.16);
  border: 1px solid rgba(66, 201, 107, 0.6);
  color: #a4f0bc;
  font-size: 0.72rem;
}

/* Porady – lista artykułów */
.article-list {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
  margin-top: 0.5rem;
}

.article {
  padding-bottom: 1.1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.article:last-child {
  border-bottom: none;
}

.article-title {
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
}

.article-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.article p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Sekcja opinii klientów */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.review-card {
  background: var(--bg-elevated);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.review-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.75);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.review-stars {
  color: #ffc107;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
}

.review-source {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.review-text {
  flex-grow: 1;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-main);
  margin-bottom: 1rem;
  font-style: italic;
}

.review-author {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.review-author strong {
  color: var(--text-main);
  font-size: 0.9rem;
}

.review-date {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Stopka */
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding: 1.4rem 0 1.8rem;
  background: #05060a;
  margin-top: 2rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--text-muted);
}

.footer-links a:hover {
  color: #ffffff;
}

/* Alternatywna sekcja z innym tłem */
.section-alt {
  background: var(--bg-elevated);
  padding: 3.5rem 0;
}

/* Siatka z zaletami / cechami */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.8rem;
  margin-top: 2rem;
}

.feature-item {
  padding: 1.5rem;
  background: var(--bg-elevated-soft);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
}

.feature-item h3 {
  font-size: 1.15rem;
  margin-bottom: 0.7rem;
  color: var(--accent);
}

.feature-item p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Responsywność */
@media (max-width: 960px) {
  .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .content-layout {
    grid-template-columns: minmax(0, 1fr);
  }
  
  .reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .promo-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .nav-bar {
    padding-inline: 1rem;
  }

  .nav-links {
    position: fixed;
    inset-inline: 0;
    top: 56px;
    background: rgba(5, 6, 10, 0.98);
    flex-direction: column;
    padding: 0.9rem 1.3rem 1.1rem;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-toggle {
    display: block;
  }

  .nav-right {
    display: none;
  }

  .hero {
    padding-top: 2.4rem;
  }

  .card-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .promo-list {
    grid-template-columns: minmax(0, 1fr);
  }

  .features-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .form {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 520px) {
  .hero h1 {
    font-size: 1.6rem;
  }

  .hero-card {
    padding: 1.2rem 1.25rem;
  }
}


