:root{
  --bg:#0b0f17;
  --text:#e9eefc;
  --muted:#aab6d6;

  --radius:18px;
  --shadow: 0 8px 28px rgba(0,0,0,.35);
  --max:1120px;
  --pad:18px;

  /* jeśli dodasz Inter w <head>, to będzie 1:1 bardziej jak Lovable */
  --font: "Inter", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }
body{
  font-family:var(--font);
  color:var(--text);
  background: radial-gradient(1200px 600px at 20% -10%, #1a2c60 0%, transparent 60%),
              radial-gradient(900px 500px at 95% 10%, #4a1f2b 0%, transparent 60%),
              linear-gradient(180deg, var(--bg) 0%, #070a10 100%);
}

a{ color:inherit; text-decoration:none; }
.container{ width:100%; max-width:var(--max); margin:0 auto; padding:0 var(--pad); }

/* ===== TOPBAR (jak Lovable: logo w kwadracie + tel + CTA) ===== */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: linear-gradient(180deg, rgba(15,23,34,.95), rgba(15,23,34,.80));
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.topbar__inner{
  height: 72px;
  display:flex;
  align-items:center;
  gap: 22px;
}

.topbar__logo{
  width: 42px;
  height: 42px;
  background:#fff;
  border-radius: 12px;
  display:flex;
  align-items:center;
  justify-content:center;
  flex: 0 0 auto;
}

.topbar__logo img{
  width: 22px;
  height: 22px;
  display:block;
}

.topbar__nav{
  display:flex;
  gap: 18px;
  align-items:center;
}

.topbar__nav a{
  color: rgba(255,255,255,.82);
  font-size: 14px;
  padding: 8px 8px;
  border-radius: 10px;
}

.topbar__nav a:hover{
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.92);
}

.topbar__right{
  margin-left:auto;
  display:flex;
  align-items:center;
  gap: 12px;
}

.topbar__phone{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  color: rgba(255,255,255,.88);
  font-size: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
}

.topbar__phone:hover{ background: rgba(255,255,255,.09); }

.topbar__cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  background:#2dd4bf;
  color:#0f172a;
  border: 1px solid rgba(0,0,0,.08);
}

@media (max-width: 820px){
  .topbar__nav{ display:none; }
}

/* ===== HERO (zdjęcie + overlay + panel) ===== */
.hero{
  padding-top: 72px; /* kompensacja fixed topbar */
}

.hero--photo{
  position: relative;
  min-height: 72vh;
  display:flex;
  align-items:center;
  background: url("./assets/hero.jpg") center/cover no-repeat;
}

.hero__overlay{
  position:absolute;
  inset:0;
  background: linear-gradient(90deg,
    rgba(8,12,20,.85) 0%,
    rgba(8,12,20,.55) 45%,
    rgba(8,12,20,.25) 100%);
}

.hero__content{
  position: relative;
  z-index: 2;
  padding: 56px 0;
}

.hero__panel{
  max-width: 680px;
  background: rgba(10,14,22,.55);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  padding: 28px;
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 50px rgba(0,0,0,.35);
}

.hero__title{
  font-size: 44px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
}

.hero__lead{
  margin: 0 0 18px;
  max-width: 58ch;
  color: rgba(255,255,255,.88);
  line-height: 1.6;
}

.hero__ctaRow{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 10px 0 10px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 700;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
  color:#fff;
  cursor:pointer;
  transition: transform .08s ease, background .2s ease, border-color .2s ease;
}
.btn:hover{ transform: translateY(-1px); border-color: rgba(255,255,255,.28); }

.btn--primary{
  background: linear-gradient(180deg, #ff8a2a, #ff6a00);
  color: #1f1306;
  border: none;
  box-shadow:
    0 10px 24px rgba(255,106,0,.35),
    inset 0 1px 0 rgba(255,255,255,.35);
}
.btn--primary:hover{
  transform: translateY(-1px);
  box-shadow:
    0 14px 30px rgba(255,106,0,.45),
    inset 0 1px 0 rgba(255,255,255,.45);
}

.btn--ghost{
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  color:#fff;
}

.hero__proof{
  display:flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 12px;
  font-size: 12px;
  color: rgba(255,255,255,.78);
}

@media (max-width: 820px){
  .hero__title{ font-size: 34px; }
  .hero--photo{ min-height: 64vh; }
}

/* ===== Sekcja 5 kart (białe tło) ===== */
.values{
  padding: 70px 0;
  background: #ffffff;
  color: #0b1220;
}

.values__title{
  font-size: 44px;
  line-height: 1.15;
  margin: 0 0 34px;
  text-align: center;
  letter-spacing: -0.02em;
  font-weight: 800;
}

.values__grid{
  display:grid;
  gap: 22px;
  margin: 0 auto;
}

.values__grid--3{
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1120px;
}

.values__grid--2{
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 760px;
  margin-top: 22px;
}

.valueCard{
  background:#fff;
  border: 1px solid rgba(11,18,32,.10);
  border-radius: 18px;
  padding: 28px 26px 26px;
  box-shadow: 0 8px 30px rgba(11,18,32,.06);
  text-align:center;
}

.valueCard__icon{
  width: 42px;
  height: 42px;
  margin: 0 auto 14px;
  color: #10b5b0;
  display:grid;
  place-items:center;
}

.valueCard__icon svg{ width: 34px; height: 34px; }

.valueCard__headline{
  font-size: 18px;
  margin: 8px 0 10px;
  font-weight: 800;
}

.valueCard__text{
  margin: 0;
  color: rgba(11,18,32,.72);
  line-height: 1.6;
  font-size: 15px;
}

.values__note{
  margin: 34px 0 0;
  text-align:center;
  color: rgba(11,18,32,.78);
  font-weight: 700;
}

@media (max-width: 980px){
  .values__title{ font-size: 34px; }
  .values__grid--3{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .values__grid--2{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 620px){
  .values{ padding: 54px 0; }
  .values__title{ font-size: 28px; }
  .values__grid--3, .values__grid--2{
    grid-template-columns: 1fr;
    max-width: 520px;
  }
}

/* ===== Sekcja „jasność w 3 sprawach” ===== */
.clarity{
  padding: 78px 0;
  background: #eef2f5;
  color: #0b1220;
}

.clarity__title{
  font-size: 44px;
  line-height: 1.15;
  margin: 0 0 34px;
  text-align:center;
  letter-spacing: -0.02em;
  font-weight: 900;
}

.clarity__grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: 1120px;
  margin: 0 auto;
}

.clarityCard{
  background:#fff;
  border: 1px solid rgba(11,18,32,.10);
  border-radius: 22px;
  padding: 26px 26px 24px;
  box-shadow: 0 10px 28px rgba(11,18,32,.08);
}

.clarityCard__icon{
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(16,181,176,.10);
  color:#10b5b0;
  display:grid;
  place-items:center;
  margin-bottom: 18px;
}

.clarityCard__icon svg{ width: 28px; height: 28px; }

.clarityCard__headline{
  font-size: 18px;
  margin: 0 0 10px;
  font-weight: 900;
}

.clarityCard__text{
  margin: 0;
  color: rgba(11,18,32,.70);
  line-height: 1.7;
  font-size: 15px;
}

@media (max-width: 980px){
  .clarity__title{ font-size: 34px; }
  .clarity__grid{ grid-template-columns: 1fr; max-width: 680px; }
}/* ===== PROCESS (timeline jak w Lovable) ===== */

.process {
  padding: 100px 0;
  background: #f4f6f8;
  color: #0b1220;
}

.process__header {
  text-align: center;
  margin-bottom: 64px;
}

.process__header h2 {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.process__timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.process__line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: #cfd8df;
  transform: translateX(-50%);
}

.process__item {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 42px;
}

.process__item.left {
  justify-content: flex-start;
}

.process__item.right {
  justify-content: flex-end;
}

.process__card {
  width: 360px;
  background: #fff;
  border-radius: 14px;
  padding: 18px 20px;
  box-shadow: 0 10px 26px rgba(11,18,32,.08);
}

.process__card h3 {
  font-size: 15px;
  margin: 0 0 6px;
}

.process__card p {
  margin: 0;
  font-size: 14px;
  color: rgba(11,18,32,.7);
  line-height: 1.5;
}

.process__dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #10b5b0;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(16,181,176,.35);
}

.process__footer {
  text-align: center;
  margin-top: 48px;
  font-weight: 600;
  color: rgba(11,18,32,.75);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 820px) {
  .process__line {
    left: 16px;
  }

  .process__item {
    justify-content: flex-start !important;
    padding-left: 48px;
  }

  .process__dot {
    left: 16px;
    transform: none;
  }

  .process__card {
    width: 100%;
  }
}
/* ===== ONE CALL ===== */

.onecall {
  padding: 110px 0;
  background: linear-gradient(
    180deg,
    #14253d 0%,
    #13233a 100%
  );
  color: #ffffff;
}

.onecall__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.onecall__header h2 {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.onecall__header p {
  font-size: 15px;
  color: rgba(255,255,255,.75);
}

.onecall__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  max-width: 860px;
  margin: 0 auto;
}
@media (max-width: 720px) {
  .onecall__grid {
    grid-template-columns: 1fr;
  }
}
.onecall__card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  padding: 22px 24px;
  backdrop-filter: blur(6px);
}
.onecall__icon {
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;

  /* KLUCZ */
  width: 32px;
  height: 32px;
}


.onecall__card h3 {
  font-size: 16px;
  margin: 0 0 6px;
}

.onecall__card--call .onecall__note {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,.72);
}

.onecall__footer {
  margin-top: 42px;
  text-align: center;
  font-weight: 600;
  color: rgba(255,255,255,.85);
}



.onecall__icon svg {
  width: 32px;
  height: 32px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}
/* Rozmowa = ciepły akcent */
.onecall__card--call .onecall__icon {
  color: #ff7a1a;
}

/* Formularz = spokojny akcent */
.onecall__card--form .onecall__icon {
  color: #0ea5a4;
}
.onecall__card--form .onecall__icon {
  margin-left: auto;
  margin-right: auto;
}

/* ============================= */
/* SPECJALNE WYKONANIA – LAYOUT */
/* ============================= */

.custom {
  padding: 90px 0;
  background: #f4f7f9;
  color: #0b1220;
}

.custom__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

.custom__header h2 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 12px;
}

.custom__header p {
  font-size: 16px;
  color: #5b6b84;
}

/* === GRID GŁÓWNY (lewa + prawa kolumna) === */
.custom__layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
  align-items: start;
}

/* === LEWA STRONA: kafle === */
.custom__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

/* pojedynczy kafel */
.customCard {
  background: #ffffff;
  border-radius: 18px;
  padding: 22px 22px 24px;
  box-shadow: 0 12px 28px rgba(11,18,32,.06);
  display: flex;
  gap: 14px;
}

.customCard__icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #e6f7f7;
  color: #12b5b0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.customCard h3 {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 700;
}

.customCard p {
  margin: 0;
  font-size: 14px;
  color: #5b6b84;
  line-height: 1.5;
}

/* === PRAWA STRONA: standard współpracy === */
/* ===== STANDARD WSPÓŁPRACY (PRAWA KOLUMNA) ===== */

.customStandard{
  background:#ffffff;
  border-radius:20px;
  padding:28px 26px;
  box-shadow:0 10px 28px rgba(11,18,32,.08);
  height: fit-content;
}

.customStandard h3{
  margin:0 0 16px;
  font-size:18px;
  font-weight:800;
}

.customStandard ul{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-direction:column;
  gap:14px;
}

.customStandard li{
  position:relative;
  padding-left:28px;
  font-size:15px;
  line-height:1.5;
  color:#334155;
}

/* check icon */
.customStandard li::before{
  content:"";
  position:absolute;
  left:0;
  top:4px;
  width:18px;
  height:18px;
  background:#e6f7f6;
  border-radius:6px;
}

.customStandard li::after{
  content:"";
  position:absolute;
  left:4px;
  top:8px;
  width:10px;
  height:6px;
  border-left:2px solid #10b5b0;
  border-bottom:2px solid #10b5b0;
  transform:rotate(-45deg);
}

/* ===== DOLNA BELKA INFO ===== */

.customNote{
  margin-top:40px;
  background:#eaf6f7;
  border:1px solid #ccecee;
  border-radius:16px;
  padding:20px 24px;
  display:flex;
  align-items:flex-start;
  gap:16px;
}

.customNote__icon{
  width:40px;
  height:40px;
  flex-shrink:0;
  border-radius:12px;
  background:#d6f0f2;
  color:#10b5b0;
  display:flex;
  align-items:center;
  justify-content:center;
}

.customNote__icon svg{
  width:22px;
  height:22px;
}

.customNote__text{
  display:flex;
  flex-direction:column;
  gap:4px;
}

.customNote__text strong{
  font-size:15px;
  font-weight:700;
  color:#0f172a;
}

.customNote__text span{
  font-size:14px;
  color:#475569;
  line-height:1.5;
}


/* === RESPONSIVE === */
@media (max-width: 980px) {
  .custom__layout {
    grid-template-columns: 1fr;
  }

  .custom__cards {
    grid-template-columns: 1fr;
  }

  .custom__note {
    flex-direction: column;
    align-items: flex-start;
  }
}
/* ===== GALERIA REALIZACJI ===== */

/* ===== GALERIA – styl Lovable ===== */

/* ===== GALERIA – styl Lovable (Poprawiona) ===== */

.gallery {
  padding: 60px 16px; /* Nieco większy oddech sekcji */
  background: #f6f8fb;
  text-align: center;
}

.gallery h2 {
  font-size: 32px;
  margin-bottom: 12px;
  color: #0ea5a4;
  font-weight: 800;
}

.gallery p {
  color: #6b7280;
  margin-bottom: 40px;
}

/* viewport - ramka dla zdjęć */
.gallery__viewport {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 24px; /* Mocniejsze zaokrąglenie pod styl Boxario */
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* track - szyna trzymająca zdjęcia obok siebie */
.gallery__track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1); /* Płynniejszy ruch */
}

/* KLUCZOWA POPRAWKA DLA ZDJĘĆ */
.gallery__track img {
  width: 100%;
  min-width: 100%; /* Wymusza, by każde zdjęcie zajmowało cały widok */
  flex: 0 0 100%;
  height: 550px; /* STAŁA WYSOKOŚĆ - zapobiega rozjeżdżaniu się strony */
  object-fit: cover; /* PRZYCINA ZDJĘCIE ZAMIAST JE ZGNIATAĆ */
  display: block;
}

/* Responsywność dla zdjęć na mobile */
@media (max-width: 768px) {
  .gallery__track img {
    height: 350px; /* Niższa galeria na telefonach */
  }
}

/* strzałki */
.gallery__prev,
.gallery__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  box-shadow: 0 10px 30px rgba(0,0,0,.2);
  cursor: pointer;
  font-size: 24px;
  z-index: 10;
  transition: all 0.2s ease;
}

.gallery__prev:hover, .gallery__next:hover {
  background: #ffffff;
  transform: translateY(-50%) scale(1.1);
}

.gallery__prev { left: 20px; }
.gallery__next { right: 20px; }

/* kropki */
.gallery__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.gallery__dots button {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: none;
  background: #d1d5db;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery__dots button.is-active {
  width: 35px; /* Dłuższa kropka dla aktywnego zdjęcia */
  background: #0ea5a4;
}
/* ===== ONECALL – mikro-interakcje (bez nadpisywania) ===== */

.onecall__card{
  transition: transform .25s ease, box-shadow .25s ease;
}

.onecall__card:hover{
  transform: translateY(-4px);
  box-shadow: 0 18px 50px rgba(0,0,0,.35);
}
/* ===== ONECALL – mikro-interakcje (bez nadpisywania) ===== */
/* ===== ONECALL – focus formularza ===== */

.onecall__card--form input,
.onecall__card--form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #dbe3ee;
  background: #ffffff;
  color: #0f172a;
  font-size: 14px;
  font-family: inherit;
}

.onecall__card--form input::placeholder,
.onecall__card--form textarea::placeholder {
  color: #64748b;
}

.onecall__card--form input:focus,
.onecall__card--form textarea:focus {
  outline: none;
  border-color: #0ea5a4;
  box-shadow: 0 0 0 3px rgba(14,165,164,.18);
}



/* ===== CTA – subtelny glow ===== */

.btn--primary{
  position: relative;
}

.btn--primary::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius: inherit;
  box-shadow: 0 0 0 rgba(255,122,26,0);
  transition: box-shadow .25s ease;
}

.btn--primary:hover::after{
  box-shadow: 0 0 18px rgba(255,122,26,.45);
}


/* ===== ONECALL – rytm formularza ===== */

.onecall form{
  display: grid;
  gap: 12px;
}

.onecall__card--form button.btn {

  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  font-weight: 800;
  background: linear-gradient(180deg, #ffffff, #f1f5f9);
  color: #0f172a;
  border: 1px solid rgba(15,23,42,.15);
  box-shadow: 0 6px 14px rgba(15,23,42,.12);
}

.onecall__card--form .btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(15,23,42,.18);
}


.onecall__card:hover .onecall__icon {
  transform: translateY(-1px);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.18),
    0 8px 20px rgba(0,0,0,.35);
}
/* ========================= */
/* ONECALL – karta formularza (Lovable style) */
/* ========================= */

.onecall__card--call {
  background: #ffffff;
  color: #0f172a;
  border-radius: 22px;
  padding: 28px;
  box-shadow:
    0 20px 40px rgba(15,23,42,.12),
    0 2px 6px rgba(15,23,42,.08);
}
.onecall__card--form .onecall__icon {
  background: transparent;
  box-shadow: none;
  color: #0ea5a4;
}
.onecall__card--form {
  position: relative;
}

.onecall__card--form::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(15,23,42,.06);
  pointer-events: none;
}
.onecall__card:not(.onecall__card--form) {
  opacity: .92;
}
.onecall__card--form h3 {
  font-size: 18px;
  font-weight: 800;
}
.onecall__card--call {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; /* TO JEST KLUCZ */
  text-align: center;
}
.onecall__card--call h3 {
  margin-bottom: 18px;
}

.onecall__card--call .btn--primary {
  margin: 0 0 14px; /* przycisk → opis */
  padding: 16px 26px;
  font-size: 16px;
  border-radius: 14px;
}

.onecall__card--call .onecall__note {
  margin: 0;
  font-size: 14px;
  color: #64748b;
  max-width: 34ch;
}
/* Ikona – OPCJA 1 (Rozmowa) */
.onecall__card--call .onecall__icon {
  background: transparent;
  box-shadow: none;
  color: #ff7a1a;
}
/* ========================= */
/* FAQ */
/* ========================= */

.faq {
  padding: 90px 0;
  background: #f6f8fb;
  color: #0b1220;
}

.faq .h2 {
  text-align: center;
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 40px;
}

.faq__item {
  max-width: 820px;
  margin: 0 auto 14px;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 10px 26px rgba(11,18,32,.08);
  overflow: hidden;
}

.faq__item summary {
  cursor: pointer;
  padding: 18px 22px;
  font-size: 16px;
  font-weight: 700;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

/* strzałka */
.faq__item summary::after {
  content: "›";
  font-size: 22px;
  transform: rotate(90deg);
  transition: transform .25s ease;
  color: #0ea5a4;
}

.faq__item[open] summary::after {
  transform: rotate(-90deg);
}

.faq__item p {
  padding: 0 22px 20px;
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: #475569;
}

/* hover */
.faq__item summary:hover {
  background: #f1f5f9;
}

/* mobile */
@media (max-width: 720px) {
  .faq {
    padding: 64px 0;
  }

  .faq .h2 {
    font-size: 30px;
  }

  .faq__item summary {
    font-size: 15px;
  }
}
/* ========================= */
/* FOOTER */
/* ========================= */

.footer {
  background: #0b1220;
  color: rgba(255,255,255,.78);
  padding: 36px 0;
  font-size: 14px;
}

.footer__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.footer strong {
  color: #ffffff;
  font-weight: 800;
}

.footer a {
  color: #2dd4bf;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.footer__links {
  display: flex;
  gap: 18px;
}

/* mobile */
@media (max-width: 720px) {
  .footer__row {
    flex-direction: column;
    text-align: center;
  }
}
/* ================== BOXARIO VOICE MODAL ================== */

#boxario-voice-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(2px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

#boxario-voice-overlay.active {
  display: flex;
}

#boxario-voice-modal {
  width: min(92vw, 520px);
  background: #ffffff;
  color: #111;
  border-radius: 14px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
  padding: 24px 22px 20px;
  position: relative;
  animation: boxarioVoiceIn 0.18s ease-out;
}

@keyframes boxarioVoiceIn {
  from { transform: translateY(8px) scale(0.98); opacity: 0; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}

#boxario-voice-close {
  position: absolute;
  top: 10px;
  right: 12px;
  background: transparent;
  border: none;
  font-size: 20px;
  cursor: pointer;
  line-height: 1;
}

#boxario-voice-title {
  margin: 0 0 6px;
  font-size: 20px;
}

.boxario-voice-sub {
  margin: 0 0 14px;
  font-size: 14px;
  color: #444;
}

#boxario-voice-app {
  margin: 10px 0 8px;
}

#boxario-voice-app button {
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid #ddd;
  background: #111;
  color: #fff;
  cursor: pointer;
  margin-right: 8px;
}

#boxario-voice-app button[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}

#boxario-voice-app pre {
  margin-top: 10px;
  padding: 10px;
  background: #f7f7f7;
  border-radius: 8px;
  font-size: 12px;
  max-height: 140px;
  overflow: auto;
}

.boxario-voice-privacy {
  margin-top: 10px;
  font-size: 12px;
  color: #666;
}

/* ======================================================== */

/* Główne kolory Boxario */

/* --- IZOLOWANY KONFIGURATOR BOXARIO --- */

/* --- IZOLOWANY KONFIGURATOR BOXARIO PREMIUM --- */

.configurator-section {
    background: #0b1120; /* Głęboki granat/czerń */
    color: #ffffff;
    padding: 100px 0;
    width: 100%;
}

.configurator-section .container {
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Nowy, wielki nagłówek sekcji */
.configurator-section .section-title-big {
    font-size: 3rem; /* Rozmiar jak w innych sekcjach strony */
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 50px;
    text-align: left;
}

/* Układ horyzontalny */
.configurator-section .config-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr 360px !important;
    gap: 25px !important;
    align-items: start;
}

/* Karty wyboru (01 i 02) */
.configurator-section .config-card {
    background: #1e293b;
    border-radius: 24px;
    padding: 35px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.configurator-section .step-badge {
    position: absolute; top: -15px; left: 30px;
    background: #2FA4B6; color: white;
    padding: 5px 15px; border-radius: 50px;
    font-size: 12px; font-weight: 800;
}

.configurator-section h3 {
    margin: 0 0 25px 0; font-size: 18px; 
    color: #6CC6D2; text-transform: uppercase;
}

/* Pola wejściowe */
.configurator-section .field { margin-bottom: 20px; }
.configurator-section label {
    display: block; font-size: 11px; font-weight: 700;
    color: #94a3b8; margin-bottom: 8px; text-transform: uppercase;
}

.configurator-section input, 
.configurator-section select {
    width: 100%; padding: 14px;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px; color: white;
    font-size: 15px;
}

.configurator-section .input-pair {
    display: grid; grid-template-columns: 1fr 1fr; gap: 15px;
}

/* KARTA CENY (PRAWA KOLUMNA) - STICKY-CARD */
.configurator-section .sticky-card {
    background: #121e31; /* Zmiana na ciemne tło zgodnie z Twoim najnowszym stylem */
    border-radius: 28px;
    padding: 40px;
    color: #ffffff;
    position: sticky; top: 100px;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

/* Rozjaśniona i widoczna cena */
.configurator-section #total-price {
    font-size: 52px; /* Większa i bardziej widoczna */
    font-weight: 800; 
    color: #6CC6D2; /* Jasny turkusowy */
    margin: 10px 0; 
    letter-spacing: -1px;
    text-shadow: 0 0 15px rgba(108, 198, 210, 0.3);
}

.configurator-section .price-label { font-size: 12px; font-weight: 700; opacity: 0.6; text-transform: uppercase; }
.configurator-section .price-sub { color: #6CC6D2; font-size: 13px; font-weight: 700; opacity: 0.9; }

/* Formularz w karcie */
.configurator-section .lead-form { margin-top: 30px; }

/* Nowa informacja oznajmiająca przed polami */
.configurator-section .form-invite {
    color: #ffffff;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 15px;
    opacity: 1;
}

.configurator-section .lead-form input {
    background: rgba(255, 255, 255, 0.05); /* Ciemniejsze pola pod kolor karty */
    border: 1px solid rgba(255, 255, 255, 0.1); 
    color: #ffffff; 
    margin-bottom: 12px;
}

.configurator-section .btn-send-config {
    background: #2FA4B6; color: white;
    border: none; width: 100%; padding: 18px;
    border-radius: 14px; font-size: 16px; font-weight: 800;
    cursor: pointer; transition: 0.2s;
    text-transform: uppercase;
}

.configurator-section .btn-send-config:hover { background: #268d9d; box-shadow: 0 0 20px rgba(47, 164, 182, 0.4); }

/* Usunięcie starej notatki zgodnie z prośbą */
.configurator-section .form-note {
    display: none;
}

/* Responsywność dla mobile */
@media (max-width: 1024px) {
    .configurator-section .config-grid { grid-template-columns: 1fr !important; }
    .configurator-section .sticky-card { position: static; }
    .configurator-section .section-title-big { font-size: 2rem; }
}