/* ============================================================
   NOVATE ELEKTRYK – Landing Page
   Design: Dark Tech Futurism (spójny z energy.novate.pl)
   Kolory: Granat #0d1117 | Żółty elektryczny #eab308 | Biały #ffffff
   Fonty: Barlow Condensed (nagłówki), Barlow (treść)
   ============================================================ */

/* ── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Barlow', sans-serif;
  background-color: #0d1117;
  color: #e2e8f0;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── TYPOGRAPHY ───────────────────────────────────────────── */
.display-font, h1, h2, h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1;
}
h4, h5, h6 { font-family: 'Barlow', sans-serif; font-weight: 600; }

/* ── CSS VARIABLES ────────────────────────────────────────── */
:root {
  --accent: #eab308;
  --accent-dark: #ca9a06;
  --accent-light: #fbbf24;
  --bg-dark: #0d1117;
  --bg-card: #161b22;
  --bg-card-hover: #1c2330;
  --border: rgba(255,255,255,0.08);
  --text-muted: #8b949e;
  --text-light: #e2e8f0;
  --white: #ffffff;
  --radius: 4px;
  --radius-lg: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-accent: 0 0 30px rgba(234,179,8,0.2);
  --transition: 0.25s ease;
  --max-width: 1200px;
}

/* ── UTILITIES ────────────────────────────────────────────── */
.container { width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.text-accent { color: var(--accent); }
.line-accent { color: var(--accent); }

.section-label {
  font-family: 'Barlow', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.section-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--accent);
  flex-shrink: 0;
}
.section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white);
  margin-bottom: 16px;
}
.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 48px;
}

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: #0d1117;
  border-color: var(--accent);
}
.btn-primary:hover { background: var(--accent-light); border-color: var(--accent-light); transform: translateY(-1px); box-shadow: var(--shadow-accent); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-lg { padding: 16px 32px; font-size: 1rem; }

/* ── NAVBAR ───────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(13,17,23,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: all var(--transition);
}
#navbar.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.5); }
.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 72px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
  flex-shrink: 0;
}
.nav-logo span { color: var(--accent); }
.nav-logo-img { width: 32px; height: 32px; object-fit: contain; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-cta { display: flex; align-items: center; gap: 16px; margin-left: auto; }
.nav-phone {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-light);
  transition: color var(--transition);
}
.nav-phone:hover { color: var(--accent); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
}
.nav-mobile {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: #161b22;
  border-bottom: 1px solid var(--border);
  padding: 24px;
  flex-direction: column;
  gap: 16px;
  z-index: 999;
}
.nav-mobile a, .nav-mobile button {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-light);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile.open { display: flex; }

@media (max-width: 900px) {
  .nav-links, .nav-phone, .nav-cta .btn { display: none; }
  .nav-toggle { display: flex; }
}

/* ── HERO ─────────────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 50%, rgba(234,179,8,0.08) 0%, transparent 70%),
    linear-gradient(180deg, #0d1117 0%, #0d1117 100%);
  z-index: 0;
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(234,179,8,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(234,179,8,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content { position: relative; z-index: 1; max-width: 700px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(234,179,8,0.1);
  border: 1px solid rgba(234,179,8,0.3);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 2px;
  margin-bottom: 28px;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.3)} }
.hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  color: var(--white);
  margin-bottom: 24px;
}
.hero-desc {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero-desc strong { color: var(--text-light); }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.hero-stat-num {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.hero-stat-label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

/* ── SECTIONS ─────────────────────────────────────────────── */
section { padding: 100px 0; }
#hero { padding: 0; }

/* ── SERVICES ─────────────────────────────────────────────── */
#uslugi { background: #0a0e14; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
}
.service-card:hover {
  border-color: rgba(234,179,8,0.3);
  background: var(--bg-card-hover);
  transform: translateY(-2px);
}
.service-card--featured {
  grid-column: span 2;
  background: linear-gradient(135deg, #161b22 0%, #1c2330 100%);
  border-color: rgba(234,179,8,0.3);
}
@media (max-width: 700px) { .service-card--featured { grid-column: span 1; } }
.service-icon {
  width: 48px; height: 48px;
  background: rgba(234,179,8,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-icon svg { width: 24px; height: 24px; stroke: var(--accent); }
.service-card h3 {
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 12px;
  text-transform: none;
  letter-spacing: 0;
}
.service-card p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 16px; }
.service-list { margin: 16px 0 24px; }
.service-list li {
  color: var(--text-muted);
  font-size: 0.9rem;
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-list li::before { content: '⚡'; font-size: 0.75rem; }
.service-link {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
  transition: gap var(--transition);
}
.service-link:hover { text-decoration: underline; }

/* ── WHY ──────────────────────────────────────────────────── */
#dlaczego { background: var(--bg-dark); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 900px) { .why-grid { grid-template-columns: 1fr; gap: 48px; } }
.why-points { display: flex; flex-direction: column; gap: 24px; margin-top: 32px; }
.why-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.why-point-icon {
  width: 28px; height: 28px;
  background: var(--accent);
  color: #0d1117;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.why-point strong { display: block; color: var(--white); margin-bottom: 4px; }
.why-point p { color: var(--text-muted); font-size: 0.9rem; margin: 0; }
.why-visual { display: flex; flex-direction: column; gap: 24px; }
.why-cert-card {
  background: var(--bg-card);
  border: 1px solid rgba(234,179,8,0.3);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.cert-badge {
  width: 64px; height: 64px;
  background: var(--accent);
  color: #0d1117;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.cert-text strong { display: block; color: var(--white); font-size: 1rem; }
.cert-text span { color: var(--text-muted); font-size: 0.85rem; }
.why-numbers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.why-num {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  text-align: center;
}
.num-big {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.num-label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 6px;
}

/* ── KALKULATOR ───────────────────────────────────────────── */
#kalkulator { background: #0a0e14; }
.calc-wrapper { max-width: 800px; margin: 0 auto; }
.calc-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 40px;
}
.calc-progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 80px;
}
.calc-progress-step span {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.calc-progress-step.active span { color: var(--accent); }
.progress-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--border);
  border: 2px solid var(--text-muted);
  transition: all var(--transition);
}
.calc-progress-step.active .progress-dot {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 12px rgba(234,179,8,0.5);
}
.calc-progress-step.done .progress-dot {
  background: var(--accent);
  border-color: var(--accent);
}
.calc-progress-line {
  flex: 1;
  height: 2px;
  background: var(--border);
  margin-bottom: 22px;
  max-width: 80px;
}
.calc-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
}
@media (max-width: 600px) { .calc-card { padding: 24px; } }
.calc-step { display: none; }
.calc-step.active { display: block; }
.calc-step-title {
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 32px;
  text-transform: none;
  letter-spacing: 0;
}
.option-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
  margin-bottom: 24px;
}
.option-grid--4 { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); }
.option-grid--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 600px) {
  .option-grid--3 { grid-template-columns: repeat(2, 1fr); }
}
.option-card {
  background: #0d1117;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}
.option-card:hover { border-color: rgba(234,179,8,0.4); }
.option-card.selected {
  border-color: var(--accent);
  background: rgba(234,179,8,0.08);
}
.option-icon { font-size: 1.8rem; margin-bottom: 8px; }
.option-label { font-size: 0.9rem; font-weight: 600; color: var(--text-light); }
.option-sub { font-size: 0.75rem; color: var(--text-muted); margin-top: 4px; }
.calc-form-group { margin-bottom: 28px; }
.calc-form-group > label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.calc-toggles { display: flex; flex-direction: column; gap: 12px; }
.calc-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: 0.95rem;
  color: var(--text-light);
}
.calc-toggle input { display: none; }
.toggle-track {
  width: 40px; height: 22px;
  background: var(--border);
  border-radius: 11px;
  position: relative;
  transition: background var(--transition);
  flex-shrink: 0;
}
.toggle-track::after {
  content: '';
  position: absolute;
  top: 3px; left: 3px;
  width: 16px; height: 16px;
  background: var(--text-muted);
  border-radius: 50%;
  transition: all var(--transition);
}
.calc-toggle input:checked + .toggle-track { background: var(--accent); }
.calc-toggle input:checked + .toggle-track::after { left: 21px; background: #0d1117; }
.calc-nav {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
/* Wynik kalkulatora */
.calc-result { text-align: center; }
.calc-result-header { margin-bottom: 24px; }
.calc-result-icon { font-size: 3rem; margin-bottom: 12px; }
.calc-result-header h3 {
  font-size: 1.5rem;
  color: var(--white);
  text-transform: none;
  letter-spacing: 0;
}
.calc-result-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin: 24px 0;
  flex-wrap: wrap;
}
.price-from { font-size: 1rem; color: var(--text-muted); }
.price-value {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.price-sep { font-size: 1.5rem; color: var(--text-muted); }
.price-currency { font-size: 1rem; color: var(--text-muted); }
.calc-result-note { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 24px; }
.calc-result-details {
  background: #0d1117;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  margin: 24px 0;
  text-align: left;
}
.calc-result-details p {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
}
.calc-result-details p:last-child { border-bottom: none; }
.calc-result-details p span { color: var(--accent); font-weight: 600; }
.calc-result-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 32px; }

/* ── REALIZACJE ───────────────────────────────────────────── */
#realizacje { background: var(--bg-dark); }
.real-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.real-filter {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 8px 18px;
  border-radius: 2px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}
.real-filter:hover, .real-filter.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #0d1117;
}
.real-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.real-loading { grid-column: 1/-1; text-align: center; padding: 60px; color: var(--text-muted); }
.spinner {
  width: 40px; height: 40px;
  border: 3px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 16px;
}
@keyframes spin { to { transform: rotate(360deg); } }
.real-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: all var(--transition);
}
.real-card:hover {
  border-color: rgba(234,179,8,0.3);
  transform: translateY(-3px);
  box-shadow: var(--shadow-accent);
}
.real-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.real-card-img-placeholder {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, #161b22, #1c2330);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.real-card-body { padding: 20px; }
.real-card-meta {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.real-card-type, .real-card-city {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  border-radius: 2px;
}
.real-card-type { background: rgba(234,179,8,0.15); color: var(--accent); }
.real-card-city { background: var(--border); color: var(--text-muted); }
.real-card-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 8px;
}
.real-card-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.real-photo-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 8px;
}

/* Modal */
.real-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.real-modal-overlay.open { display: flex; }
.real-modal {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}
.real-modal-close {
  position: absolute;
  top: 16px; right: 16px;
  background: rgba(0,0,0,0.5);
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all var(--transition);
}
.real-modal-close svg { width: 18px; height: 18px; stroke: var(--white); }
.real-modal-close:hover { background: var(--accent); border-color: var(--accent); }
.real-modal-close:hover svg { stroke: #0d1117; }

/* Slider */
.real-modal-slider {
  position: relative;
  width: 100%;
  height: 360px;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background: #0d1117;
}
.slider-track {
  display: flex;
  height: 100%;
  transition: transform 0.4s ease;
}
.slider-track img {
  min-width: 100%;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
}
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  width: 40px; height: 40px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all var(--transition);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 5;
}
.slider-btn:hover { background: var(--accent); color: #0d1117; border-color: var(--accent); }
.slider-prev { left: 12px; }
.slider-next { right: 12px; }
.slider-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}
.slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all var(--transition);
}
.slider-dot.active { background: var(--accent); transform: scale(1.3); }
.slider-counter {
  position: absolute;
  top: 12px;
  right: 52px;
  background: rgba(0,0,0,0.6);
  color: var(--white);
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 12px;
  display: none;
}
.real-modal-body { padding: 32px; }
.real-modal-meta { display: flex; gap: 8px; margin-bottom: 12px; flex-wrap: wrap; }
.real-modal-type, .real-modal-city {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 2px;
}
.real-modal-type { background: rgba(234,179,8,0.15); color: var(--accent); }
.real-modal-city { background: var(--border); color: var(--text-muted); }
.real-modal-title {
  font-size: 1.8rem;
  color: var(--white);
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 16px;
}
.real-modal-desc { color: var(--text-muted); margin-bottom: 20px; line-height: 1.7; }
.real-modal-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }
.real-modal-tag {
  background: var(--bg-dark);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.8rem;
  padding: 4px 10px;
  border-radius: 2px;
}

/* ── PROCES ───────────────────────────────────────────────── */
#proces { background: #0a0e14; }
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  flex-wrap: wrap;
}
.process-step {
  flex: 1;
  min-width: 200px;
  padding: 32px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}
.process-step:hover { border-color: rgba(234,179,8,0.3); }
.process-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: rgba(234,179,8,0.2);
  line-height: 1;
  margin-bottom: 16px;
}
.process-step h3 {
  font-size: 1.1rem;
  color: var(--white);
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 12px;
}
.process-step p { font-size: 0.9rem; color: var(--text-muted); }
.process-arrow {
  display: flex;
  align-items: center;
  padding: 0 8px;
  color: var(--accent);
  font-size: 1.5rem;
  margin-top: 40px;
  flex-shrink: 0;
}
@media (max-width: 800px) {
  .process-steps { flex-direction: column; }
  .process-arrow { transform: rotate(90deg); margin: 0 auto; }
}

/* ── OPINIE ───────────────────────────────────────────────── */
#opinie { background: var(--bg-dark); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.testimonial-stars { color: var(--accent); font-size: 1.1rem; margin-bottom: 16px; }
.testimonial-text { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 24px; line-height: 1.7; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 40px; height: 40px;
  background: rgba(234,179,8,0.15);
  border: 1px solid rgba(234,179,8,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
}
.testimonial-author strong { display: block; color: var(--white); font-size: 0.9rem; }
.testimonial-author span { font-size: 0.8rem; color: var(--text-muted); }

/* ── CONTACT ──────────────────────────────────────────────── */
#contact { background: #0a0e14; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 48px; } }
.contact-info .section-desc { margin-bottom: 32px; }
.contact-details { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: var(--text-light);
}
.contact-detail svg { width: 20px; height: 20px; stroke: var(--accent); flex-shrink: 0; }
.contact-detail a:hover { color: var(--accent); }
.contact-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.contact-badge {
  background: rgba(234,179,8,0.1);
  border: 1px solid rgba(234,179,8,0.3);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 2px;
}
.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.form-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 4px;
}
.form-subtitle { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.form-control {
  width: 100%;
  background: #0d1117;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-light);
  font-family: 'Barlow', sans-serif;
  font-size: 0.95rem;
  padding: 12px 16px;
  transition: border-color var(--transition);
  outline: none;
}
.form-control:focus { border-color: var(--accent); }
.form-control::placeholder { color: var(--text-muted); }
select.form-control { cursor: pointer; }
textarea.form-control { resize: vertical; min-height: 100px; }
.form-consent { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 20px; line-height: 1.5; }
.form-submit { width: 100%; justify-content: center; padding: 16px; font-size: 1rem; }
.form-success {
  text-align: center;
  padding: 40px 20px;
}
.success-icon {
  width: 64px; height: 64px;
  background: rgba(234,179,8,0.15);
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--accent);
  margin: 0 auto 20px;
}
.form-success h3 { color: var(--white); margin-bottom: 8px; font-size: 1.5rem; text-transform: none; }
.form-success p { color: var(--text-muted); }

/* ── FOOTER ───────────────────────────────────────────────── */
footer {
  background: #070a0e;
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-top { grid-template-columns: 1fr; } }
.footer-brand p { color: var(--text-muted); font-size: 0.9rem; margin: 16px 0 24px; max-width: 280px; }
.footer-social { display: flex; gap: 12px; }
.social-link {
  width: 36px; height: 36px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.social-link svg { width: 16px; height: 16px; stroke: var(--text-muted); }
.social-link:hover { border-color: var(--accent); }
.social-link:hover svg { stroke: var(--accent); }
.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col li a, .footer-col li span {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-col li a:hover { color: var(--accent); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.85rem; color: var(--text-muted); }
.footer-bottom a { color: var(--text-muted); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--accent); }

/* ── FLOATING CTA ─────────────────────────────────────────── */
.floating-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 900;
}
.floating-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-light);
  padding: 10px 16px;
  border-radius: 24px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all var(--transition);
  box-shadow: var(--shadow);
}
.floating-phone svg { width: 16px; height: 16px; stroke: var(--accent); }
.floating-phone:hover { border-color: var(--accent); color: var(--accent); }
.floating-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  border: none;
  color: #0d1117;
  padding: 12px 20px;
  border-radius: 24px;
  font-family: 'Barlow', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: var(--shadow-accent);
}
.floating-btn:hover { background: var(--accent-light); transform: translateY(-1px); }

/* ── ADMIN PANEL ──────────────────────────────────────────── */
.admin-body { font-family: 'Barlow', sans-serif; background: #0d1117; color: #e2e8f0; min-height: 100vh; }
.admin-nav {
  background: #161b22;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.admin-nav-brand {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
}
.admin-nav-brand span { color: #eab308; }
.admin-container { max-width: 1100px; margin: 0 auto; padding: 40px 24px; }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th, .admin-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.9rem;
}
.admin-table th { color: #8b949e; font-weight: 600; text-transform: uppercase; font-size: 0.75rem; letter-spacing: 0.1em; }
.admin-table td { color: #e2e8f0; }
.admin-table tr:hover td { background: #161b22; }
.admin-btn {
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}
.admin-btn-edit { background: rgba(234,179,8,0.15); color: #eab308; border: 1px solid rgba(234,179,8,0.3); }
.admin-btn-edit:hover { background: #eab308; color: #0d1117; }
.admin-btn-delete { background: rgba(239,68,68,0.15); color: #ef4444; border: 1px solid rgba(239,68,68,0.3); }
.admin-btn-delete:hover { background: #ef4444; color: #fff; }
.admin-btn-primary { background: #eab308; color: #0d1117; }
.admin-btn-primary:hover { background: #fbbf24; }
.admin-form-group { margin-bottom: 20px; }
.admin-form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: #8b949e; margin-bottom: 6px; }
.admin-input {
  width: 100%;
  background: #0d1117;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  color: #e2e8f0;
  font-family: 'Barlow', sans-serif;
  font-size: 0.95rem;
  padding: 10px 14px;
  outline: none;
  transition: border-color 0.2s;
}
.admin-input:focus { border-color: #eab308; }
.admin-input::placeholder { color: #4a5568; }
.admin-modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.8);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.admin-modal-overlay.open { display: flex; }
.admin-modal {
  background: #161b22;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  max-width: 700px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px;
}
.admin-modal h2 { font-size: 1.4rem; color: #fff; margin-bottom: 28px; text-transform: none; }
.photo-slots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 8px; }
.photo-slot {
  border: 2px dashed rgba(255,255,255,0.15);
  border-radius: 6px;
  padding: 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.photo-slot:hover { border-color: #eab308; }
.photo-slot.has-photo { border-style: solid; border-color: rgba(234,179,8,0.4); }
.photo-slot-num {
  width: 24px; height: 24px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700;
  flex-shrink: 0;
}
.photo-slot-num.required { background: rgba(234,179,8,0.2); color: #eab308; border: 1px solid rgba(234,179,8,0.4); }
.photo-slot-num.optional { background: rgba(255,255,255,0.05); color: #8b949e; border: 1px solid rgba(255,255,255,0.1); }
.photo-slot-preview { width: 100%; height: 80px; object-fit: cover; border-radius: 4px; display: none; }
.photo-slot-label { font-size: 0.75rem; color: #8b949e; }
.photo-slot input[type="file"] { display: none; }
.pos-bar {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-top: 8px;
}
.pos-bar.visible { display: flex; }
.pos-grid {
  display: grid;
  grid-template-columns: repeat(3, 24px);
  gap: 2px;
}
.pos-btn {
  width: 24px; height: 24px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 3px;
  cursor: pointer;
  font-size: 0.6rem;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.15s;
  color: #8b949e;
}
.pos-btn:hover { background: rgba(234,179,8,0.2); border-color: #eab308; color: #eab308; }
.pos-btn.active { background: rgba(234,179,8,0.3); border-color: #eab308; color: #eab308; }
.pos-label { font-size: 0.65rem; color: #8b949e; }
