/*
Theme Name: Wential Modern
Theme URI: https://wential.pl
Author: Wential
Author URI: https://wential.pl
Description: Nowoczesny motyw dla firmy Wential — klimatyzacja, wentylacja, pompy ciepła. Ciemny, premium design z karuzelami zdjęć.
Version: 1.0.0
Requires at least: 5.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: wential
Tags: business, one-page, modern, dark, hvac
*/

:root {
  --navy: #0a1628;
  --navy-mid: #112040;
  --ice: #e8f4fd;
  --blue: #1a6ef5;
  --cyan: #00c8e0;
  --white: #ffffff;
  --gray: #7a8a9a;
  --light: #f0f5fa;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
}

/* ── NAVBAR ── */
.site-nav {
  position: fixed; top: 35px; left: 0; width: 100%; z-index: 100;
  padding: 20px 5%;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(10,22,40,0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  animation: fadeDown .6s ease both;
}

.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo img { height: 38px; width: auto; display: block; }

.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-size: .85rem; font-weight: 500; letter-spacing: .06em;
  color: rgba(255,255,255,.65); text-decoration: none;
  text-transform: uppercase; transition: color .25s;
}
.nav-links a:hover { color: var(--cyan); }

.nav-cta {
  background: var(--blue); color: var(--white);
  border: none; padding: 10px 22px; border-radius: 6px;
  font-family: 'DM Sans', sans-serif; font-size: .85rem; font-weight: 500;
  cursor: pointer; text-decoration: none;
  transition: background .25s, transform .2s;
}
.nav-cta:hover { background: var(--cyan); color: var(--navy); transform: translateY(-1px); }

/* mobile burger */
.nav-burger { display: none; background: none; border: none; color: var(--white); font-size: 1.4rem; cursor: pointer; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 150px 5% 80px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -20%; left: -10%;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(26,110,245,.25) 0%, transparent 70%);
  animation: drift 12s ease-in-out infinite alternate;
}
.hero::after {
  content: '';
  position: absolute; bottom: -15%; right: -5%;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,200,224,.18) 0%, transparent 70%);
  animation: drift 16s ease-in-out infinite alternate-reverse;
}

.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  max-width: 1200px; margin: 0 auto; width: 100%;
  position: relative; z-index: 2;
}

.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,200,224,.1); border: 1px solid rgba(0,200,224,.3);
  padding: 6px 14px; border-radius: 20px;
  font-size: .78rem; font-weight: 500; color: var(--cyan);
  letter-spacing: .08em; text-transform: uppercase; margin-bottom: 24px;
}
.hero-tag::before { content: ''; width: 6px; height: 6px; background: var(--cyan); border-radius: 50%; }

.hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 800; line-height: 1.08;
  margin-bottom: 24px;
  animation: fadeUp .8s .2s ease both;
}
.hero h1 em { font-style: normal; color: var(--cyan); }

.hero-sub {
  font-size: 1rem; color: rgba(255,255,255,.6); line-height: 1.7;
  max-width: 460px; margin-bottom: 40px;
  animation: fadeUp .8s .35s ease both;
}

.hero-btns { display: flex; gap: 16px; animation: fadeUp .8s .5s ease both; }

.btn-primary {
  background: var(--blue); color: var(--white);
  padding: 14px 32px; border-radius: 8px; font-size: .95rem; font-weight: 500;
  text-decoration: none; transition: all .25s;
  box-shadow: 0 6px 24px rgba(26,110,245,.35);
  display: inline-block;
}
.btn-primary:hover { background: #0f5edf; transform: translateY(-2px); box-shadow: 0 10px 30px rgba(26,110,245,.45); color: var(--white); }

.btn-outline {
  border: 1px solid rgba(255,255,255,.2); color: var(--white);
  padding: 14px 32px; border-radius: 8px; font-size: .95rem; font-weight: 500;
  text-decoration: none; transition: all .25s;
  display: inline-block;
}
.btn-outline:hover { border-color: var(--cyan); color: var(--cyan); }

.hero-badge {
  display: inline-flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  padding: 14px 20px; border-radius: 12px; margin-top: 40px;
  animation: fadeUp .8s .65s ease both;
}
.stars { color: #fbbf24; font-size: 1rem; letter-spacing: 2px; }
.badge-text { font-size: .82rem; color: rgba(255,255,255,.7); line-height: 1.4; }
.badge-text strong { color: var(--white); font-size: 1rem; }

.hero-visual {
  position: relative; display: grid;
  grid-template-columns: 1fr 1fr; gap: 12px;
  animation: fadeUp .9s .4s ease both;
}
.hero-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px; padding: 24px; text-align: center;
  transition: transform .3s, border-color .3s;
}
.hero-card:hover { transform: translateY(-5px); border-color: rgba(0,200,224,.35); }
.hero-card .icon { /* styles moved to SVG icons section below */ }
.hero-card h3 { font-family: 'Syne', sans-serif; font-size: .9rem; font-weight: 700; margin-bottom: 6px; }
.hero-card p { font-size: .78rem; color: rgba(255,255,255,.5); line-height: 1.5; }

/* ── SECTIONS ── */
section { padding: 100px 5%; }
.section-label {
  font-size: .75rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 16px;
}
.section-title {
  font-family: 'Syne', sans-serif; font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800; line-height: 1.15; max-width: 560px;
}
.section-title em { font-style: normal; color: var(--cyan); }
.section-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 60px; flex-wrap: wrap; gap: 20px; }
.section-desc { max-width: 380px; color: rgba(255,255,255,.6); font-size: .95rem; line-height: 1.7; }

/* ── SERVICES ── */
.services-bg { background: var(--navy-mid); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }

.service-item {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  padding: 40px 32px;
  transition: all .3s;
  position: relative; overflow: hidden;
}
.service-item::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 3px; height: 0; background: var(--cyan);
  transition: height .4s;
}
.service-item:hover::before { height: 100%; }
.service-item:hover { background: rgba(0,200,224,.05); border-color: rgba(0,200,224,.2); }

.service-num {
  font-family: 'Syne', sans-serif; font-size: 3rem; font-weight: 800;
  color: rgba(255,255,255,.06); margin-bottom: 20px; line-height: 1;
}
.service-icon { /* styles moved to SVG icons section below */ }
.service-item h3 {
  font-family: 'Syne', sans-serif; font-size: 1.1rem; font-weight: 700;
  margin-bottom: 12px;
}
.service-item p { font-size: .88rem; color: rgba(255,255,255,.55); line-height: 1.7; }
.service-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 18px; }
.tag {
  font-size: .72rem; padding: 3px 10px; border-radius: 20px;
  background: rgba(255,255,255,.07); color: rgba(255,255,255,.6);
  border: 1px solid rgba(255,255,255,.1);
}

/* ── CAROUSEL ── */
.carousel-wrap {
  position: relative; margin-bottom: 20px;
  border-radius: 10px; overflow: hidden;
  background: rgba(0,0,0,.3);
}
.carousel-track {
  display: flex; transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.carousel-track img {
  min-width: 100%; width: 100%; height: 190px;
  object-fit: cover; display: block;
  flex-shrink: 0;
}
.carousel-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(10,22,40,.75); backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,.15); color: var(--white);
  width: 32px; height: 32px; border-radius: 50%;
  cursor: pointer; font-size: .85rem;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, border-color .2s; z-index: 2;
}
.carousel-btn:hover { background: var(--blue); border-color: var(--blue); }
.carousel-btn.prev { left: 8px; }
.carousel-btn.next { right: 8px; }
.carousel-dots {
  position: absolute; bottom: 8px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 5px;
}
.carousel-dots span {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,.35); cursor: pointer;
  transition: background .2s, transform .2s;
}
.carousel-dots span.active { background: var(--cyan); transform: scale(1.3); }

/* ── REVIEWS ── */
.reviews-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px;
}
.review-card {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07);
  border-radius: 16px; padding: 28px; transition: all .3s;
}
.review-card:hover { border-color: rgba(0,200,224,.25); transform: translateY(-4px); }
.review-stars { color: #fbbf24; font-size: .85rem; margin-bottom: 16px; }
.review-text { font-size: .9rem; color: rgba(255,255,255,.7); line-height: 1.75; margin-bottom: 20px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .9rem; color: var(--white);
  flex-shrink: 0;
}
.review-name { font-weight: 600; font-size: .9rem; }
.review-date { font-size: .78rem; color: rgba(255,255,255,.4); }

/* ── STATS ── */
.stats-section { background: var(--blue); padding: 0; }
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  max-width: 900px; margin: 0 auto; text-align: center;
}
.stat-item { padding: 40px 20px; border-right: 1px solid rgba(255,255,255,.15); }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: 'Syne', sans-serif; font-size: 3rem; font-weight: 800; line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: .85rem; opacity: .8; }

/* ── BRANDS ── */
.brands-strip {
  background: rgba(255,255,255,.03);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 30px 5%;
  display: flex; align-items: center; justify-content: center;
  gap: 60px; flex-wrap: wrap;
}
.brand-name {
  font-family: 'Syne', sans-serif; font-size: 1rem; font-weight: 700;
  color: rgba(255,255,255,.3); letter-spacing: .1em; text-transform: uppercase;
  transition: color .25s;
}
.brand-name:hover { color: rgba(255,255,255,.7); }

/* ── KALKULATOR OFERTOWY ── */
.calculator-section { background: var(--navy); padding: 100px 5%; }

.calculator-wrap {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.calculator-form {}

.calc-group {
  margin-bottom: 32px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  padding: 24px;
}

.calc-group-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  margin: 0 0 16px;
  display: flex; align-items: center; gap: 8px;
}
.calc-group-title::before {
  content: '';
  display: inline-block;
  width: 4px; height: 18px;
  background: var(--cyan);
  border-radius: 2px;
}

/* Radio / checkbox option row */
.calc-option {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  cursor: pointer;
  transition: background .2s;
  position: relative;
}
.calc-option:hover { background: rgba(255,255,255,.05); }
.calc-option.selected { background: rgba(26,110,245,.12); }

.calc-option input[type="radio"],
.calc-option input[type="checkbox"] {
  appearance: none; -webkit-appearance: none;
  min-width: 20px; height: 20px;
  border: 2px solid rgba(255,255,255,.3);
  border-radius: 50%;
  margin-top: 2px;
  position: relative;
  cursor: pointer;
  transition: border-color .2s, background .2s;
}
.calc-option input[type="checkbox"] { border-radius: 5px; }

.calc-option input[type="radio"]:checked,
.calc-option input[type="checkbox"]:checked {
  border-color: var(--blue);
  background: var(--blue);
}
.calc-option input[type="radio"]:checked::after {
  content: '';
  position: absolute;
  top: 4px; left: 4px;
  width: 8px; height: 8px;
  background: var(--white);
  border-radius: 50%;
}
.calc-option input[type="checkbox"]:checked::after {
  content: '✓';
  position: absolute;
  top: -1px; left: 3px;
  font-size: 13px;
  color: var(--white);
  font-weight: 700;
}

.calc-option-info {
  flex: 1;
}
.calc-option-label {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: .92rem;
  color: var(--white);
}
.calc-option-desc {
  font-size: .78rem;
  color: rgba(255,255,255,.5);
  margin-top: 2px;
}
.calc-option-price {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: .9rem;
  color: var(--cyan);
  white-space: nowrap;
  min-width: 80px;
  text-align: right;
  margin-top: 2px;
}
.calc-option-price.negative { color: #4caf50; }

/* Number input row */
.calc-number-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 10px;
}
.calc-number-row:hover { background: rgba(255,255,255,.05); }

.calc-number-row .calc-option-info { flex: 1; }

.calc-number-input {
  display: flex; align-items: center; gap: 0;
}
.calc-number-input button {
  width: 34px; height: 34px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  color: var(--white);
  font-size: 1.1rem;
  cursor: pointer;
  transition: background .2s;
  font-family: 'Syne', sans-serif;
}
.calc-number-input button:first-child { border-radius: 8px 0 0 8px; }
.calc-number-input button:last-child { border-radius: 0 8px 8px 0; }
.calc-number-input button:hover { background: rgba(255,255,255,.2); }

.calc-number-input input[type="number"] {
  width: 50px; height: 34px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.15);
  border-left: 0; border-right: 0;
  color: var(--white);
  text-align: center;
  font-family: 'Syne', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  -moz-appearance: textfield;
}
.calc-number-input input::-webkit-inner-spin-button,
.calc-number-input input::-webkit-outer-spin-button { -webkit-appearance: none; }

/* Summary sidebar */
.calculator-summary {}

.calc-summary-sticky {
  position: sticky;
  top: 100px;
  background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px;
  padding: 28px;
}

.calc-summary-label {
  font-family: 'DM Sans', sans-serif;
  font-size: .82rem;
  font-weight: 500;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin: 0 0 6px;
}

.calc-summary-total {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 2.4rem;
  color: var(--cyan);
  margin-bottom: 20px;
  line-height: 1.1;
}

.calc-summary-items {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  max-height: 320px;
  overflow-y: auto;
}
.calc-summary-items::-webkit-scrollbar { width: 4px; }
.calc-summary-items::-webkit-scrollbar-thumb { background: rgba(255,255,255,.15); border-radius: 2px; }

.calc-summary-items li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  font-size: .82rem;
  color: rgba(255,255,255,.75);
}
.calc-summary-items li span:last-child {
  font-weight: 600;
  color: var(--white);
  white-space: nowrap;
}

.calc-cta {
  display: block;
  text-align: center;
  margin-bottom: 16px;
  width: 100%;
  box-sizing: border-box;
}

.calc-disclaimer {
  font-size: .72rem;
  color: rgba(255,255,255,.4);
  line-height: 1.5;
  padding: 12px;
  background: rgba(255,255,255,.03);
  border-radius: 8px;
  border-left: 3px solid rgba(0,200,224,.3);
}
.calc-disclaimer strong { color: rgba(255,255,255,.6); }

.calc-loading {
  text-align: center;
  padding: 40px;
  color: rgba(255,255,255,.4);
  font-size: .9rem;
}

.calc-vat-toggle {
  margin-bottom: 14px;
  padding: 10px 12px;
  background: rgba(255,255,255,.04);
  border-radius: 8px;
}
.calc-vat-label {
  display: flex; align-items: center; gap: 10px;
  cursor: pointer; font-size: .8rem; color: rgba(255,255,255,.65);
}
.calc-vat-label input[type="checkbox"] { display: none; }
.calc-vat-switch {
  position: relative; flex-shrink: 0;
  width: 36px; height: 20px;
  background: rgba(255,255,255,.15);
  border-radius: 10px;
  transition: background .25s;
}
.calc-vat-switch::after {
  content: ''; position: absolute;
  top: 3px; left: 3px;
  width: 14px; height: 14px;
  background: var(--white);
  border-radius: 50%;
  transition: transform .25s;
}
.calc-vat-label input:checked ~ .calc-vat-switch { background: var(--blue); }
.calc-vat-label input:checked ~ .calc-vat-switch::after { transform: translateX(16px); }
.calc-vat-text em { color: rgba(255,255,255,.4); font-style: normal; }
.calc-summary-vat-note {
  font-size: .72rem; color: rgba(0,200,224,.7);
  margin-bottom: 10px; display: none;
}
.calc-summary-vat-note.visible { display: block; }

/* Calculator responsive */
@media (max-width: 900px) {
  .calculator-wrap {
    grid-template-columns: 1fr;
    display: flex;
    flex-direction: column;
  }
  .calculator-form { order: 1; }
  .calculator-summary { order: 2; }

  .calc-summary-sticky {
    position: static;
    border-radius: 14px;
    padding: 24px;
    margin-top: 8px;
  }
  .calc-summary-total { font-size: 1.8rem; margin-bottom: 16px; }
  .calc-summary-items { max-height: none; margin-bottom: 16px; }
  .calc-disclaimer { font-size: .72rem; }
  .calculator-section { padding-bottom: 80px; }

  /* Show mobile mini-bar — controlled by JS IntersectionObserver */
  .calc-mini-bar.visible {
    display: flex;
  }
}

/* Mini sticky bar — price + CTA at bottom (hidden on desktop) */
.calc-mini-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  background: rgba(10,22,40,.97);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(0,200,224,.25);
  padding: 10px 20px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 -4px 24px rgba(0,0,0,.5);
}
.calc-mini-total {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--cyan);
  white-space: nowrap;
}
.calc-mini-label {
  font-size: .68rem;
  color: rgba(255,255,255,.45);
  display: block;
  line-height: 1;
  margin-bottom: 2px;
}
.calc-mini-cta {
  background: var(--blue);
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 10px 16px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: .8rem;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  transition: background .2s;
}
.calc-mini-cta:hover { background: #1560d8; }

@media (max-width: 900px) {
  body.calc-active { padding-bottom: 62px; }
}

/* ── CONTACT ── */
.contact-section { background: var(--navy-mid); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; max-width: 1100px; margin: 0 auto; }

.contact-info h2 { font-family: 'Syne', sans-serif; font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800; margin-bottom: 20px; line-height: 1.15; }
.contact-info h2 em { font-style: normal; color: var(--cyan); }
.contact-info p { color: rgba(255,255,255,.6); margin-bottom: 40px; line-height: 1.7; }

.contact-items { display: flex; flex-direction: column; gap: 20px; }
.contact-item {
  display: flex; align-items: center; gap: 16px;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07);
  border-radius: 12px; padding: 18px 20px;
  text-decoration: none; color: var(--white);
  transition: all .25s;
}
.contact-item:hover { border-color: rgba(0,200,224,.3); background: rgba(0,200,224,.06); color: var(--white); }
.contact-item-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(26,110,245,.2); display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.contact-item-text label { font-size: .75rem; color: rgba(255,255,255,.45); display: block; margin-bottom: 2px; }
.contact-item-text span { font-size: .95rem; font-weight: 500; }

.contact-map { border-radius: 16px; overflow: hidden; border: 1px solid rgba(255,255,255,.08); }
.contact-map iframe { width: 100%; height: 380px; display: block; filter: grayscale(40%) invert(90%) contrast(80%); }

/* ── AREAS ── */
.areas-section { background: var(--navy); padding: 80px 5%; }
.areas-title { font-family: 'Syne', sans-serif; font-size: 1.2rem; font-weight: 700; color: rgba(255,255,255,.4); text-align: center; margin-bottom: 30px; text-transform: uppercase; letter-spacing: .1em; }
.areas-list { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; max-width: 700px; margin: 0 auto; }
.area-pill { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.65); padding: 8px 18px; border-radius: 30px; font-size: .85rem; text-decoration: none; transition: all .2s; }
.area-pill:hover { background: rgba(0,200,224,.1); border-color: rgba(0,200,224,.3); color: var(--white); }

/* ── FOOTER ── */
.site-footer { border-top: 1px solid rgba(255,255,255,.07); padding: 40px 5%; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.footer-logo img { height: 32px; width: auto; display: block; }
.site-footer p { font-size: .8rem; color: rgba(255,255,255,.35); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: .82rem; color: rgba(255,255,255,.45); text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: var(--cyan); }

/* ── ANIMATIONS ── */
@keyframes fadeDown { from { opacity: 0; transform: translateY(-16px); } to { opacity: 1; transform: none; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(40px, 30px) scale(1.1); }
}

.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s, transform .7s; }
.reveal.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-grid, .contact-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-links {
    display: none; flex-direction: column; gap: 16px;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(10,22,40,.97); padding: 30px 5%;
    border-bottom: 1px solid rgba(255,255,255,.06);
  }
  .nav-links.open { display: flex; }
  .nav-burger { display: block; }
  .nav-cta { padding: 8px 16px; font-size: .8rem; }
}
@media (max-width: 500px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-btns { flex-direction: column; }
}

/* ── REALIZACJE (Portfolio) ── */
.realizacje-section { background: var(--navy-mid); padding: 100px 5%; }

.realizacje-filters {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 10px; margin-bottom: 50px;
}
.filter-btn {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.7);
  padding: 8px 22px;
  border-radius: 30px;
  font-family: 'DM Sans', sans-serif;
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .04em;
  cursor: pointer;
  transition: all .25s;
}
.filter-btn:hover { color: var(--white); border-color: rgba(0,200,224,.4); }
.filter-btn.active {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

.realizacje-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1300px;
  margin: 0 auto;
}

.realizacja-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  background: #000;
  aspect-ratio: 4 / 3;
  transition: opacity .4s, transform .4s;
}
.realizacja-card.hidden {
  display: none;
}
.realizacja-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s cubic-bezier(.4,0,.2,1), filter .4s;
}
.realizacja-card:hover img {
  transform: scale(1.08);
  filter: brightness(.7);
}

.realizacja-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,.95) 0%, rgba(10,22,40,.5) 50%, transparent 100%);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0;
  transition: opacity .35s;
}
.realizacja-card:hover .realizacja-overlay { opacity: 1; }

.realizacja-brand {
  display: inline-block;
  background: var(--cyan);
  color: var(--navy);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  align-self: flex-start;
  margin-bottom: 10px;
}
.realizacja-room {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 4px;
}
.realizacja-desc { font-size: .82rem; color: rgba(255,255,255,.75); }

.realizacja-icon-expand {
  position: absolute;
  top: 14px; right: 14px;
  width: 36px; height: 36px;
  background: rgba(10,22,40,.7);
  backdrop-filter: blur(4px);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1rem;
  opacity: 0;
  transition: opacity .25s, transform .25s;
  transform: scale(.7);
}
.realizacja-card:hover .realizacja-icon-expand { opacity: 1; transform: scale(1); }

@media (max-width: 900px) {
  .realizacje-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .realizacje-grid { grid-template-columns: 1fr; gap: 12px; }
  .filter-btn { padding: 6px 14px; font-size: .78rem; }
}

/* ── CERTYFIKATY ── */
.certs-section { background: var(--navy); padding: 100px 5%; }
.certs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 18px;
  max-width: 1200px;
  margin: 0 auto;
}
.cert-card {
  position: relative;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  padding: 14px;
  cursor: pointer;
  transition: all .3s;
  overflow: hidden;
}
.cert-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,200,224,.35);
  background: rgba(0,200,224,.06);
}
.cert-thumb {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 12px;
  display: flex; align-items: center; justify-content: center;
}
.cert-thumb img {
  width: 100%; height: 100%; object-fit: contain; display: block;
}
.cert-brand {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  color: var(--white);
  margin-bottom: 2px;
}
.cert-scope { font-size: .78rem; color: rgba(255,255,255,.6); margin-bottom: 6px; }
.cert-valid {
  display: inline-block;
  font-size: .7rem;
  padding: 2px 8px;
  border-radius: 12px;
  background: rgba(0,200,224,.12);
  color: var(--cyan);
  border: 1px solid rgba(0,200,224,.25);
}
.cert-expand-icon {
  position: absolute;
  top: 18px; right: 18px;
  width: 26px; height: 26px;
  background: rgba(10,22,40,.7);
  backdrop-filter: blur(4px);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: .8rem;
  opacity: 0;
  transition: opacity .25s;
  pointer-events: none;
}
.cert-card:hover .cert-expand-icon { opacity: 1; }

/* ── LIGHTBOX ── */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(5,12,24,.94);
  backdrop-filter: blur(10px);
  z-index: 1000;
  display: none;
  align-items: center; justify-content: center;
  padding: 40px;
  animation: fadeIn .3s ease;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0,0,0,.6);
}
.lightbox-close {
  position: absolute;
  top: 24px; right: 24px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: var(--white);
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.lightbox-close:hover { background: rgba(255,255,255,.2); }
.lightbox-nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  color: var(--white);
  width: 52px; height: 52px;
  border-radius: 50%;
  font-size: 1.6rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.lightbox-nav:hover { background: var(--blue); border-color: var(--blue); }
.lightbox-nav.prev { left: 24px; }
.lightbox-nav.next { right: 24px; }
.lightbox-caption {
  position: absolute;
  bottom: 24px; left: 50%;
  transform: translateX(-50%);
  background: rgba(10,22,40,.85);
  padding: 10px 20px;
  border-radius: 8px;
  font-size: .9rem;
  color: rgba(255,255,255,.85);
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

@media (max-width: 600px) {
  .certs-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .lightbox-nav { width: 40px; height: 40px; font-size: 1.2rem; }
  .lightbox-nav.prev { left: 8px; }
  .lightbox-nav.next { right: 8px; }
}

/* WordPress core compatibility */
.alignwide { max-width: 100%; }
.alignfull { max-width: 100%; margin-left: 0; margin-right: 0; }
.wp-block-image img { max-width: 100%; height: auto; }
.screen-reader-text { position: absolute !important; clip: rect(1px,1px,1px,1px); width: 1px; height: 1px; overflow: hidden; }

/* ── ACCESSIBILITY / SEO ── */
.skip-link {
  position: absolute;
  top: -100px; left: 20px;
  background: var(--blue); color: var(--white);
  padding: 8px 16px; border-radius: 0 0 6px 6px;
  font-size: .85rem; font-weight: 600; z-index: 9999;
  transition: top .2s;
}
.skip-link:focus { top: 0; }
.screen-reader-text {
  clip: rect(1px,1px,1px,1px);
  clip-path: inset(50%);
  height: 1px; width: 1px;
  margin: -1px; overflow: hidden;
  position: absolute; word-wrap: normal;
}

/* ── BANER COOKIES ── */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: rgba(10,22,40,.97);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(0,200,224,.25);
  transform: translateY(100%);
  transition: transform .4s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 -8px 40px rgba(0,0,0,.5);
}
#cookie-banner.visible { transform: translateY(0); }

.cookie-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 20px 5%;
  display: flex; align-items: center; gap: 32px;
  flex-wrap: wrap;
}
.cookie-text { flex: 1; min-width: 260px; }
.cookie-text strong {
  display: block; font-family: 'Syne', sans-serif;
  font-size: 1rem; color: var(--white); margin-bottom: 6px;
}
.cookie-text p { font-size: .82rem; color: rgba(255,255,255,.6); margin: 0; line-height: 1.5; }
.cookie-text a { color: var(--cyan); text-decoration: underline; }

.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btn-accept {
  background: var(--blue); color: var(--white);
  border: none; border-radius: 8px;
  padding: 10px 22px; font-family: 'Syne', sans-serif;
  font-weight: 700; font-size: .85rem; cursor: pointer;
  transition: background .2s;
}
.cookie-btn-accept:hover { background: #1560d8; }
.cookie-btn-reject {
  background: transparent; color: rgba(255,255,255,.6);
  border: 1px solid rgba(255,255,255,.2); border-radius: 8px;
  padding: 10px 22px; font-family: 'DM Sans', sans-serif;
  font-size: .85rem; cursor: pointer; transition: all .2s;
}
.cookie-btn-reject:hover { border-color: rgba(255,255,255,.5); color: var(--white); }

@media (max-width: 600px) {
  .cookie-inner { gap: 16px; }
  .cookie-actions { width: 100%; }
  .cookie-btn-accept, .cookie-btn-reject { flex: 1; text-align: center; }
}

/* ── STRONY PRAWNE (Regulamin / Polityka Prywatności) ── */
.legal-page {
  background: var(--navy);
  min-height: 100vh;
  padding: 120px 5% 80px;
}
.legal-wrap {
  max-width: 820px;
  margin: 0 auto;
  color: rgba(255,255,255,.82);
  font-family: 'DM Sans', sans-serif;
  line-height: 1.8;
  font-size: .95rem;
}
.legal-wrap h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}
.legal-updated {
  font-size: .8rem;
  color: rgba(255,255,255,.35);
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.legal-wrap h2 {
  font-family: 'Syne', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--cyan);
  margin: 40px 0 12px;
  padding-left: 12px;
  border-left: 3px solid var(--cyan);
}
.legal-wrap p { margin-bottom: 14px; }
.legal-wrap ul, .legal-wrap ol {
  margin: 0 0 16px 24px;
}
.legal-wrap li { margin-bottom: 8px; }
.legal-wrap a { color: var(--cyan); text-decoration: underline; }
.legal-wrap a:hover { color: var(--white); }
.legal-wrap code {
  background: rgba(255,255,255,.08);
  padding: 2px 7px;
  border-radius: 4px;
  font-size: .85em;
  font-family: monospace;
}
.legal-wrap strong { color: var(--white); }
.legal-back {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.legal-back a {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: .9rem;
}

/* ── SVG SERVICE ICONS ── */
.service-icon {
  width: 52px; height: 52px;
  background: rgba(0,200,224,.08);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 4px;
  font-size: 0;
}
.service-icon svg {
  width: 32px; height: 32px;
  color: var(--cyan);
  display: block;
}
.hero-card .icon {
  width: 44px; height: 44px;
  background: rgba(0,200,224,.1);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 10px;
  font-size: 0; line-height: 0;
}
.hero-card .icon svg {
  width: 26px; height: 26px;
  color: var(--cyan);
  display: block;
}

/* ── AREA PILLS MOBILE ── */
@media (max-width: 700px) {
  .area-secondary { display: none; }
}

/* ══════════════════════════════════════════════
   MOBILE COMPACT: Accordion + Swipe Carousels
   ══════════════════════════════════════════════ */

/* ── ACCORDION: Desktop — hidden header, body always visible ── */
.service-accordion-header { display: none; }
.service-accordion-body { display: block; }

/* ── ACCORDION: Mobile — visible header, collapsible body ── */
@media (max-width: 900px) {
  .services-grid {
    display: flex !important;
    flex-direction: column;
    gap: 0;
  }
  .service-item[data-accordion] {
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 14px;
    margin-bottom: 10px;
    overflow: hidden;
    background: rgba(255,255,255,.02);
  }
  .service-accordion-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    cursor: pointer;
    transition: background .2s;
    -webkit-tap-highlight-color: transparent;
  }
  .service-accordion-header:active { background: rgba(255,255,255,.05); }
  .service-accordion-header .service-icon {
    width: 44px; height: 44px;
    min-width: 44px;
    border-radius: 12px;
    margin-bottom: 0;
  }
  .service-accordion-header .service-icon svg { width: 26px; height: 26px; }
  .service-accordion-title { flex: 1; }
  .service-accordion-title h3 {
    margin: 0; font-size: .95rem;
    color: var(--white);
  }
  .service-accordion-tags {
    font-size: .72rem;
    color: rgba(255,255,255,.4);
    display: block;
    margin-top: 2px;
  }
  .accordion-chevron {
    font-size: 1.4rem;
    color: rgba(255,255,255,.3);
    transition: transform .3s;
    font-weight: 300;
  }
  .service-item.accordion-open .accordion-chevron {
    transform: rotate(90deg);
    color: var(--cyan);
  }
  .service-accordion-body {
    display: none;
    padding: 0 18px 18px;
  }
  .service-item.accordion-open .service-accordion-body {
    display: block;
  }
  /* Hide duplicate elements inside body on mobile */
  .service-accordion-body .service-num { display: none; }
}

/* ── SWIPE CAROUSELS: Reviews ── */
@media (max-width: 900px) {
  .reviews-grid {
    display: flex !important;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    align-items: stretch;
    gap: 10px;
    padding: 0 5% 12px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .reviews-grid::-webkit-scrollbar { display: none; }
  .review-card {
    flex: 0 0 80vw;
    width: 80vw;
    max-width: 80vw;
    box-sizing: border-box;
    scroll-snap-align: start;
    padding: 16px;
    display: flex;
    flex-direction: column;
  }
  .review-stars { font-size: .78rem !important; margin-bottom: 8px !important; }
  .review-text {
    font-size: .82rem !important;
    line-height: 1.6 !important;
    margin-bottom: 14px !important;
    white-space: normal !important;
    overflow-wrap: break-word;
    word-break: break-word;
    flex: 1;
  }
  .review-author { gap: 10px; margin-top: auto; }
  .review-avatar { width: 30px !important; height: 30px !important; font-size: .72rem !important; }
  .review-name { font-size: .82rem !important; }
  .review-date { font-size: .68rem !important; }
}

/* ── MINI TILES: Realizacje (mobile) — 2 rows, swipe horizontal ── */
@media (max-width: 900px) {
  .realizacje-grid {
    display: grid !important;
    grid-template-rows: repeat(2, 1fr);
    grid-auto-flow: column;
    grid-auto-columns: 28vw;
    gap: 5px;
    padding: 0 5% 12px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    max-width: 100%;
  }
  .realizacje-grid::-webkit-scrollbar { display: none; }
  .realizacja-card {
    aspect-ratio: 1;
    border-radius: 6px;
    min-width: 0;
  }
  .realizacja-card.hidden { display: none; }
  .realizacja-overlay { display: none; }
  .realizacja-icon-expand { display: none; }
  .realizacja-card img { border-radius: 6px; }
  .realizacja-card:hover img { transform: none; filter: none; }
  .realizacja-card:active img { filter: brightness(.7); }
}

/* ── SWIPE CAROUSELS: Certyfikaty ── */
@media (max-width: 900px) {
  .certs-grid {
    display: flex !important;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    gap: 10px;
    padding: 0 5% 12px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .certs-grid::-webkit-scrollbar { display: none; }
  .cert-card {
    min-width: 52vw;
    flex-shrink: 0;
    scroll-snap-align: start;
    padding: 10px;
  }
  .cert-thumb { margin-bottom: 8px; }
  .cert-thumb img { border-radius: 8px; max-height: 45vh; object-fit: contain; }
  .cert-brand { font-size: .72rem !important; margin-bottom: 2px !important; }
  .cert-scope { font-size: .7rem !important; }
  .cert-expand-icon { display: none; }
}

/* ── Scroll indicators (dots below carousels) ── */
.swipe-dots {
  display: none;
}
@media (max-width: 900px) {
  .swipe-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    padding: 12px 0 4px;
  }
  .swipe-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,.2);
    transition: background .25s, width .25s;
  }
  .swipe-dot.active {
    background: var(--cyan);
    width: 18px;
    border-radius: 3px;
  }
}

/* ══════════════════════════════════════════════
   TOP BAR (phone) + PROCESS TIMELINE + CTA BANNER
   ══════════════════════════════════════════════ */

/* ── TOP BAR ── */
.top-bar {
  position: fixed;
  top: 0; left: 0; width: 100%;
  z-index: 101;
  box-sizing: border-box;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,.06);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 7px 5%;
  font-size: .82rem;
}
.top-bar-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  letter-spacing: .03em;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  padding: 4px 14px;
  border-radius: 20px;
  transition: border-color .25s;
}
.top-bar-phone:hover { border-color: rgba(0,200,224,.4); }
.top-bar-dot {
  width: 8px; height: 8px;
  background: #2ecc71;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(46,204,113,.5);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 rgba(46,204,113,.5); }
  70% { box-shadow: 0 0 0 6px rgba(46,204,113,0); }
  100% { box-shadow: 0 0 0 0 rgba(46,204,113,0); }
}
.top-bar-sep { color: rgba(255,255,255,.2); }
.top-bar-hours { color: rgba(255,255,255,.45); font-size: .78rem; }
@media (max-width: 600px) {
  .top-bar-sep, .top-bar-hours { display: none; }
  .top-bar { padding: 6px 5%; }
}

/* ── PROCESS TIMELINE ── */
.process-section {
  background: var(--navy);
  padding: 100px 5%;
}
.process-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  max-width: 1300px;
  margin: 0 auto 60px;
}
.process-desc {
  color: rgba(255,255,255,.5);
  font-size: .95rem;
  line-height: 1.7;
  max-width: 440px;
}
.process-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
}
/* Connecting line */
.process-timeline::before {
  content: '';
  position: absolute;
  top: 6px; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, rgba(0,200,224,.4), rgba(255,255,255,.1));
}
.process-step {
  position: relative;
  padding-top: 28px;
}
.process-dot {
  position: absolute;
  top: 0; left: 0;
  width: 13px; height: 13px;
  border-radius: 50%;
  background: var(--navy);
  border: 2px solid var(--cyan);
  z-index: 2;
}
.process-meta {
  font-family: 'Syne', sans-serif;
  font-size: .72rem;
  font-weight: 600;
  color: rgba(255,255,255,.4);
  letter-spacing: .12em;
  margin-bottom: 12px;
}
.process-step-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 8px;
}
.process-step-desc {
  font-size: .85rem;
  color: rgba(255,255,255,.55);
  line-height: 1.6;
  margin: 0;
}

/* Mobile: vertical timeline */
@media (max-width: 900px) {
  .process-section { padding: 70px 5%; }
  .process-header {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 40px;
  }
  .process-timeline {
    grid-template-columns: 1fr;
    gap: 0;
    padding-left: 24px;
  }
  .process-timeline::before {
    top: 0; bottom: 0; left: 6px;
    right: auto;
    width: 1px; height: auto;
    background: linear-gradient(to bottom, rgba(0,200,224,.4), rgba(255,255,255,.08));
  }
  .process-step {
    padding-top: 0;
    padding-bottom: 32px;
    padding-left: 24px;
  }
  .process-step:last-child { padding-bottom: 0; }
  .process-dot { top: 4px; left: -24px; }
}

/* ── CTA BANNER ── */
.cta-banner-section {
  background: var(--navy);
  padding: 20px 5% 90px;
}
.cta-banner {
  max-width: 1200px;
  margin: 0 auto;
  background: linear-gradient(120deg, var(--navy-mid) 0%, #0d1f3d 60%, #1a2f1f 130%);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 22px;
  padding: 44px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  overflow: hidden;
}
.cta-banner::after {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,200,224,.12), transparent 70%);
  pointer-events: none;
}
.cta-banner-text { position: relative; z-index: 1; }
.cta-banner-text h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--white);
  margin: 0 0 8px;
}
.cta-banner-text p {
  color: rgba(255,255,255,.55);
  font-size: .92rem;
  margin: 0;
}
.cta-banner-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.cta-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--blue);
  color: var(--white);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  padding: 14px 24px;
  border-radius: 12px;
  transition: background .2s, transform .2s;
  white-space: nowrap;
}
.cta-btn-primary:hover { background: #1560d8; transform: translateY(-2px); }
.cta-btn-dot {
  width: 8px; height: 8px;
  background: #2ecc71;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
.cta-btn-secondary {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.15);
  color: var(--white);
  font-size: .9rem;
  padding: 14px 22px;
  border-radius: 12px;
  transition: border-color .2s, background .2s;
  white-space: nowrap;
}
.cta-btn-secondary:hover { border-color: rgba(0,200,224,.4); background: rgba(255,255,255,.08); }

@media (max-width: 800px) {
  .cta-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 24px;
    gap: 24px;
  }
  .cta-banner-actions {
    flex-direction: column;
    width: 100%;
  }
  .cta-btn-primary, .cta-btn-secondary {
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
  }
}

/* ── NAV CONTACT DROPDOWN ── */
.nav-contact { position: relative; }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: var(--white);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: .92rem;
  padding: 11px 18px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background .2s;
  white-space: nowrap;
}
.nav-cta:hover { background: #1560d8; }
.nav-cta-dot {
  width: 8px; height: 8px;
  background: #2ecc71;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
.nav-cta-chevron { font-size: .7rem; transition: transform .25s; opacity: .8; }
.nav-contact.open .nav-cta-chevron { transform: rotate(180deg); }

.nav-contact-menu {
  position: absolute;
  top: calc(100% + 10px); right: 0;
  width: 280px;
  background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  padding: 8px;
  box-shadow: 0 16px 48px rgba(0,0,0,.5);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .25s, transform .25s, visibility .25s;
  z-index: 200;
}
.nav-contact.open .nav-contact-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 10px;
  color: var(--white);
  text-decoration: none;
  transition: background .2s;
}
.nav-contact-item:hover { background: rgba(255,255,255,.06); }
.nav-contact-item strong {
  font-family: 'Syne', sans-serif;
  font-size: .9rem;
  font-weight: 700;
}
.nav-contact-item span:last-child {
  font-size: .78rem;
  color: rgba(255,255,255,.55);
  line-height: 1.4;
}
.nav-contact-item strong { color: var(--white); }
.nav-contact-ico {
  width: 40px; height: 40px;
  min-width: 40px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.06);
  border-radius: 10px;
  font-size: 1.1rem;
}
.nav-ico-wa { background: rgba(37,211,102,.15); color: #25d366; }

@media (max-width: 768px) {
  .nav-cta { font-size: .82rem; padding: 9px 12px; }
  .nav-cta-chevron { display: none; }
  .nav-contact-menu { width: 260px; right: -40px; }
}

/* ── PROCESS: point of no return (montaż) ── */
.process-step-lock .process-dot {
  background: var(--cyan);
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px rgba(0,200,224,.15);
}
.process-lock-badge {
  display: inline-block;
  margin-left: 4px;
  font-size: .62rem;
  color: var(--cyan);
  background: rgba(0,200,224,.1);
  padding: 1px 7px;
  border-radius: 10px;
  letter-spacing: .02em;
  vertical-align: middle;
}
@media (max-width: 900px) {
  .process-lock-badge { display: block; margin: 4px 0 0; width: fit-content; }
}
