/* =============================================
   KLIMATYZACJA SŁAWEK — Apple-inspired Design
   ============================================= */

:root {
  --black:        #000000;
  --near-black:   #1d1d1f;
  --text:         #1d1d1f;
  --text-2:       #6e6e73;
  --text-3:       #a1a1a6;
  --divider:      rgba(0,0,0,0.08);
  --divider-w:    rgba(255,255,255,0.1);
  --bg:           #ffffff;
  --bg-alt:       #f5f5f7;
  --blue:         #0071e3;
  --blue-hover:   #0080ff;
  --red:          #e8002a;
  --red-hover:    #c8001f;
  --nav-bg:       rgba(255,255,255,0.97);
  --font:         -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', system-ui, sans-serif;
  --max-w:        980px;
  --max-w-wide:   1200px;
  --nav-h:        160px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

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

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

.container      { max-width: var(--max-w);      margin: 0 auto; padding: 0 22px; }
.container-wide { max-width: var(--max-w-wide); margin: 0 auto; padding: 0 22px; }


/* =============================================
   NAWIGACJA
   ============================================= */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  background: var(--nav-bg);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--divider);
  transition: box-shadow 0.3s, border-color 0.3s;
}

.nav::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--red) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav.scrolled {
  box-shadow: 0 2px 24px rgba(0,0,0,0.08);
  border-color: transparent;
}

.nav.scrolled::after {
  transform: scaleX(1);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-logo-img { height: 150px; width: auto; max-width: 300px; display: block; object-fit: contain; }
.nav-logo {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  white-space: nowrap;
  line-height: 1;
}

.logo-part1 { color: var(--blue); }
.logo-part2 { color: var(--red); }

.nav-links {
  display: flex;
  gap: 1.75rem;
  list-style: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  opacity: 0.75;
  white-space: nowrap;
  position: relative;
  padding-bottom: 2px;
  transition: opacity 0.2s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--red));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-radius: 2px;
}

.nav-links a:hover {
  opacity: 1;
}

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--blue);
  white-space: nowrap;
  transition: color 0.2s;
  letter-spacing: -0.01em;
}

.nav-cta:hover { color: var(--red); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--text);
  font-size: 1.1rem;
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: absolute;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--nav-bg);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--divider);
  padding: 1.25rem 22px 1.75rem;
}

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

.mobile-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.mobile-nav ul a { font-size: 0.95rem; font-weight: 500; color: var(--text); }

.mobile-nav-phone {
  display: block;
  text-align: center;
  background: linear-gradient(135deg, var(--blue), var(--red));
  color: white;
  padding: 0.8rem;
  border-radius: 980px;
  font-size: 0.9rem;
  font-weight: 600;
}


/* Nav entrance animation */
@keyframes nav-slide-down {
  from { opacity: 0; transform: translateY(-100%); }
  to   { opacity: 1; transform: translateY(0); }
}

.nav { animation: nav-slide-down 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both; }


/* =============================================
   HERO
   ============================================= */

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-h) + 5rem) 22px 6rem;
  background: var(--bg);
  position: relative;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: linear-gradient(90deg, var(--blue), var(--red));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.75rem;
}

.hero h1 {
  font-size: clamp(3.25rem, 8.5vw, 7rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.02;
  color: var(--near-black);
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--blue) 0%, var(--red) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-2);
  max-width: 520px;
  margin: 0 auto 2.75rem;
  line-height: 1.65;
  font-weight: 400;
}

.hero-ctas {
  display: flex;
  gap: 0.85rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-fill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: linear-gradient(135deg, var(--blue) 0%, var(--red) 100%);
  background-size: 200% 200%;
  color: white;
  padding: 0.78rem 1.6rem;
  border-radius: 980px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background-position 0.4s ease, transform 0.2s, box-shadow 0.3s;
  box-shadow: 0 4px 18px rgba(0,113,227,0.25);
}

.cta-fill:hover {
  background-position: right center;
  transform: scale(1.03);
  box-shadow: 0 6px 24px rgba(232,0,42,0.3);
}

.cta-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--red);
  padding: 0.78rem 1.6rem;
  border-radius: 980px;
  border: 1.5px solid var(--red);
  font-size: 0.9rem;
  font-weight: 600;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.cta-outline:hover {
  background: var(--red);
  color: white;
}

.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-3);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  animation: hint-pulse 2.5s ease-in-out infinite;
}

.scroll-hint-line {
  width: 2px;
  height: 32px;
  background: linear-gradient(to bottom, var(--blue), var(--red), transparent);
  border-radius: 2px;
}

@keyframes hint-pulse {
  0%, 100% { opacity: 0.4; transform: translateX(-50%) translateY(0); }
  50%       { opacity: 1;   transform: translateX(-50%) translateY(6px); }
}


/* =============================================
   STATYSTYKI (ciemna sekcja)
   ============================================= */

.stats-section {
  background: linear-gradient(135deg, #0d1a2e 0%, #1d1d1f 45%, #2a0810 100%);
  padding: 80px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid var(--divider-w);
}

.stat-item {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--divider-w);
  text-align: center;
}

.stat-num {
  display: block;
  font-size: clamp(2.75rem, 4.5vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--blue), var(--red));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-item:nth-child(even) .stat-num {
  background: linear-gradient(135deg, var(--red), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}


/* =============================================
   STATEMENT (duży cytat)
   ============================================= */

.statement-section {
  background: var(--bg);
  padding: 130px 0;
  text-align: center;
}

.statement-text {
  font-size: clamp(1.6rem, 3.5vw, 2.65rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--near-black);
  max-width: 820px;
  margin: 0 auto 1.5rem;
  line-height: 1.25;
}

.statement-text em {
  font-style: normal;
  color: var(--blue);
}

.statement-sub {
  font-size: 0.95rem;
  color: var(--text-2);
  max-width: 440px;
  margin: 0 auto;
  line-height: 1.7;
}


/* =============================================
   TYTUŁY SEKCJI — wspólne
   ============================================= */

.section-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: linear-gradient(90deg, var(--blue), var(--red));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.9rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--near-black);
  line-height: 1.1;
}

.section-title-white { color: white; }
.section-label-white {
  background: linear-gradient(90deg, rgba(100,170,255,0.9), rgba(255,100,120,0.9));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


/* =============================================
   USŁUGI
   ============================================= */

.services-section { background: var(--bg-alt); padding: 80px 0; }

.services-header { margin-bottom: 3rem; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: rgba(0,0,0,0.06);
}

.service-card {
  background: var(--bg);
  padding: 2.75rem;
  transition: background 0.25s, box-shadow 0.25s, transform 0.25s;
  border-top: 3px solid transparent;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--red));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card:nth-child(even)::before {
  background: linear-gradient(90deg, var(--red), var(--blue));
  transform-origin: right;
}

.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { background: #fafcff; box-shadow: 0 8px 32px rgba(0,113,227,0.08); transform: translateY(-2px); }
.service-card:nth-child(even):hover { background: #fff8f8; box-shadow: 0 8px 32px rgba(232,0,42,0.08); }

.service-num {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  background: linear-gradient(90deg, var(--blue), var(--red));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.75rem;
}

.service-card:nth-child(even) .service-num {
  background: linear-gradient(90deg, var(--red), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.service-icon {
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
  display: block;
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--near-black);
  margin-bottom: 0.65rem;
}

.service-card p {
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.7;
}


/* =============================================
   DLACZEGO JA (ciemna)
   ============================================= */

.why-section {
  background: linear-gradient(135deg, #0a0f1e 0%, #1d1d1f 50%, #1e0508 100%);
  padding: 80px 0;
}

.why-header { margin-bottom: 4rem; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.5rem 5rem;
}

.why-item {}

.why-dash {
  width: 36px;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--red));
  margin-bottom: 1.25rem;
  border-radius: 3px;
}

.why-item:nth-child(even) .why-dash {
  background: linear-gradient(90deg, var(--red), var(--blue));
}

.why-item h3 {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: white;
  margin-bottom: 0.5rem;
}

.why-item p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}


/* =============================================
   CERTYFIKATY
   ============================================= */

.certs-section { background: var(--bg); padding: 100px 0; }

.certs-header { margin-bottom: 3.5rem; }

.certs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(0,0,0,0.06);
}

.cert-card {
  background: var(--bg);
  padding: 2.5rem 1.75rem;
  text-align: center;
}

.cert-card .cert-icon { font-size: 2rem; margin-bottom: 1rem; display: block; }
.cert-card .cert-name { font-size: 0.9rem; font-weight: 600; color: var(--near-black); margin-bottom: 0.35rem; }
.cert-card .cert-desc { font-size: 0.78rem; color: var(--text-2); line-height: 1.5; }


/* =============================================
   CENA
   ============================================= */

.pricing-section {
  background: var(--bg-alt);
  padding: 100px 0;
  text-align: center;
}

.pricing-from {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-2);
  margin-bottom: 0.5rem;
}

.pricing-price {
  font-size: clamp(4rem, 9vw, 8rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  color: var(--near-black);
  line-height: 1;
  margin-bottom: 1rem;
}

.pricing-currency {
  font-size: 0.45em;
  font-weight: 500;
  letter-spacing: -0.02em;
  vertical-align: super;
  color: var(--text-2);
}

.pricing-sub {
  font-size: 0.9rem;
  color: var(--text-2);
  margin-bottom: 2.5rem;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
}


/* =============================================
   GALERIA
   ============================================= */

.gallery-section { background: var(--bg); padding: 80px 0; }

.gallery-header { margin-bottom: 3rem; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.gallery-item {
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  background: var(--bg-alt);
  border-radius: 10px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item:hover img { transform: scale(1.06); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
  border-radius: 10px;
}

.gallery-item:hover .gallery-overlay { background: rgba(0,0,0,0.22); }

.gallery-overlay-icon {
  color: white;
  font-size: 1.75rem;
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.3s, transform 0.3s;
}

.gallery-item:hover .gallery-overlay-icon { opacity: 1; transform: scale(1); }

.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 0.5rem 0.75rem;
  background: linear-gradient(0deg, rgba(0,0,0,0.72) 0%, transparent 100%);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.3;
  transform: translateY(6px);
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
}
.gallery-item:hover .gallery-caption { opacity: 1; transform: translateY(0); }

.gallery-placeholder {
  cursor: default;
}

.gallery-placeholder-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--text-3);
}

.gallery-placeholder-inner i {
  font-size: 2rem;
  opacity: 0.35;
}

.gallery-placeholder-inner span {
  font-size: 0.8rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.6;
  opacity: 0.45;
}


/* =============================================
   OPINIE
   ============================================= */

.testimonials-section { background: var(--bg-alt); padding: 80px 0; }

.testimonials-header { margin-bottom: 3.5rem; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(0,0,0,0.06);
}

.testimonial-card {
  background: var(--bg);
  padding: 2.5rem;
}

.t-quote-mark {
  font-size: 3.5rem;
  line-height: 1;
  background: linear-gradient(135deg, var(--blue), var(--red));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: Georgia, 'Times New Roman', serif;
  margin-bottom: 1rem;
  display: block;
}

.testimonial-card:nth-child(even) .t-quote-mark {
  background: linear-gradient(135deg, var(--red), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.t-text {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 1.75rem;
}

.t-author-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--near-black);
}

.t-author-sub {
  font-size: 0.75rem;
  color: var(--text-2);
  margin-top: 0.15rem;
}

.t-stars {
  font-size: 0.75rem;
  color: #f59e0b;
  margin-bottom: 1.25rem;
  letter-spacing: 0.05em;
}


/* =============================================
   ZASIĘG (ciemna)
   ============================================= */

.area-section { background: var(--near-black); padding: 100px 0; }

.area-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  margin-top: 3.5rem;
}

.area-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  margin: 1.25rem 0 2rem;
}

.area-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem 2.5rem;
}

.area-list li {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.area-list li::before {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--blue);
  border-radius: 50%;
  flex-shrink: 0;
}

.area-visual {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.25);
  gap: 0.75rem;
}

.area-visual i { font-size: 3.5rem; }
.area-visual p { font-size: 0.85rem; letter-spacing: 0.03em; }
.area-visual small { font-size: 0.75rem; opacity: 0.6; }


/* =============================================
   FAQ
   ============================================= */

.faq-section { background: var(--bg); padding: 80px 0; }

.faq-header { margin-bottom: 3.5rem; text-align: center; }

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

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

.faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.25rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--near-black);
  font-family: var(--font);
  transition: color 0.2s;
}

.faq-btn:hover { color: var(--red); }
.faq-btn.active { color: var(--red); }

.faq-icon {
  flex-shrink: 0;
  font-size: 1rem;
  color: var(--text-2);
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), color 0.2s;
}

.faq-btn.active .faq-icon { transform: rotate(45deg); color: var(--red); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.38s ease; }

.faq-answer-inner {
  padding: 0 0 1.5rem;
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.8;
}


/* =============================================
   KONTAKT
   ============================================= */

.contact-section { background: var(--bg-alt); padding: 80px 0; }

/* Certyfikaty w kontakcie */
.contact-badges {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--divider);
}

.contact-badge {
  font-size: 0.78rem;
  color: var(--text-2);
  font-weight: 500;
}

.contact-header { margin-bottom: 3.5rem; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 6rem;
  align-items: start;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.c-icon {
  font-size: 1rem;
  color: var(--blue);
  margin-top: 0.15rem;
  flex-shrink: 0;
  width: 20px;
}

.c-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-2);
  margin-bottom: 0.2rem;
}

.c-value {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--near-black);
}

a.c-value { transition: color 0.2s; }
a.c-value:hover { color: var(--blue); }

/* Formularz */
.contact-form-wrap {
  background: var(--bg);
  border-radius: 18px;
  padding: 2.25rem;
}

.contact-form-wrap h3 {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--near-black);
  margin-bottom: 1.75rem;
}

.form-group { margin-bottom: 1rem; }
.form-group label .req { color: var(--red); font-weight: 700; }
.form-hint-contact { font-size: 0.72rem; color: var(--text-2); margin: -0.5rem 0 1rem; opacity: 0.7; }

.form-group label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-2);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--bg-alt);
  border: 1.5px solid transparent;
  border-radius: 10px;
  font-family: var(--font);
  font-size: 0.9rem;
  color: var(--near-black);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  background: var(--bg);
  border-color: var(--blue);
}

.form-group textarea { min-height: 110px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-honeypot { display: none; }

.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--blue) 0%, var(--red) 100%);
  background-size: 200% 200%;
  color: white;
  padding: 0.9rem;
  border: none;
  border-radius: 980px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font);
  transition: background-position 0.4s ease, box-shadow 0.3s, transform 0.2s;
  margin-top: 0.5rem;
  letter-spacing: -0.01em;
  box-shadow: 0 4px 18px rgba(0,113,227,0.2);
}

.btn-submit:hover {
  background-position: right center;
  box-shadow: 0 6px 24px rgba(232,0,42,0.3);
  transform: translateY(-1px);
}
.btn-submit:disabled { opacity: 0.5; cursor: not-allowed; }

.form-alert {
  display: none;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-align: center;
}

.form-alert.success { background: #d1fae5; color: #065f46; }
.form-alert.error   { background: #fee2e2; color: #991b1b; }


/* =============================================
   FOOTER
   ============================================= */

.footer {
  background: linear-gradient(135deg, #0d1a2e 0%, #1d1d1f 50%, #2a0810 100%);
  padding: 2.75rem 0;
  border-top: 3px solid transparent;
  border-image: linear-gradient(90deg, var(--blue), var(--red)) 1;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-logo {
  font-size: 0.875rem;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  letter-spacing: -0.01em;
}

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

.footer-links a {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}

.footer-links a:hover { color: rgba(255,255,255,0.7); }

.footer-area {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.65);
}

.footer-copy {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
  width: 100%;
  margin-top: 0.5rem;
}


/* =============================================
   MOBILNY PASEK
   ============================================= */

.mobile-call-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 300;
  background: rgba(29,29,31,0.96);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  color: white;
  padding: 0.9rem 1.5rem;
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
}


/* =============================================
   LIGHTBOX
   ============================================= */

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.96);
  z-index: 500;
  align-items: center;
  justify-content: center;
}

.lightbox.open { display: flex; }

.lightbox-img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 4px;
}

.lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: rgba(255,255,255,0.1);
  border: none;
  color: white;
  font-size: 1.1rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.lightbox-close:hover { background: rgba(255,255,255,0.2); }

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: none;
  color: white;
  font-size: 1.1rem;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
  backdrop-filter: blur(4px);
}

.lightbox-nav:hover { background: rgba(255,255,255,0.22); transform: translateY(-50%) scale(1.08); }
.lightbox-prev { left: 1.25rem; }
.lightbox-next { right: 1.25rem; }


/* =============================================
   COOKIE BANNER
   ============================================= */

.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 400;
  background: var(--near-black);
  border-top: 2px solid var(--blue);
  padding: 1.1rem 0;
  animation: cookie-in 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes cookie-in {
  from { opacity: 0; transform: translateY(100%); }
  to   { opacity: 1; transform: translateY(0); }
}

.cookie-inner {
  max-width: var(--max-w-wide);
  margin: 0 auto;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cookie-text {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.55;
  flex: 1;
}

.cookie-text strong {
  color: white;
  font-weight: 600;
}

.cookie-btn {
  background: var(--blue);
  color: white;
  border: none;
  padding: 0.6rem 1.5rem;
  border-radius: 980px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  font-family: var(--font);
  transition: background 0.2s;
  flex-shrink: 0;
}

.cookie-btn:hover { background: var(--blue-hover); }

@media (max-width: 768px) {
  .cookie-bar { padding-bottom: calc(1.1rem + 56px); } /* nad mobilnym paskiem */
  .cookie-inner { flex-direction: column; align-items: flex-start; gap: 0.9rem; }
  .cookie-btn { align-self: stretch; text-align: center; }
}


/* =============================================
   ANIMACJE SCROLL
   ============================================= */

.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.85s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }
.delay-4 { transition-delay: 0.32s; }


/* =============================================
   RESPONSYWNOŚĆ
   ============================================= */

@media (max-width: 1100px) {
  .stats-grid     { grid-template-columns: repeat(2, 1fr); }
  .certs-grid     { grid-template-columns: repeat(2, 1fr); }
}

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

  .hero    { padding: calc(var(--nav-h) + 3rem) 22px 5rem; min-height: 100svh; }

  .stats-section, .statement-section, .services-section, .why-section,
  .certs-section, .pricing-section, .gallery-section, .testimonials-section,
  .area-section, .faq-section, .contact-section { padding: 64px 0; }

  .services-grid      { grid-template-columns: 1fr; }
  .why-grid           { grid-template-columns: 1fr; gap: 2.5rem; }
  .testimonials-grid  { grid-template-columns: 1fr; }
  .area-grid          { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid       { grid-template-columns: 1fr; gap: 3rem; }
  .form-row           { grid-template-columns: 1fr; }
  .gallery-grid       { grid-template-columns: repeat(2, 1fr); }

  .mobile-call-bar { display: block; }
  body { padding-bottom: 56px; }

  .footer-inner { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
}

@media (max-width: 520px) {
  .hero-ctas { flex-direction: column; width: 100%; }
  .cta-fill, .cta-outline { width: 100%; justify-content: center; }
  .gallery-grid  { grid-template-columns: repeat(2, 1fr); }
  .stats-grid    { grid-template-columns: 1fr 1fr; }
  .certs-grid    { grid-template-columns: 1fr 1fr; }
  .area-list     { grid-template-columns: 1fr; }
}
