:root{
  --bg: #07080b;
  --panel: rgba(255,255,255,0.06);
  --panel2: rgba(255,255,255,0.08);
  --text: rgba(255,255,255,0.92);
  --muted: rgba(255,255,255,0.70);
  --faint: rgba(255,255,255,0.56);
  --stroke: rgba(255,255,255,0.12);
  --brand: #c7a564;
  --brand2: #8b5cf6;
  --shadow: 0 26px 90px rgba(0,0,0,0.62);
  --radius: 18px;
  --radius2: 14px;
  --max: 1120px;
}

*{box-sizing:border-box}
html{
  scroll-behavior:smooth;
  color-scheme: dark;
}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:
    radial-gradient(900px 600px at 15% -10%, rgba(199,165,100,0.18), transparent 55%),
    radial-gradient(900px 700px at 90% 10%, rgba(139,92,246,0.16), transparent 55%),
    var(--bg);
  color: var(--text);
  line-height: 1.55;
}

a{color:inherit; text-decoration:none}
a:hover{color: #fff}

.container{max-width:var(--max); margin:0 auto; padding:0 20px}
.section{padding:76px 0}
.section--alt{
  background:
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.00));
  border-top: 1px solid var(--stroke);
  border-bottom: 1px solid var(--stroke);
}
.section__head{display:flex; gap:18px; align-items:flex-end; justify-content:space-between; margin-bottom:26px}
.section__head--center{
  flex-direction:column;
  align-items:center;
  text-align:center;
}
.section__head--center p{max-width:720px}
.section__head h2{margin:0; font-size:34px; letter-spacing:-0.02em}
.section__head p{margin:0; max-width:680px; color:var(--muted)}

.skip{
  position:absolute; left:-9999px; top:10px;
  padding:10px 12px; border-radius:10px;
  background:#111827; border:1px solid var(--stroke);
}
.skip:focus{left:10px; z-index:1000}

.topbar{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom:1px solid rgba(255,255,255,0.10);
  background: rgba(7,8,11,0.72);
}
.topbar__inner{display:flex; align-items:center; justify-content:space-between; gap:18px; padding:14px 0}
.brand{display:flex; align-items:center; gap:10px; min-width:180px}
.brand__logo{
  width: 190px;
  height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 18px 34px rgba(0,0,0,0.55));
}
.topbar__actions{display:flex; gap:10px; align-items:center}

.nav{display:flex; gap:14px; align-items:center; justify-content:center}
.nav a{
  font-weight:600;
  font-size:14px;
  color: rgba(255,255,255,0.78);
  padding:10px 10px;
  border-radius:12px;
}
.nav a:hover{background: rgba(255,255,255,0.06)}

.iconbtn{
  width:44px; height:44px;
  display:inline-grid;
  place-items:center;
  border-radius:14px;
  border:1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  transition: transform 160ms ease, background 160ms ease;
}
.iconbtn:hover{transform: translateY(-1px); background: rgba(255,255,255,0.10)}
.iconbtn svg{width:20px; height:20px; fill: rgba(255,255,255,0.88)}

.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:11px 14px;
  border-radius:14px;
  border:1px solid rgba(199,165,100,0.35);
  background: rgba(199,165,100,0.16);
  color: rgba(255,255,255,0.92);
  font-weight:750;
  box-shadow: 0 14px 40px rgba(0,0,0,0.28);
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}
.btn:hover{transform: translateY(-1px); background: rgba(199,165,100,0.22); border-color: rgba(199,165,100,0.50)}
.btn:active{transform: translateY(0)}
.btn--ghost{
  color: rgba(255,255,255,0.86);
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.16);
  box-shadow:none;
  font-weight:700;
}
.btn--ghost:hover{background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.22)}

.burger{
  display:none;
  width:44px; height:44px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  padding:0;
  align-items:center;
  justify-content:center;
  color: rgba(255,255,255,0.9);
}
.burger__icon{display:block; flex-shrink:0; pointer-events:none}

.hero{position:relative; overflow:hidden}
.hero--photo{
  min-height: calc(100svh - 72px);
  display:flex;
  align-items:flex-end;
  padding: 40px 0 clamp(52px, 8vh, 88px);
}
.hero__bg{
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px 650px at 20% 10%, rgba(199,165,100,0.14), transparent 60%),
    radial-gradient(900px 650px at 90% 20%, rgba(139,92,246,0.12), transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(7,8,11,0.92) 45%, rgba(0,0,0,0.72) 100%);
}
.hero__watermark{
  position:absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1100px, 110vw);
  opacity: 0.48;
  filter: blur(0.2px);
  pointer-events:none;
  user-select:none;
}
.hero__inner{display:grid; grid-template-columns: 1fr; gap:18px; align-items:center}
.hero__copy{
  position:relative;
  z-index:2;
  width:100%;
  max-width:100%;
}
.eyebrow{
  margin:0 0 10px;
  color: rgba(255,255,255,0.72);
  font-weight:750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
}
.kicker{
  display:inline-flex;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.78);
  font-weight:650;
  font-size:13px;
}
.hero h1{
  margin:8px 0 6px;
  font-size:clamp(1.5rem, 2.35vw + 0.75rem, 2rem);
  line-height:1.12;
  letter-spacing:-0.028em;
  font-weight:700;
}
.lead{margin:0; color:var(--muted); font-size:16px; max-width:62ch}
.hero .lead{
  font-size:0.875rem;
  line-height:1.68;
  max-width:none;
}
.lead--tight{margin-top:12px}
.hero__cta{display:flex; gap:10px; margin-top:18px; flex-wrap:wrap}

.section__actions{
  margin-top:14px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.section__actions--center{justify-content:center}

.orbit{
  display:grid;
  grid-template-columns: 1fr minmax(240px, 0.55fr) 1fr;
  gap:14px;
  align-items:center;
}
.orbit__col{display:grid; gap:12px}
.orbitCard{
  padding:14px 14px;
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.05);
  display:grid;
  grid-template-columns: 44px 1fr;
  gap:12px;
  align-items:start;
}
.orbitCard__icon{
  width:44px;
  height:44px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  display:grid;
  place-items:center;
}
.orbitCard__icon svg{width:22px; height:22px; fill: rgba(255,255,255,0.86)}
.orbitCard__body h3{margin:0 0 6px; letter-spacing:-0.02em; font-size:15.5px}
.orbitCard__body p{margin:0; color: rgba(255,255,255,0.70); font-size:13.5px}
a.orbitCard--link{
  color:inherit;
  text-decoration:none;
  cursor:pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}
a.orbitCard--link:hover{
  transform: translateY(-2px);
  border-color: rgba(199,165,100,0.32);
  background: rgba(255,255,255,0.07);
  box-shadow: 0 14px 36px rgba(0,0,0,0.28);
}
a.orbitCard--link:focus-visible{
  outline:2px solid rgba(199,165,100,0.6);
  outline-offset:2px;
}
.orbit__hub{
  position:relative;
  aspect-ratio: 1 / 1;
  border-radius: 999px;
  border:1px solid rgba(255,255,255,0.14);
  background: radial-gradient(120px 120px at 30% 30%, rgba(199,165,100,0.12), transparent 60%), rgba(0,0,0,0.18);
  display:grid;
  place-items:center;
  overflow:hidden;
}
.orbit__ring{
  position:absolute;
  inset: 14px;
  border-radius: 999px;
  border:1px solid rgba(199,165,100,0.22);
  opacity: 0.9;
}
.orbit__logo{
  position:relative;
  width: 62%;
  height:auto;
  filter: drop-shadow(0 18px 34px rgba(0,0,0,0.55));
}

.grid{display:grid; gap:14px}
.grid--4{grid-template-columns: repeat(4, minmax(0,1fr))}
.tile{
  padding:18px 16px;
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.05);
}
.tile h3{margin:0 0 8px; letter-spacing:-0.02em}
.tile p{margin:0 0 12px; color:var(--muted)}
.list{margin:0; padding:0 0 0 18px; color: rgba(255,255,255,0.78)}
.list li{margin:6px 0}

.fineprint{margin:14px 0 0; color: rgba(255,255,255,0.58); font-size:12.5px}

.reel{
  position:relative;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.reel__controls{
  display:flex;
  justify-content:flex-end;
  gap:10px;
}
.reel__controls .iconbtn{
  width:46px;
  height:46px;
  font-size:22px;
  line-height:1;
  font-weight:900;
}
.reel__viewport{
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,0.14);
  background: rgba(0,0,0,0.22);
  overflow-x:auto;
  overflow-y:hidden;
  scroll-snap-type:x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.reel__track{
  display:flex;
  gap:12px;
  padding:12px;
}
.reel__slide{
  margin:0;
  flex: 0 0 clamp(240px, 32vw, 360px);
  scroll-snap-align:start;
  border-radius: 18px;
  border:1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
  overflow:hidden;
}
.reel__slide img{
  display:block;
  width:100%;
  height:auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.reel__slide figcaption{
  padding:10px 12px 12px;
  color: rgba(255,255,255,0.70);
  font-size: 13px;
  font-weight:650;
}

.pricing{display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap:14px; align-items:stretch}
.pricecard{
  position:relative;
  display:flex;
  flex-direction:column;
  align-items:stretch;
  padding:18px 16px;
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.05);
  overflow:hidden;
}
.pricecard--featured{
  border-color: rgba(199,165,100,0.40);
  background:
    radial-gradient(300px 180px at 20% 0%, rgba(199,165,100,0.14), transparent 55%),
    rgba(255,255,255,0.05);
}
a.pricecard--link{
  color:inherit;
  text-decoration:none;
  cursor:pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}
a.pricecard--link:hover{
  transform: translateY(-2px);
  border-color: rgba(199,165,100,0.32);
  background: rgba(255,255,255,0.07);
  box-shadow: 0 14px 36px rgba(0,0,0,0.28);
}
a.pricecard--featured.pricecard--link:hover{
  border-color: rgba(199,165,100,0.55);
  background:
    radial-gradient(300px 180px at 20% 0%, rgba(199,165,100,0.18), transparent 55%),
    rgba(255,255,255,0.07);
}
a.pricecard--link:focus-visible{
  outline:2px solid rgba(199,165,100,0.6);
  outline-offset:2px;
}
.pricecard h3{margin:0 0 6px}
.pricecard__note{
  display:block;
  margin-top:10px;
  font-weight:650;
  color:rgba(255,255,255,0.58);
}
.pricecard--no-price h3{margin-bottom:14px}
.price{
  margin:0 0 12px;
  font-size:34px;
  font-weight:850;
  letter-spacing:-0.03em;
}
.price span{font-size:13px; font-weight:750; color:rgba(255,255,255,0.64); margin-right:6px}
.pricecard .list{
  flex:1;
  width:100%;
  text-align:left;
  padding-left:18px;
  list-style-position:outside;
}
.pricecard .list li{margin:6px 0}

.reviews{display:grid; gap:12px}
.reviews__summary{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:5px;
  width:fit-content;
  max-width:100%;
  margin:0 auto;
  padding:8px 12px;
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.05);
}
.reviews__summary-top{
  display:flex;
  align-items:center;
  gap:7px;
}
.reviews__score{
  font-size:14px;
  font-weight:700;
  line-height:1;
  letter-spacing:-0.02em;
  color:#e8b830;
}
.reviews__stars{
  display:inline-flex;
  align-items:center;
  gap:2px;
  line-height:1;
}
.reviews__stars .quote__star{
  font-size:17px;
}
.reviews__stars .quote__star--on{
  color:#e8b830;
  text-shadow:0 0 7px rgba(232,184,48,0.38);
}
.reviews__summary-text{
  margin:0;
  text-align:center;
  color: rgba(255,255,255,0.55);
  font-size:11px;
  line-height:1.35;
}
.reviews__more{margin:0; text-align:center}
.reviews__more a{
  color: rgba(255,255,255,0.72);
  font-size:12px;
  font-weight:600;
  text-decoration:underline;
  text-underline-offset:3px;
}
.reviews__more a:hover{color:#fff}

.quotes{
  display:grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap:10px;
}
.quote{
  margin:0;
  padding:10px 11px;
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.05);
}
.quote__stars{display:inline-flex; gap:1px; margin:0 0 6px}
.quote__star{color: rgba(255,255,255,0.18); font-size:11px; line-height:1}
.quote__star--on{
  color:#e8b830;
  text-shadow:0 0 6px rgba(232,184,48,0.4);
}
.quote blockquote{
  margin:0 0 8px;
  color: rgba(255,255,255,0.82);
  font-size:12.5px;
  line-height:1.42;
  font-weight:500;
  display:-webkit-box;
  -webkit-line-clamp:5;
  -webkit-box-orient:vertical;
  overflow:hidden;
}
.quote figcaption{color: rgba(255,255,255,0.55); font-size:11px; line-height:1.35}
.quote figcaption a{color: rgba(255,255,255,0.72); font-weight:600; text-decoration:none}
.quote figcaption a:hover{text-decoration:underline}
.quote span{color: rgba(255,255,255,0.68); font-weight:600}

.faq{display:grid; gap:10px}
.faq__item{
  border:1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius);
  padding:4px 12px;
}
.faq__item summary{
  cursor:pointer;
  padding:12px 0;
  font-weight:800;
  color: rgba(255,255,255,0.90);
}
.faq__item p{margin:0 0 12px; color: rgba(255,255,255,0.74)}

.site-summary{
  border-top:1px solid rgba(255,255,255,0.08);
}
.site-summary__title{
  margin:0 0 8px;
  font-size: 28px;
  letter-spacing: -0.02em;
}
.site-summary__lead{
  margin:0 0 22px;
  max-width: 62ch;
  color: rgba(255,255,255,0.70);
  line-height: 1.55;
}
.site-summary__grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px 22px;
  align-items: start;
}
.site-summary__h{
  margin:0 0 10px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: rgba(199,165,100,0.92);
}
.site-summary__list{
  margin:0;
  padding:0;
  list-style:none;
  display:grid;
  gap:8px;
}
.site-summary__list a{
  color: rgba(255,255,255,0.82);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.site-summary__list a:hover{color:#fff}

.contact{
  display:grid;
  grid-template-columns: 1fr 2fr;
  gap:14px;
  align-items:start;
}
.contact__map{
  margin: 12px 0 14px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,0.14);
  overflow:hidden;
  background: rgba(255,255,255,0.04);
}
.contact__map-img{
  display:block;
  width:100%;
  height:auto;
  vertical-align:top;
}
.contact__map-foot{
  margin:0;
  padding:10px 12px;
  border-top:1px solid rgba(255,255,255,0.10);
  text-align:center;
  font-size:13px;
  font-weight:650;
}
.contact__map-foot a{
  color: rgba(255,255,255,0.78);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.contact__map-foot a:hover{color:#fff}
.contact__card{
  padding:18px 16px;
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.05);
}
.contact__row{display:flex; justify-content:space-between; gap:12px; margin:10px 0; color: rgba(255,255,255,0.78)}
.contact__row strong{color: rgba(255,255,255,0.90)}
.contact__row--stack{flex-direction:column; align-items:flex-start}
.muted{color: rgba(255,255,255,0.62)}

.form{
  position:relative;
  padding:18px 16px;
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.05);
}
.form h3{margin:0 0 10px}
.form__hint{
  margin:0 0 12px;
  color: rgba(255,255,255,0.62);
  font-size:13px;
  line-height:1.5;
}
.form__status{
  margin:12px 0 0;
  font-size:13px;
  line-height:1.45;
}
.form__status--ok{color: rgba(170, 220, 150, 0.95)}
.form__status--err{color: rgba(255, 170, 150, 0.95)}
.form__required-note{
  margin:4px 0 0;
  color: rgba(255,255,255,0.48);
  font-size:11.5px;
}
.form__honey{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}
.form__honey input{
  display:block;
  width:1px;
  height:1px;
  padding:0;
  border:0;
  opacity:0;
}
.form-modal{
  position:fixed;
  inset:0;
  z-index:120;
  display:grid;
  place-items:center;
  padding:20px;
}
.form-modal[hidden]{display:none}
.form-modal__backdrop{
  position:absolute;
  inset:0;
  border:0;
  background:rgba(0,0,0,0.72);
  cursor:pointer;
}
.form-modal__dialog{
  position:relative;
  width:min(420px, 100%);
  padding:22px 20px 18px;
  border-radius:var(--radius);
  border:1px solid rgba(255,255,255,0.16);
  background:linear-gradient(180deg, rgba(24,26,32,0.98), rgba(12,13,17,0.98));
  box-shadow:0 24px 60px rgba(0,0,0,0.45);
  text-align:center;
}
.form-modal__title{
  margin:0 0 10px;
  font-size:1.25rem;
  letter-spacing:-0.02em;
}
.form-modal__text{
  margin:0 0 18px;
  color:rgba(255,255,255,0.76);
  font-size:14px;
  line-height:1.55;
}
.form-modal__btn{min-width:120px}
.form-modal--ok .form-modal__title{color:#e8b830}
.form-modal--err .form-modal__title{color:#ffb4a2}
.label__text{display:inline-flex; align-items:center; gap:4px}
.label__req{color:#e8b830; font-weight:700}
.label__opt{color:rgba(255,255,255,0.45); font-size:12px; font-weight:500}
label:has(:user-invalid){color: rgba(255, 190, 170, 0.92)}
input:user-invalid, select:user-invalid, textarea:user-invalid{
  border-color: rgba(255, 140, 120, 0.55);
}
label{display:grid; gap:6px; margin:10px 0; color: rgba(255,255,255,0.78); font-weight:650}
input, select, textarea{
  width:100%;
  padding:12px 12px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,0.14);
  background: rgba(0,0,0,0.18);
  color: rgba(255,255,255,0.92);
  outline:none;
}
input:focus, select:focus, textarea:focus{
  border-color: rgba(199,165,100,0.55);
  box-shadow: 0 0 0 3px rgba(199,165,100,0.18);
}
select{
  color-scheme: dark;
}
select option,
select optgroup{
  background-color: var(--bg);
  color: var(--text);
}

.footer{padding:26px 0; border-top:1px solid rgba(255,255,255,0.08)}
.footer__inner{display:flex; justify-content:space-between; gap:12px; flex-wrap:wrap; color: rgba(255,255,255,0.62)}
.footer__links{display:flex; gap:10px; align-items:center}
.footer__links a{color: rgba(255,255,255,0.70)}
.footer__links a:hover{color:#fff}

/* Znaczek akredytacji Hyper Quartz — lewy dolny róg */
.accredit{
  position:fixed;
  left:max(12px, env(safe-area-inset-left));
  bottom:max(16px, env(safe-area-inset-bottom));
  z-index:45;
  display:flex;
  align-items:flex-end;
  gap:10px;
  pointer-events:none;
}
.accredit__badge,
.accredit__panel{pointer-events:auto}
.accredit__badge{
  flex-shrink:0;
  width:54px;
  height:54px;
  padding:0;
  border:1px solid rgba(199,165,100,0.35);
  border-radius:16px;
  background:rgba(11,13,18,0.94);
  box-shadow:0 14px 44px rgba(0,0,0,0.48);
  cursor:pointer;
  transition:transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}
.accredit__badge img{
  display:block;
  width:100%;
  height:100%;
  border-radius:15px;
  object-fit:contain;
  padding:4px;
  box-sizing:border-box;
}
.accredit__panel{
  width:min(300px, calc(100vw - 92px));
  padding:14px 16px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,0.14);
  background:rgba(11,13,18,0.96);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  box-shadow:var(--shadow);
  transform:translateX(-16px);
  opacity:0;
  visibility:hidden;
  transition:transform 280ms ease, opacity 220ms ease, visibility 220ms;
}
.accredit__kicker{
  margin:0 0 4px;
  font-size:11px;
  font-weight:700;
  letter-spacing:0.06em;
  text-transform:uppercase;
  color:rgba(199,165,100,0.88);
}
.accredit__title{
  margin:0 0 8px;
  font-size:15px;
  font-weight:700;
  letter-spacing:-0.02em;
  color:rgba(255,255,255,0.94);
}
.accredit__text{
  margin:0 0 10px;
  font-size:13px;
  line-height:1.55;
  color:rgba(255,255,255,0.72);
}
.accredit__link{
  font-size:13px;
  font-weight:650;
  color:rgba(199,165,100,0.92);
  text-decoration:underline;
  text-underline-offset:3px;
}
.accredit__link:hover{color:#fff}
.accredit:hover .accredit__badge,
.accredit:focus-within .accredit__badge,
.accredit.accredit--open .accredit__badge{
  border-color:rgba(199,165,100,0.58);
  transform:translateY(-2px);
  box-shadow:0 18px 50px rgba(0,0,0,0.55);
}
.accredit:hover .accredit__panel,
.accredit:focus-within .accredit__panel,
.accredit.accredit--open .accredit__panel{
  transform:translateX(0);
  opacity:1;
  visibility:visible;
}

@media (prefers-reduced-motion: reduce){
  .accredit__panel{transition:none}
  .accredit:hover .accredit__panel,
  .accredit:focus-within .accredit__panel,
  .accredit.accredit--open .accredit__panel{transform:none}
}

/* Podstrony usług (uslugi/*.html) */
.subpage{background:var(--bg)}
.topbar--sub .topbar__inner{
  display:grid;
  grid-template-columns:auto minmax(0, 1fr) auto;
  align-items:center;
  gap:12px;
  padding:14px 0;
}
.subpage-back{
  font-weight:650;
  font-size:14px;
  color:rgba(255,255,255,0.78);
  white-space:nowrap;
}
.subpage-back:hover{color:#fff}
.brand--sub{
  min-width:0;
  justify-self:center;
  max-width:100%;
}
.brand--sub .brand__logo{
  width:auto;
  max-width:min(190px, 46vw);
  height:40px;
}
.btn--sub-cta{padding:10px 14px; font-size:14px; font-weight:700}

.service-detail__content{
  padding:44px 20px 0;
  max-width:720px;
  margin:0 auto;
}
.service-detail__title{
  margin:0 0 12px;
  font-size:clamp(26px, 4.2vw, 38px);
  line-height:1.1;
  letter-spacing:-0.03em;
}
.service-detail__lead{
  margin:0 0 22px;
  font-size:1.05rem;
  color:var(--muted);
  line-height:1.55;
}
.service-detail__text{
  margin:0 0 14px;
  color:rgba(255,255,255,0.84);
  line-height:1.62;
}
.service-detail__gallery--wide{
  margin-top:40px;
  padding:40px 0 16px;
  border-top:1px solid var(--stroke);
  background:
    radial-gradient(900px 420px at 10% 0%, rgba(199,165,100,0.07), transparent 58%),
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0));
}
.service-detail__gallery--wide .container{max-width:var(--max)}
.service-cases{
  display:grid;
  gap:clamp(18px, 3vw, 26px);
}
.service-case{
  position:relative;
  padding:clamp(16px, 2.5vw, 22px);
  border-radius:var(--radius);
  border:1px solid rgba(199,165,100,0.22);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02)),
    rgba(7,8,11,0.55);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.06) inset,
    0 22px 56px rgba(0,0,0,0.38);
}
.service-case::before{
  content:"";
  position:absolute;
  top:0;
  left:22px;
  right:22px;
  height:1px;
  background:linear-gradient(90deg, transparent, rgba(199,165,100,0.45), transparent);
  pointer-events:none;
}
.service-case__compare{
  display:grid;
  grid-template-columns:minmax(0, 1fr) auto minmax(0, 1fr);
  gap:clamp(10px, 2vw, 18px);
  align-items:stretch;
}
.service-case--solo{
  display:flex;
  justify-content:center;
}
.service-case--solo .service-case__frame{
  width:100%;
  max-width:min(100%, calc((var(--max) - 80px) / 2));
}
.service-case__row{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:clamp(10px, 2vw, 18px);
  align-items:stretch;
}
.service-case__frame{
  position:relative;
  margin:0;
  min-width:0;
  padding:8px;
  border-radius:calc(var(--radius2) + 2px);
  border:1px solid rgba(255,255,255,0.12);
  background:rgba(0,0,0,0.22);
  box-shadow:0 10px 28px rgba(0,0,0,0.28);
}
.service-case__imgwrap{
  overflow:hidden;
  border-radius:var(--radius2);
  background:rgba(0,0,0,0.35);
}
.service-case__imgwrap img{
  width:100%;
  height:auto;
  display:block;
  transition:transform 420ms ease;
}
.service-case:hover .service-case__imgwrap img{transform:scale(1.02)}
.service-case__badge{
  position:absolute;
  left:16px;
  top:16px;
  bottom:auto;
  margin:0;
  padding:5px 10px;
  border-radius:999px;
  font-size:10px;
  font-weight:800;
  letter-spacing:0.07em;
  text-transform:uppercase;
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
}
.service-case__badge--before{
  color:rgba(255,255,255,0.88);
  background:rgba(0,0,0,0.62);
  border:1px solid rgba(255,255,255,0.14);
}
.service-case__badge--after{
  color:#0c0d10;
  background:rgba(199,165,100,0.92);
  border:1px solid rgba(255,255,255,0.2);
}
.service-case__divider{
  display:flex;
  align-items:center;
  justify-content:center;
  align-self:center;
  width:36px;
  height:36px;
  border-radius:999px;
  border:1px solid rgba(199,165,100,0.35);
  background:rgba(11,13,18,0.92);
  box-shadow:0 8px 24px rgba(0,0,0,0.35);
  flex-shrink:0;
}
.service-case__arrow{
  display:block;
  width:10px;
  height:10px;
  border-right:2px solid rgba(199,165,100,0.95);
  border-bottom:2px solid rgba(199,165,100,0.95);
  transform:rotate(-45deg) translate(-1px, -1px);
}
.service-detail__gallery--extras{
  margin-top:0;
  padding-top:8px;
  border-top:0;
  background:transparent;
}
.service-detail__gallery--extras:first-of-type{
  padding-top:clamp(20px, 3vw, 36px);
}
.service-reel-groups{
  display:flex;
  flex-direction:column;
  gap:clamp(12px, 2vw, 18px);
}
.service-reel-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:clamp(12px, 2vw, 18px);
}
.service-reel-grid__item{
  margin:0;
  min-width:0;
  padding:8px;
  border-radius:calc(var(--radius2) + 2px);
  border:1px solid rgba(255,255,255,0.12);
  background:rgba(0,0,0,0.22);
  box-shadow:0 10px 28px rgba(0,0,0,0.28);
}
.service-reel-grid__item:last-child:nth-child(odd){
  grid-column:1 / -1;
  width:min(100%, calc((100% - clamp(12px, 2vw, 18px)) / 2));
  justify-self:center;
}
.service-reel-grid--3{
  grid-template-columns:repeat(3, minmax(0, 1fr));
}
.service-reel-grid--3 .service-reel-grid__item:last-child:nth-child(odd){
  grid-column:auto;
  width:auto;
  justify-self:stretch;
}
.service-reel-grid--pair{
  grid-template-columns:repeat(2, minmax(0, 1fr));
  width:min(100%, calc((100% - 2 * clamp(12px, 2vw, 18px)) / 3 * 2 + clamp(12px, 2vw, 18px)));
  margin-inline:auto;
}
.service-reel-grid__imgwrap{
  overflow:hidden;
  border-radius:var(--radius2);
  background:rgba(0,0,0,0.35);
}
.service-reel-grid__imgwrap img{
  width:100%;
  height:auto;
  display:block;
  transition:transform 420ms ease;
}
.service-reel-grid__item:hover .service-reel-grid__imgwrap img{transform:scale(1.02)}
.service-detail__tail{
  max-width:var(--max);
  margin:0 auto;
  padding:36px 20px 52px;
}
.service-detail__cta{
  margin:0;
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  align-items:center;
  gap:12px;
}

@media (max-width: 980px){
  .service-reel-grid--3{grid-template-columns:repeat(2, minmax(0, 1fr))}
  .service-reel-grid--pair{width:100%}
}

@media (max-width: 720px){
  .service-case__compare{
    grid-template-columns:1fr;
    gap:12px;
  }
  .service-case__row{
    grid-template-columns:1fr;
    gap:12px;
  }
  .service-reel-grid{grid-template-columns:1fr}
  .service-reel-grid__item:last-child:nth-child(odd){
    grid-column:auto;
    width:100%;
  }
  .service-case__divider{
    width:36px;
    height:36px;
    margin:0 auto;
  }
  .service-case__arrow{
    transform:rotate(45deg) translate(-1px, -1px);
  }
}

@media (prefers-reduced-motion: reduce){
  .service-case__imgwrap img{transition:none}
  .service-case:hover .service-case__imgwrap img{transform:none}
  .service-reel-grid__item:hover .service-reel-grid__imgwrap img{transform:none}
}

@media (max-width: 640px){
  .topbar--sub .topbar__inner{gap:8px; padding:12px 0}
}

@media (max-width: 1200px){
  .quotes{grid-template-columns: repeat(3, minmax(0, 1fr))}
}

@media (max-width: 980px){
  .grid--4{grid-template-columns: repeat(2, minmax(0,1fr))}
  .quotes{grid-template-columns: repeat(2, minmax(0, 1fr))}
  .hero__inner{grid-template-columns: 1fr}
  .orbit{grid-template-columns: 1fr; gap:12px}
  .orbit__hub{order:-1; max-width: 420px; margin: 0 auto; width: 100%}
  .reel__slide{flex-basis: clamp(240px, 72vw, 360px)}
  .contact{grid-template-columns: 1fr}
  .pricing{grid-template-columns: 1fr}
  .site-summary__grid{grid-template-columns: 1fr}
}

@media (max-width: 720px){
  .quotes{
    display:flex;
    overflow-x:auto;
    scroll-snap-type:x mandatory;
    gap:8px;
    padding-bottom:2px;
  }
  .quote{
    flex:0 0 min(240px, 82vw);
    scroll-snap-align:start;
  }
  .quote blockquote{-webkit-line-clamp:4}
}

@media (max-width: 820px){
  .topbar__inner{
    justify-content:flex-start;
    gap:10px;
    padding:12px 0;
  }
  .brand{
    min-width:0;
    flex:1 1 auto;
    justify-content:flex-start;
  }
  .brand__logo{
    width:auto;
    max-width:min(210px, 50vw);
    height:40px;
  }
  .topbar__actions{
    margin-left:auto;
    flex-shrink:0;
  }
  .nav{
    display:none;
    position:absolute;
    left:20px; right:20px; top:64px;
    padding:12px;
    border-radius: 18px;
    border:1px solid rgba(255,255,255,0.14);
    background: rgba(11,13,18,0.92);
    box-shadow: var(--shadow);
    flex-direction:column;
    align-items:stretch;
    gap:6px;
  }
  .nav a{padding:12px 12px}
  .burger{display:inline-flex}
  .topbar__actions .btn{display:none}
  .section__head{flex-direction:column; align-items:flex-start}
  .section__head--center{align-items:center; text-align:center}

  /* Hero mobile: logo (logo3) jako tło na całą sekcję + treść z przodu */
  .hero--photo{
    position:relative;
    min-height:calc(100svh - 72px);
    padding:0;
    display:block;
  }
  .hero--photo > .hero__bg{
    position:absolute;
    inset:0;
    z-index:0;
  }
  .hero--photo::before{
    content:"";
    position:absolute;
    inset:0;
    z-index:2;
    background:linear-gradient(180deg, rgba(0,0,0,0.12) 0%, rgba(7,8,11,0.38) 55%, rgba(0,0,0,0.42) 100%);
    pointer-events:none;
  }
  .hero--photo > picture{
    position:absolute;
    inset:0;
    z-index:1;
    display:block;
    width:100%;
    height:100%;
    margin:0;
    pointer-events:none;
  }
  .hero__watermark{
    position:absolute;
    inset:0;
    top:0;
    left:0;
    transform:none;
    width:100%;
    height:100%;
    max-width:none;
    max-height:none;
    margin:0;
    object-fit:cover;
    object-position:center;
    opacity:0.78;
    filter:none;
  }
  .hero--photo > .hero__inner{
    position:relative;
    z-index:3;
    width:100%;
    min-height:calc(100svh - 72px);
    display:flex;
    align-items:center;
    justify-content:center;
    padding:76px 20px 40px;
    box-sizing:border-box;
  }
  .hero__copy{
    max-width:min(760px, 100%);
    margin:0 auto;
    text-shadow:
      0 1px 3px rgba(0,0,0,0.55),
      0 0 16px rgba(0,0,0,0.35);
  }
  .hero h1{
    margin:14px 0 10px;
    font-size:clamp(34px, 8.5vw, 46px);
    line-height:1.02;
    letter-spacing:-0.04em;
  }
  .hero .lead{
    font-size:16px;
    line-height:1.55;
    max-width:62ch;
  }
  .lead--tight{
    margin-top:12px;
    max-width:70ch;
  }
}

@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto}
  *{transition:none !important; animation:none !important}
}
