/* ============================================================
   DlaLokalu — wspólny arkusz stylów
   Wersja: 2.0  |  Edytuj tutaj, działa na wszystkich podstronach
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* ------ DESIGN TOKENS ------ */
:root {
  --bg:           #faf9f7;
  --bg2:          #f3f1ee;
  --bg3:          #edeae5;
  --card:         #ffffff;
  --navy:         #1a1f2e;
  --navy2:        #2d3347;
  --muted:        #6b7280;
  --muted2:       #9ca3af;
  --orange:       #E8961A;
  --orange2:      #C97A10;
  --orange-light: #FEF3C7;
  --border:       rgba(26,31,46,0.08);
  --border2:      rgba(26,31,46,0.13);
  --shadow:       0 2px 16px rgba(26,31,46,0.07);
  --shadow-md:    0 6px 32px rgba(26,31,46,0.10);
  --shadow-lg:    0 16px 56px rgba(26,31,46,0.12);
  --radius:       16px;
  --radius-sm:    10px;
  --radius-xs:    6px;
  --transition:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --nav-height:   68px;
}

/* ------ RESET ------ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  background: var(--bg);
  color: var(--navy);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ------ LOGO IMAGE ------ */
.nav-logo-img {
  height: 36px;
  width: auto;
  border-radius: 8px;
  object-fit: contain;
}
.footer-brand-img {
  height: 48px;
  width: auto;
  border-radius: 10px;
  object-fit: contain;
  margin-bottom: 12px;
  display: block;
}

/* ------ NAWIGACJA ------ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(250,249,247,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  height: var(--nav-height);
  transition: box-shadow 0.3s var(--transition);
}
nav.scrolled { box-shadow: var(--shadow); }
.nav-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 28px;
  height: 100%; display: flex; align-items: center;
  justify-content: space-between; gap: 32px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; flex-shrink: 0;
}
.nav-logo-icon {
  width: 34px; height: 34px; background: var(--navy);
  border-radius: 9px; display: flex; align-items: center; justify-content: center;
}
.nav-logo-text {
  font-size: 17px; font-weight: 700;
  letter-spacing: -0.3px; color: var(--navy);
}
.nav-links {
  display: flex; align-items: center; gap: 4px;
  list-style: none; flex: 1; justify-content: center;
}
.nav-links a {
  display: block; padding: 7px 14px;
  font-size: 14px; font-weight: 500; color: var(--navy2);
  text-decoration: none; border-radius: var(--radius-xs);
  transition: color 0.18s, background 0.18s; letter-spacing: -0.1px;
}
.nav-links a:hover { color: var(--navy); background: var(--bg2); }
.nav-links a.active { color: var(--orange); font-weight: 600; }
.nav-right {
  display: flex; align-items: center; gap: 12px; flex-shrink: 0;
}
.nav-cta {
  background: var(--orange); color: var(--navy);
  padding: 9px 20px; border-radius: 100px;
  font-size: 14px; font-weight: 600; text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.nav-cta:hover {
  background: var(--orange2); transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(232,150,26,0.32);
}
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 6px; border-radius: var(--radius-xs);
  transition: background 0.15s;
}
.nav-hamburger:hover { background: var(--bg2); }
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--navy); border-radius: 2px;
  transition: transform 0.25s var(--transition), opacity 0.2s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.nav-mobile-menu {
  display: none; position: fixed;
  top: var(--nav-height); left: 0; right: 0;
  background: var(--bg); border-bottom: 1px solid var(--border);
  padding: 16px 28px 24px; z-index: 199; box-shadow: var(--shadow-md);
  animation: slideDown 0.22s var(--transition);
}
.nav-mobile-menu.open { display: block; }
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.nav-mobile-menu ul { list-style: none; margin-bottom: 16px; }
.nav-mobile-menu ul li a {
  display: block; padding: 12px 0; font-size: 16px; font-weight: 500;
  color: var(--navy); text-decoration: none;
  border-bottom: 1px solid var(--border);
}
.nav-mobile-menu ul li:last-child a { border-bottom: none; }
.nav-mobile-cta {
  display: block; text-align: center; background: var(--orange); color: var(--navy);
  padding: 12px 20px; border-radius: 100px;
  font-size: 15px; font-weight: 600; text-decoration: none; margin-top: 8px;
}

/* ------ LAYOUT ------ */
section { padding: 88px 24px; position: relative; }
.container    { max-width: 1040px; margin: 0 auto; }
.container-sm { max-width: 680px;  margin: 0 auto; }

/* Page hero (podstrony) */
.page-hero {
  padding-top: calc(var(--nav-height) + 64px);
  padding-bottom: 64px;
  padding-left: 24px;
  padding-right: 24px;
  background: transparent;
}
.page-hero-inner { max-width: 1040px; margin: 0 auto; }
.page-hero-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--orange);
  margin-bottom: 20px;
}
.page-hero-label::before {
  content: ''; display: block; width: 20px; height: 2px;
  background: var(--orange); border-radius: 2px;
}
.page-hero h1 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-size: clamp(32px, 5.5vw, 60px);
  line-height: 1.08; letter-spacing: -0.8px;
  color: var(--navy); margin-bottom: 20px; max-width: 760px;
}
.page-hero h1 em { font-style: italic; color: var(--orange); }
.page-hero p {
  font-size: clamp(15px, 2vw, 18px); color: var(--muted);
  max-width: 520px; line-height: 1.7;
}
.page-hero-divider {
  width: 100%; height: 1px; background: var(--border);
  margin-top: 48px;
}

/* ------ SECTION HELPERS ------ */
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--orange); margin-bottom: 20px;
}
.section-label::before {
  content: ''; display: block; width: 20px; height: 2px;
  background: var(--orange); border-radius: 2px;
}
h2.section-title {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-size: clamp(28px, 4.5vw, 44px);
  line-height: 1.12; letter-spacing: -0.5px;
  color: var(--navy); margin-bottom: 16px;
}
p.section-lead {
  font-size: clamp(15px, 2vw, 17px); color: var(--muted);
  line-height: 1.7; max-width: 540px;
}

/* ------ REVEAL ANIMATIONS ------ */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.65s var(--transition), transform 0.65s var(--transition);
  pointer-events: none;
}
.reveal.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.reveal-delay-1 { transition-delay: 0.10s; }
.reveal-delay-2 { transition-delay: 0.20s; }
.reveal-delay-3 { transition-delay: 0.32s; }
.reveal-delay-4 { transition-delay: 0.44s; }
.reveal-delay-5 { transition-delay: 0.56s; }

/* ------ BUTTONS ------ */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange); color: var(--navy);
  padding: 14px 28px; border-radius: 100px;
  font-size: 15px; font-weight: 600; text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn-primary:hover {
  background: var(--orange2); transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,150,26,0.32);
}
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--navy);
  padding: 14px 24px; border-radius: 100px;
  font-size: 15px; font-weight: 500; text-decoration: none;
  border: 1.5px solid var(--border2);
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
}
.btn-secondary:hover {
  border-color: var(--navy); background: var(--bg2); transform: translateY(-1px);
}
.btn-primary-dark {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange); color: var(--navy);
  padding: 14px 28px; border-radius: 100px;
  font-size: 15px; font-weight: 600; text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn-primary-dark:hover {
  background: var(--orange2); transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,150,26,0.4);
}
.btn-ghost-dark {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: rgba(255,255,255,0.8);
  padding: 14px 24px; border-radius: 100px;
  font-size: 15px; font-weight: 500; text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.2);
  transition: background 0.2s, border-color 0.2s;
}
.btn-ghost-dark:hover {
  background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.4);
}

/* ------ HERO (strona główna) ------ */
.hero {
  padding-top: calc(var(--nav-height) + 80px);
  padding-bottom: 100px; padding-left: 24px; padding-right: 24px;
  background: transparent;
  display: flex; align-items: center; overflow: visible; position: relative;
  z-index: 1;
}

/* Sekcje nad warstwą tła */
.help-section, .why-section, .improve-section, .cta-section,
.page-hero, .contact-section, .service-section, .process-section,
.faq-section, .products-section, footer {
  position: relative;
  z-index: 1;
}

/* ============================================================
   TŁO CAŁEJ STRONY — fixed parallax
   ============================================================ */
.site-bg-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

/* Loga w tle */
.bg-logo {
  position: absolute;
  will-change: transform;
}
.bg-logo-img {
  object-fit: contain;
  border-radius: 24px;
  filter: grayscale(20%);
}
/* Logo 1 — prawy górny */
.bg-logo-1 { right: -60px; top: 8vh; }
.bg-logo-1 .bg-logo-img { width: 340px; height: 340px; opacity: 0.025; }
/* Logo 2 — lewy dolny środek */
.bg-logo-2 { left: -80px; top: 55vh; }
.bg-logo-2 .bg-logo-img { width: 260px; height: 260px; opacity: 0.018; }
/* Logo 3 — prawy dół */
.bg-logo-3 { right: 5vw; top: 130vh; }
.bg-logo-3 .bg-logo-img { width: 300px; height: 300px; opacity: 0.02; }

/* Pierścienie */
.bg-ring {
  position: absolute;
  border-radius: 50%;
  will-change: transform;
}
.bg-ring-1 { width: 500px; height: 500px; right: -140px; top: 5vh;  border: 1.5px solid rgba(232,150,26,0.12); }
.bg-ring-2 { width: 280px; height: 280px; right: 80px;   top: 12vh; border: 1.5px solid rgba(26,31,46,0.06); }
.bg-ring-3 { width: 420px; height: 420px; left: -100px;  top: 80vh; border: 1.5px solid rgba(232,150,26,0.09); }
.bg-ring-4 { width: 200px; height: 200px; left: 60px;    top: 160vh; border: 1.5px solid rgba(26,31,46,0.05); }

/* Gradient blobs */
.bg-blob {
  position: absolute;
  border-radius: 50%;
  will-change: transform;
}
.bg-blob-1 {
  width: 600px; height: 600px;
  top: -100px; right: -180px;
  background: radial-gradient(circle, rgba(232,150,26,0.07) 0%, transparent 65%);
}
.bg-blob-2 {
  width: 500px; height: 500px;
  top: 70vh; left: -150px;
  background: radial-gradient(circle, rgba(232,150,26,0.055) 0%, transparent 65%);
}
.bg-blob-3 {
  width: 450px; height: 450px;
  top: 145vh; right: -100px;
  background: radial-gradient(circle, rgba(26,31,46,0.035) 0%, transparent 65%);
}

/* Ikonki gastronomiczne */
.bg-icon {
  position: absolute;
  color: var(--navy);
  will-change: transform;
  animation: bgFloat 7s ease-in-out infinite;
}
/* Rozmieszczenie po całej stronie */
.bg-icon-1 { top: 15vh;  right: 8vw;   opacity: 0.04; animation-delay: 0s;    animation-duration: 7s; }
.bg-icon-2 { top: 28vh;  left: 7vw;    opacity: 0.03; animation-delay: 1.2s;  animation-duration: 8s; }
.bg-icon-3 { top: 42vh;  right: 22vw;  opacity: 0.035; animation-delay: 2.5s;  animation-duration: 6s; }
.bg-icon-4 { top: 58vh;  left: 14vw;   opacity: 0.03; animation-delay: 0.6s;  animation-duration: 9s; }
.bg-icon-5 { top: 72vh;  right: 10vw;  opacity: 0.035; animation-delay: 3.5s;  animation-duration: 7s; }
.bg-icon-6 { top: 88vh;  left: 5vw;    opacity: 0.03; animation-delay: 1.8s;  animation-duration: 8s; }
.bg-icon-7 { top: 108vh; right: 18vw;  opacity: 0.04; animation-delay: 0.4s;  animation-duration: 6s; }
.bg-icon-8 { top: 125vh; left: 10vw;   opacity: 0.03; animation-delay: 2.8s;  animation-duration: 9s; }

@keyframes bgFloat {
  0%, 100% { margin-top: 0; }
  50%       { margin-top: -12px; }
}

/* Treść nad tłem */
.hero-inner { position: relative; z-index: 1; }

.hero-inner { max-width: 1040px; margin: 0 auto; width: 100%; position: relative; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange-light); border: 1px solid rgba(232,150,26,0.22);
  color: #000000; font-size: 12px; font-weight: 600;
  letter-spacing: 0.07em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px; margin-bottom: 32px;
}
.hero-badge-dot {
  width: 6px; height: 6px; border-radius: 50%; background: #16a34a;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.4} }
.hero-headline {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-size: clamp(40px, 7vw, 72px); line-height: 1.07;
  letter-spacing: -1px; color: var(--navy);
  margin-bottom: 24px; max-width: 820px;
}
.hero-headline em { font-style: italic; color: var(--orange); }
.hero-sub {
  font-size: clamp(16px, 2.5vw, 19px); color: var(--muted);
  max-width: 520px; line-height: 1.7; margin-bottom: 40px;
}
.hero-ctas { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 40px; flex-wrap: wrap;
  padding-top: 40px; border-top: 1px solid var(--border);
}
.hero-stat-number {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif; font-size: 32px;
  color: var(--navy); letter-spacing: -0.5px; line-height: 1; margin-bottom: 4px;
}
.hero-stat-label { font-size: 13px; color: var(--muted); font-weight: 500; }

/* ------ KARTY USŁUG (help-grid na index) ------ */
.help-section { background: transparent; }
.help-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 48px; }
.help-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 24px;
  box-shadow: 0 1px 4px rgba(26,31,46,0.05), 0 4px 16px rgba(26,31,46,0.04);
  transition: transform 0.25s var(--transition), box-shadow 0.25s, border-color 0.25s;
}
.help-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(232,150,26,0.3); }
.help-card-icon {
  width: 44px; height: 44px; background: var(--orange-light);
  border-radius: var(--radius-sm); display: flex; align-items: center;
  justify-content: center; margin-bottom: 18px; color: var(--orange);
}
.help-card h3 { font-size: 16px; font-weight: 600; color: var(--navy); margin-bottom: 8px; letter-spacing: -0.2px; }
.help-card p  { font-size: 14px; color: var(--muted); line-height: 1.65; }
.help-card-link {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 13px; font-weight: 600; color: var(--orange);
  text-decoration: none; margin-top: 16px; transition: gap 0.2s;
}
.help-card-link:hover { gap: 8px; }

/* ------ DLACZEGO ------ */
.why-section { background: transparent; }
.why-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; margin-top: 48px; }
.why-item {
  display: flex; gap: 16px; background: var(--card);
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 24px; align-items: flex-start;
  box-shadow: 0 1px 4px rgba(26,31,46,0.05), 0 4px 16px rgba(26,31,46,0.04);
  transition: transform 0.25s var(--transition), box-shadow 0.25s, border-color 0.25s;
}
.why-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: rgba(232,150,26,0.25); }
.why-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: var(--orange-light); border-radius: var(--radius-xs);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange); margin-top: 2px;
}
.why-item h4 { font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 5px; }
.why-item p  { font-size: 13.5px; color: var(--muted); line-height: 1.65; }

/* ------ IMPROVE ------ */
.improve-section { background: transparent; }
.improve-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px;
  align-items: center; margin-top: 48px;
}
.improve-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.improve-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px; color: var(--navy2); line-height: 1.55;
}
.improve-check {
  width: 22px; height: 22px; flex-shrink: 0;
  background: var(--orange-light); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--orange); margin-top: 1px;
}
.improve-visual {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px;
  box-shadow: 0 2px 8px rgba(26,31,46,0.06), 0 8px 32px rgba(26,31,46,0.07);
}
.improve-visual-quote {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif; font-size: 20px;
  color: var(--navy); line-height: 1.45; margin-bottom: 20px; font-style: italic;
}
.improve-visual-meta { display: flex; align-items: center; gap: 12px; }
.improve-avatar {
  width: 40px; height: 40px; background: var(--bg2); border-radius: 50%;
  border: 1px solid var(--border); display: flex; align-items: center;
  justify-content: center; font-size: 16px;
}
.improve-meta-name { font-size: 13px; font-weight: 600; color: var(--navy); }
.improve-meta-role { font-size: 12px; color: var(--muted); }

/* ------ CTA SECTION ------ */
.cta-section { background: var(--navy); padding: 88px 24px; }
.cta-inner { max-width: 680px; margin: 0 auto; text-align: center; }
.cta-badge {
  display: inline-block; background: rgba(232,150,26,0.15);
  border: 1px solid rgba(232,150,26,0.3); color: var(--orange);
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 5px 14px; border-radius: 100px; margin-bottom: 24px;
}
.cta-section h2 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif; font-size: clamp(28px,5vw,48px);
  color: #fff; letter-spacing: -0.5px; line-height: 1.1; margin-bottom: 16px;
}
.cta-section h2 em { font-style: italic; color: var(--orange); }
.cta-section p { font-size: 17px; color: rgba(255,255,255,0.65); margin-bottom: 36px; line-height: 1.7; }
.cta-buttons { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* ------ KONTAKT ------ */
.contact-section { background: transparent; }
.contact-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 56px; align-items: flex-start; margin-top: 48px; }
.contact-info h3 { font-size: 18px; font-weight: 600; color: var(--navy); margin-bottom: 12px; }
.contact-info p  { font-size: 15px; color: var(--muted); line-height: 1.7; margin-bottom: 28px; }
.contact-detail { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; font-size: 14px; color: var(--navy2); }
.contact-detail-icon {
  width: 36px; height: 36px; flex-shrink: 0; background: var(--bg2);
  border-radius: var(--radius-xs); display: flex; align-items: center;
  justify-content: center; color: var(--orange);
}
.contact-detail a { color: var(--navy2); text-decoration: none; font-weight: 500; }
.contact-detail a:hover { color: var(--orange); }
.contact-form {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px;
  box-shadow: 0 2px 8px rgba(26,31,46,0.06), 0 8px 32px rgba(26,31,46,0.08);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 7px; }
.form-group label.consent-label { display: flex; margin-bottom: 0; }
.form-group input:not([type="checkbox"]):not([type="radio"]),
.form-group textarea,
.form-group select {
  width: 100%; background: var(--bg); border: 1.5px solid var(--border2);
  border-radius: var(--radius-sm); padding: 11px 14px;
  font-size: 14px; font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif; color: var(--navy);
  outline: none; transition: border-color 0.2s, box-shadow 0.2s; -webkit-appearance: none;
}
.form-group input:not([type="checkbox"]):not([type="radio"])::placeholder,
.form-group textarea::placeholder { color: var(--muted2); }
.form-group input:not([type="checkbox"]):not([type="radio"]):focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--orange); box-shadow: 0 0 0 3px rgba(232,150,26,0.12);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-note { font-size: 12px; color: var(--muted); margin-bottom: 20px; line-height: 1.5; }
.form-submit {
  width: 100%; background: var(--orange); color: var(--navy); border: none;
  border-radius: 100px; padding: 14px 24px; font-size: 15px; font-weight: 600;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif; cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.form-submit:hover {
  background: var(--orange2); transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(232,150,26,0.3);
}
.form-submit:disabled { background: var(--muted2); cursor: not-allowed; transform: none; box-shadow: none; }
.form-success { display: none; text-align: center; padding: 32px 20px; }
.form-success-icon {
  width: 56px; height: 56px; background: var(--orange-light); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; color: var(--orange);
}
.form-success h4 { font-size: 18px; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.form-success p  { font-size: 14px; color: var(--muted); }

/* ------ FOOTER ------ */
footer { background: var(--navy); color: rgba(255,255,255,0.65); padding: 56px 24px 32px; }
.footer-inner { max-width: 1040px; margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px;
  padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 28px;
}
.footer-brand-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-brand-icon {
  width: 32px; height: 32px; background: rgba(255,255,255,0.1);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
}
.footer-brand-name { font-size: 16px; font-weight: 700; color: #fff; letter-spacing: -0.2px; }
.footer-brand-desc { font-size: 13.5px; line-height: 1.7; max-width: 300px; color: rgba(255,255,255,0.5); }
.footer-col h5 { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 16px; }
.footer-nav-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-nav-links a { font-size: 14px; color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.18s; }
.footer-nav-links a:hover { color: #fff; }
.footer-contact-links { display: flex; flex-direction: column; gap: 10px; }
.footer-contact-link {
  display: flex; align-items: center; gap: 8px;
  font-size: 13.5px; color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.18s;
}
.footer-contact-link:hover { color: #fff; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; flex-wrap: wrap; font-size: 13px; color: rgba(255,255,255,0.35);
}

/* ------ RESPONSIVE ------ */
@media (max-width: 900px) {
  .nav-links   { display: none; }
  .nav-hamburger { display: flex; }
  .nav-cta     { display: none; }
  .help-grid   { grid-template-columns: 1fr; }
  .why-grid    { grid-template-columns: 1fr; }
  .improve-layout  { grid-template-columns: 1fr; gap: 32px; }
  .contact-layout  { grid-template-columns: 1fr; gap: 32px; }
  .footer-top  { grid-template-columns: 1fr; gap: 32px; }
  .form-row    { grid-template-columns: 1fr; }
  .hero-inner--two-col { grid-template-columns: 1fr !important; }
  .hero-slider-col { display: none; }
}
@media (max-width: 640px) {
  section { padding: 64px 20px; }
  .hero   { padding-top: calc(var(--nav-height) + 48px); padding-bottom: 64px; }
  .hero-stats  { gap: 24px; }
  .hero-ctas   { flex-direction: column; align-items: flex-start; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .contact-form { padding: 24px 20px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .page-hero { padding-top: calc(var(--nav-height) + 40px); padding-bottom: 40px; }
}

/* ── Nazwa w nav – mniejsza na telefonie ── */
@media (max-width: 640px) {
  .nav-logo-text { font-size: 14px; }
}

/* ════════════════════════════════════════
   WSZYSTKIE POPRAWKI MOBILNE (max 640px)
   ════════════════════════════════════════ */
@media (max-width: 640px) {

  /* 1. Blobs gradientowe – zmniejszone */
  .bg-blob-1 { width: 220px; height: 220px; top: -60px; right: -80px; }
  .bg-blob-2 { width: 180px; height: 180px; top: 55vh;  left: -70px;  }
  .bg-blob-3 { width: 160px; height: 160px; top: 130vh; right: -60px; }

  /* 2. Logo DlaLokalu w tle – mocno zmniejszone */
  .bg-logo-1 { right: -30px; }
  .bg-logo-1 .bg-logo-img { width: 130px; height: 130px; opacity: 0.03; }
  .bg-logo-2 { left: -30px; }
  .bg-logo-2 .bg-logo-img { width: 100px; height: 100px; opacity: 0.025; }
  .bg-logo-3 { right: 2vw; }
  .bg-logo-3 .bg-logo-img { width: 110px; height: 110px; opacity: 0.025; }

  /* 3. Ikonki animowane – zmniejszone i przy krawędzi */
  .bg-icon svg { width: 14px !important; height: 14px !important; }
  .bg-icon-1 { right: 3vw; opacity: 0.06; }
  .bg-icon-2 { left: 2vw;  opacity: 0.05; }
  .bg-icon-3 { right: 5vw; opacity: 0.05; }
  .bg-icon-4 { left: 2vw;  opacity: 0.05; }
  .bg-icon-5 { right: 3vw; opacity: 0.05; }
  .bg-icon-6 { left: 2vw;  opacity: 0.05; }
  .bg-icon-7 { right: 4vw; opacity: 0.06; }
  .bg-icon-8 { left: 2vw;  opacity: 0.05; }

  /* 4. Nazwa DlaLokalu.pl w nav – mniejsza czcionka */
  .nav-logo-text { font-size: 14px; }
}

/* ════════════════════════════════════════
   WSZYSTKIE POPRAWKI MOBILNE (max 640px)
   ════════════════════════════════════════ */
@media (max-width: 640px) {

  /* 1. Blobs gradientowe – zmniejszone */
  .bg-blob-1 { width: 220px; height: 220px; top: -60px; right: -80px; }
  .bg-blob-2 { width: 180px; height: 180px; top: 55vh;  left: -70px;  }
  .bg-blob-3 { width: 160px; height: 160px; top: 130vh; right: -60px; }

  /* 2. Logo DlaLokalu w tle – mocno zmniejszone */
  .bg-logo-1 { right: -30px; }
  .bg-logo-1 .bg-logo-img { width: 130px; height: 130px; opacity: 0.03; }
  .bg-logo-2 { left: -30px; }
  .bg-logo-2 .bg-logo-img { width: 100px; height: 100px; opacity: 0.025; }
  .bg-logo-3 { right: 2vw; }
  .bg-logo-3 .bg-logo-img { width: 110px; height: 110px; opacity: 0.025; }

  /* 3. Ikonki animowane – zmniejszone i przy krawędzi */
  .bg-icon svg { width: 14px !important; height: 14px !important; }
  .bg-icon-1 { right: 3vw; opacity: 0.06; }
  .bg-icon-2 { left: 2vw;  opacity: 0.05; }
  .bg-icon-3 { right: 5vw; opacity: 0.05; }
  .bg-icon-4 { left: 2vw;  opacity: 0.05; }
  .bg-icon-5 { right: 3vw; opacity: 0.05; }
  .bg-icon-6 { left: 2vw;  opacity: 0.05; }
  .bg-icon-7 { right: 4vw; opacity: 0.06; }
  .bg-icon-8 { left: 2vw;  opacity: 0.05; }

  /* 4. Nazwa DlaLokalu.pl w nav – mniejsza czcionka */
  .nav-logo-text { font-size: 14px; }
}

/* ============================================================
   RODO — Checkbox zgody (formularz kontakt)
   ============================================================ */
.form-consent {
  margin-top: 4px;
  margin-bottom: 0;
}
.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  cursor: pointer;
}
.consent-label input[type="checkbox"] {
  flex-shrink: 0;
  width: 17px;
  height: 17px;
  margin-top: 2px;
  accent-color: #1a1f2e;
  cursor: pointer;
  border-radius: 4px;
}
.consent-text {
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
}
.consent-text a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.18s;
}
.consent-text a:hover { color: var(--orange2); }

/* ============================================================
   COOKIE BANNER
   ============================================================ */
#cookieBanner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: 680px;
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  border-radius: 16px;
  padding: 20px 24px;
  box-shadow: 0 8px 40px rgba(26,31,46,0.28);
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  animation: cookieSlideUp 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes cookieSlideUp {
  from { opacity: 0; transform: translateX(-50%) translateY(24px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
#cookieBanner.cookie-hidden {
  animation: cookieSlideDown 0.3s ease forwards;
}
@keyframes cookieSlideDown {
  to { opacity: 0; transform: translateX(-50%) translateY(20px); }
}
.cookie-text {
  flex: 1;
  min-width: 200px;
  font-size: 13.5px;
  line-height: 1.6;
}
.cookie-text a {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-btns {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-btn-accept {
  background: var(--orange);
  color: var(--navy);
  border: none;
  border-radius: 8px;
  padding: 9px 18px;
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.18s;
  font-family: inherit;
}
.cookie-btn-accept:hover { background: var(--orange2); }
.cookie-btn-reject {
  background: transparent;
  color: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 8px;
  padding: 9px 16px;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.18s;
  font-family: inherit;
}
.cookie-btn-reject:hover { color: #fff; border-color: rgba(255,255,255,0.4); }
@media (max-width: 500px) {
  #cookieBanner { bottom: 0; border-radius: 16px 16px 0 0; left: 0; transform: none; width: 100%; max-width: 100%; }
  #cookieBanner.cookie-hidden { animation: none; display: none; }
  .cookie-btns { width: 100%; }
  .cookie-btn-accept, .cookie-btn-reject { flex: 1; text-align: center; }
}

/* ============================================================
   WIDGET CALLBACK — ikona telefonu + modal
   ============================================================ */

/* Przycisk FAB */
#callbackFab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9000;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(232,150,26,0.45);
  transition: transform 0.2s var(--transition), box-shadow 0.2s var(--transition), background 0.2s;
}
#callbackFab:hover {
  background: var(--orange2);
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(232,150,26,0.55);
}
#callbackFab svg { width: 26px; height: 26px; }

/* Pulse ring */
#callbackFab::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--orange);
  opacity: 0;
  animation: cbPulse 2.4s ease-out infinite;
}
@keyframes cbPulse {
  0%   { opacity: 0.7; transform: scale(1); }
  100% { opacity: 0;   transform: scale(1.55); }
}

/* Overlay */
#callbackOverlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26,31,46,0.45);
  backdrop-filter: blur(4px);
  z-index: 9100;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
#callbackOverlay.cb-open { display: flex; }

/* Modal */
#callbackModal {
  background: var(--card);
  border-radius: 20px;
  width: 100%;
  max-width: 460px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 32px 32px 28px;
  box-shadow: var(--shadow-lg);
  position: relative;
  animation: cbSlideUp 0.28s var(--transition);
}
@keyframes cbSlideUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Zamknij */
#callbackClose {
  position: absolute;
  top: 14px; right: 16px;
  background: var(--bg2);
  border: none;
  border-radius: 50%;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--muted);
  transition: background 0.15s, color 0.15s;
}
#callbackClose:hover { background: var(--bg3); color: var(--navy); }

/* Nagłówek modala */
.cb-header { margin-bottom: 20px; }
.cb-header h3 {
  font-size: 19px; font-weight: 700; color: var(--navy);
  letter-spacing: -0.3px; margin-bottom: 4px;
}
.cb-header p { font-size: 13.5px; color: var(--muted); line-height: 1.5; }

/* Przełącznik trybu */
.cb-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  background: var(--bg2);
  padding: 4px;
  border-radius: var(--radius-sm);
}
.cb-tab {
  flex: 1;
  padding: 9px 12px;
  border-radius: 8px;
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--muted);
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  display: flex; align-items: center; justify-content: center; gap: 7px;
}
.cb-tab.active {
  background: #fff;
  color: var(--navy);
  box-shadow: 0 1px 6px rgba(26,31,46,0.10);
}
.cb-tab svg { width: 15px; height: 15px; flex-shrink: 0; }

/* Pola formularza */
.cb-form-group { margin-bottom: 14px; }
.cb-form-group label {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--navy2);
  margin-bottom: 6px;
  letter-spacing: 0.1px;
}
.cb-form-group input,
.cb-form-group select {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--border2);
  border-radius: var(--radius-xs);
  background: var(--bg);
  font-family: inherit;
  font-size: 14px;
  color: var(--navy);
  transition: border-color 0.18s, box-shadow 0.18s;
  outline: none;
}
.cb-form-group input:focus,
.cb-form-group select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232,150,26,0.12);
}
.cb-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* Sekcja RODO */
.cb-rodo {
  margin-top: 8px;
  border: 1px solid var(--border2);
  border-radius: var(--radius-xs);
  overflow: hidden;
}
.cb-rodo-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 13px;
  background: var(--bg2);
  cursor: pointer;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.15px;
  user-select: none;
  gap: 8px;
}
.cb-rodo-toggle span:first-child { flex: 1; }
.cb-rodo-arrow {
  width: 14px; height: 14px; flex-shrink: 0;
  transition: transform 0.22s var(--transition);
}
.cb-rodo.open .cb-rodo-arrow { transform: rotate(180deg); }
.cb-rodo-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s var(--transition);
}
.cb-rodo.open .cb-rodo-body { max-height: 300px; }
.cb-rodo-text {
  padding: 11px 13px;
  font-size: 11px;
  color: var(--muted);
  line-height: 1.65;
  background: #fff;
}

/* Przycisk wyślij */
.cb-submit {
  width: 100%;
  margin-top: 16px;
  padding: 13px;
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: var(--radius-xs);
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.18s, transform 0.15s;
  letter-spacing: -0.1px;
}
.cb-submit:hover { background: var(--orange2); transform: translateY(-1px); }
.cb-submit:active { transform: none; }

/* Podziękowanie */
.cb-thanks {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 12px 0 4px;
  gap: 10px;
}
.cb-thanks.show { display: flex; }
.cb-thanks-icon {
  width: 52px; height: 52px;
  background: var(--orange-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.cb-thanks-icon svg { width: 26px; height: 26px; color: var(--orange); }
.cb-thanks h4 { font-size: 18px; font-weight: 700; color: var(--navy); letter-spacing: -0.2px; }
.cb-thanks p { font-size: 13.5px; color: var(--muted); line-height: 1.55; max-width: 300px; }

/* Panel formularza */
#cbFormPanel { transition: opacity 0.2s; }

@media (max-width: 500px) {
  #callbackModal { padding: 24px 20px 22px; max-height: 85vh; }
  .cb-row { grid-template-columns: 1fr; }
  #callbackFab { bottom: 20px; right: 20px; }
}
