/* ============================================================
   WIZZZZ — wspólny arkusz stylów
   Premium dark · czerń/grafit + pomarańcz
   ============================================================ */

:root {
  --orange: #F26B1D;
  --orange-light: #FF9A4D;
  --orange-dark: #C2490E;
  --bg: #08080A;
  --bg-2: #0E0E11;
  --bg-3: #15151A;
  --graphite: #1C1C22;
  --line: rgba(255, 255, 255, 0.08);
  --text: #F4F1EC;
  --muted: #A19C94;
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow-glow: 0 0 60px rgba(242, 107, 29, 0.25);
  --header-h: 72px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg, canvas { max-width: 100%; display: block; }

a { color: var(--orange-light); text-decoration: none; }
a:hover { color: var(--orange); }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 7vw, 4.6rem); }
h2 { font-size: clamp(1.8rem, 4.5vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }

p { margin: 0 0 1em; }

.accent { color: var(--orange); }
.accent-grad {
  background: linear-gradient(100deg, var(--orange-light), var(--orange) 55%, var(--orange-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.muted { color: var(--muted); }

:focus-visible {
  outline: 2px solid var(--orange-light);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection { background: rgba(242, 107, 29, 0.4); color: #fff; }

/* ---------- Layout ---------- */
.container {
  width: min(1160px, 92%);
  margin-inline: auto;
}

.section {
  padding: clamp(72px, 12vh, 130px) 0;
  position: relative;
}

.section-tight { padding: clamp(48px, 8vh, 80px) 0; }

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange-light);
  margin-bottom: 14px;
}

.section-head { max-width: 720px; margin-bottom: clamp(32px, 5vh, 56px); }
.section-head.center { margin-inline: auto; text-align: center; }

.lead {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--muted);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.3s;
  will-change: transform;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(115deg, var(--orange-light), var(--orange) 60%, var(--orange-dark));
  color: #120800;
  box-shadow: 0 6px 26px rgba(242, 107, 29, 0.35);
}
.btn-primary:hover {
  color: #120800;
  box-shadow: 0 10px 40px rgba(242, 107, 29, 0.55);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
}
.btn-ghost:hover {
  color: var(--orange-light);
  border-color: rgba(242, 107, 29, 0.5);
  transform: translateY(-2px);
}

.btn-lg { padding: 18px 44px; font-size: 1.08rem; }

/* ---------- Header / nav ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 0.35s, border-color 0.35s, backdrop-filter 0.35s;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(8, 8, 10, 0.82);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  color: var(--text);
}
.logo:hover { color: var(--text); }
.logo span { color: var(--orange); }

.main-nav { display: flex; align-items: center; gap: 6px; }

.main-nav a {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 500;
  padding: 8px 13px;
  border-radius: 999px;
  transition: color 0.25s, background 0.25s;
}
.main-nav a:hover { color: var(--text); }
.main-nav a.active {
  color: var(--orange-light);
  background: rgba(242, 107, 29, 0.1);
}

.nav-cta { padding: 11px 24px; font-size: 0.92rem; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  cursor: pointer;
  z-index: 110;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: block; }

  .main-nav {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    background: rgba(8, 8, 10, 0.96);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s var(--ease), visibility 0.35s;
  }
  .main-nav.open { opacity: 1; visibility: visible; }
  .main-nav a { font-size: 1.35rem; padding: 12px 24px; }
  .main-nav .nav-cta { margin-top: 18px; font-size: 1.1rem; padding: 16px 38px; }

  .nav-wrap > .nav-cta { display: none; }
}

@media (min-width: 901px) {
  .main-nav .nav-cta-mobile { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  position: relative;
  padding: calc(var(--header-h) + 40px) 0 60px;
  overflow: hidden;
}

.hero-sub {
  min-height: auto;
  padding: calc(var(--header-h) + clamp(56px, 10vh, 110px)) 0 clamp(40px, 6vh, 70px);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-glow {
  position: absolute;
  width: 70vw;
  height: 70vw;
  max-width: 900px;
  max-height: 900px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 107, 29, 0.22) 0%, rgba(242, 107, 29, 0.06) 40%, transparent 70%);
  top: -20%;
  right: -15%;
  filter: blur(20px);
}

.hero-glow-2 {
  top: auto;
  right: auto;
  bottom: -30%;
  left: -20%;
  background: radial-gradient(circle, rgba(194, 73, 14, 0.16) 0%, transparent 65%);
}

#particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero .container { position: relative; z-index: 2; }

.hero-grid {
  display: grid;
  gap: clamp(40px, 6vw, 70px);
  align-items: center;
}

@media (min-width: 980px) {
  .hero-grid { grid-template-columns: 1.05fr 0.95fr; }
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange-light);
  margin-bottom: 22px;
}
.hero-kicker::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--orange);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

/* ---------- Mockup (browser) ---------- */
.tilt-wrap { perspective: 1200px; }

.mockup {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.6), var(--shadow-glow);
  transform-style: preserve-3d;
  transition: transform 0.2s ease-out;
}

.mockup-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: var(--graphite);
  border-bottom: 1px solid var(--line);
}
.mockup-bar i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
}
.mockup-bar i:first-child { background: rgba(242, 107, 29, 0.7); }
.mockup-url {
  margin-left: 10px;
  font-size: 0.72rem;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.05);
  padding: 4px 14px;
  border-radius: 999px;
  letter-spacing: 0.03em;
}

.mockup-body { padding: 26px 24px 30px; }

/* skeleton elements inside mockups */
.sk { border-radius: 6px; }
.sk-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 26px;
}
.sk-logo { width: 74px; height: 12px; background: var(--orange); border-radius: 4px; }
.sk-links { display: flex; gap: 8px; }
.sk-links i { width: 30px; height: 7px; background: rgba(255,255,255,0.16); border-radius: 4px; }
.sk-h1 { height: 22px; width: 78%; background: rgba(255,255,255,0.85); border-radius: 6px; margin-bottom: 12px; }
.sk-h2 { height: 22px; width: 52%; background: linear-gradient(90deg, var(--orange-light), var(--orange)); border-radius: 6px; margin-bottom: 18px; }
.sk-p { height: 8px; background: rgba(255,255,255,0.14); border-radius: 4px; margin-bottom: 8px; }
.sk-p.w60 { width: 60%; }
.sk-p.w80 { width: 80%; }
.sk-btn {
  width: 120px;
  height: 32px;
  border-radius: 999px;
  background: linear-gradient(115deg, var(--orange-light), var(--orange-dark));
  margin-top: 20px;
  box-shadow: 0 4px 18px rgba(242,107,29,0.45);
}
.sk-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 26px; }
.sk-cards i {
  height: 54px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--line);
}

/* ---------- Trust bar ---------- */
.trustbar {
  border-block: 1px solid var(--line);
  background: var(--bg-2);
}
.trustbar .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 46px;
  padding-block: 22px;
}
.trustbar span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--muted);
  font-weight: 500;
}
.trustbar span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 10px rgba(242, 107, 29, 0.8);
}

/* ---------- Cards ---------- */
.grid {
  display: grid;
  gap: 22px;
}
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }

@media (min-width: 660px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 980px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.card {
  background: linear-gradient(160deg, var(--bg-3), var(--bg-2));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform 0.4s var(--ease), border-color 0.4s, box-shadow 0.4s;
}
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(242, 107, 29, 0.35);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45), 0 0 40px rgba(242, 107, 29, 0.08);
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(242, 107, 29, 0.12);
  border: 1px solid rgba(242, 107, 29, 0.3);
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.card h3 { margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 0.96rem; margin: 0; }

/* ---------- Steps ---------- */
.steps { counter-reset: step; }
.step {
  position: relative;
  padding: 28px 26px 26px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.4s var(--ease), border-color 0.4s;
}
.step:hover { transform: translateY(-5px); border-color: rgba(242, 107, 29, 0.35); }
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--orange);
  opacity: 0.9;
  margin-bottom: 12px;
}
.step h3 { font-size: 1.15rem; }
.step p { color: var(--muted); font-size: 0.94rem; margin: 0; }

/* ---------- Portfolio ---------- */
.work-card {
  display: grid;
  gap: 0;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  transition: border-color 0.4s, box-shadow 0.4s;
}
.work-card:hover {
  border-color: rgba(242, 107, 29, 0.35);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
}
@media (min-width: 900px) {
  .work-card { grid-template-columns: 1.15fr 0.85fr; }
}

.work-visual {
  padding: clamp(28px, 5vw, 56px);
  display: flex;
  align-items: center;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(31, 74, 56, 0.55), transparent 60%),
    radial-gradient(ellipse at 80% 90%, rgba(191, 155, 76, 0.18), transparent 55%),
    var(--bg-3);
  border-bottom: 1px solid var(--line);
}
@media (min-width: 900px) {
  .work-visual { border-bottom: none; border-right: 1px solid var(--line); }
}

/* BiR Mix mini-preview (zieleń butelkowa + złoto) */
.mockup.birmix { box-shadow: 0 30px 70px rgba(0,0,0,0.55), 0 0 50px rgba(31, 74, 56, 0.35); }
.mockup.birmix .mockup-body { background: #0F241B; }
.mockup.birmix .sk-logo { background: #C9A24B; }
.mockup.birmix .sk-h1 { background: #EDE6D6; }
.mockup.birmix .sk-h2 { background: linear-gradient(90deg, #E3C77E, #BF9B4C); }
.mockup.birmix .sk-btn { background: linear-gradient(115deg, #E3C77E, #A9853B); box-shadow: 0 4px 18px rgba(201,162,75,0.4); }
.mockup.birmix .sk-cards i { background: rgba(201,162,75,0.08); border-color: rgba(201,162,75,0.25); }

.work-info {
  padding: clamp(28px, 5vw, 56px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.work-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 20px;
}
.work-tags span {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--muted);
  border: 1px solid var(--line);
  padding: 5px 14px;
  border-radius: 999px;
}
.work-info .btn { align-self: flex-start; margin-top: 8px; }

.placeholder-card {
  display: grid;
  place-items: center;
  text-align: center;
  min-height: 220px;
  border: 1px dashed rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.015);
  padding: 36px 24px;
  transition: border-color 0.4s;
}
.placeholder-card:hover { border-color: rgba(242, 107, 29, 0.4); }
.placeholder-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 8px;
}
.placeholder-card p { color: var(--muted); font-size: 0.9rem; margin: 0; }
.placeholder-card .plus {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
  border: 1px solid rgba(242, 107, 29, 0.4);
  color: var(--orange-light);
  font-size: 1.4rem;
  font-weight: 300;
}

/* ---------- Style (koncepty) ---------- */
.style-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-2);
  transition: transform 0.4s var(--ease), border-color 0.4s, box-shadow 0.4s;
}
.style-card:hover {
  transform: translateY(-6px);
  border-color: rgba(242, 107, 29, 0.35);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}

.style-screen {
  height: 210px;
  padding: 22px 20px;
  position: relative;
  overflow: hidden;
}
.style-screen .s-logo { height: 10px; width: 64px; border-radius: 4px; margin-bottom: 20px; }
.style-screen .s-h { height: 16px; width: 75%; border-radius: 5px; margin-bottom: 10px; }
.style-screen .s-h2 { height: 16px; width: 50%; border-radius: 5px; margin-bottom: 16px; }
.style-screen .s-p { height: 7px; border-radius: 4px; margin-bottom: 7px; }
.style-screen .s-p.w70 { width: 70%; }
.style-screen .s-btn { height: 26px; width: 96px; border-radius: 999px; margin-top: 16px; }

.style-info { padding: 20px 22px 24px; }
.style-info h3 { font-size: 1.12rem; margin-bottom: 6px; }
.style-info p { font-size: 0.88rem; color: var(--muted); margin: 0; }

/* koncept: barber dark */
.st-barber { background: linear-gradient(160deg, #0B0B0D, #17130E); }
.st-barber .s-logo { background: #C9A24B; }
.st-barber .s-h, .st-barber .s-h2 { background: #E8E2D6; }
.st-barber .s-p { background: rgba(232,226,214,0.2); }
.st-barber .s-btn { background: #C9A24B; }

/* koncept: beauty pastel */
.st-beauty { background: linear-gradient(160deg, #FBF3F1, #F6E4E0); }
.st-beauty .s-logo { background: #C98A7D; }
.st-beauty .s-h, .st-beauty .s-h2 { background: #3E2E2B; }
.st-beauty .s-p { background: rgba(62,46,43,0.25); }
.st-beauty .s-btn { background: #C98A7D; }

/* koncept: terakota */
.st-terra { background: linear-gradient(160deg, #F4EDE4, #EAD9C9); }
.st-terra .s-logo { background: #B05C3B; }
.st-terra .s-h, .st-terra .s-h2 { background: #4A3226; }
.st-terra .s-p { background: rgba(74,50,38,0.25); }
.st-terra .s-btn { background: #B05C3B; }

/* koncept: gold luxury */
.st-gold { background: linear-gradient(160deg, #0D0C0A, #1B1610); }
.st-gold .s-logo { background: linear-gradient(90deg, #E3C77E, #BF9B4C); }
.st-gold .s-h, .st-gold .s-h2 { background: linear-gradient(90deg, #F0E3BE, #D8BC77); }
.st-gold .s-p { background: rgba(227,199,126,0.2); }
.st-gold .s-btn { background: linear-gradient(115deg, #E3C77E, #A9853B); }

/* koncept: zieleń + złoto */
.st-green { background: linear-gradient(160deg, #0F241B, #16352A); }
.st-green .s-logo { background: #C9A24B; }
.st-green .s-h, .st-green .s-h2 { background: #EDE6D6; }
.st-green .s-p { background: rgba(237,230,214,0.2); }
.st-green .s-btn { background: linear-gradient(115deg, #E3C77E, #A9853B); }

/* koncept: minimal */
.st-minimal { background: linear-gradient(160deg, #FAFAF8, #EFEFEA); }
.st-minimal .s-logo { background: #1A1A1A; }
.st-minimal .s-h, .st-minimal .s-h2 { background: #1A1A1A; }
.st-minimal .s-p { background: rgba(26,26,26,0.22); }
.st-minimal .s-btn { background: #1A1A1A; }

/* ---------- Cennik ---------- */
.price-card {
  position: relative;
  max-width: 620px;
  margin-inline: auto;
  background: linear-gradient(165deg, var(--bg-3), var(--bg-2));
  border: 1px solid rgba(242, 107, 29, 0.35);
  border-radius: calc(var(--radius) + 8px);
  padding: clamp(36px, 6vw, 56px);
  text-align: center;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 70px rgba(242, 107, 29, 0.1);
}
.price-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(115deg, var(--orange-light), var(--orange-dark));
  color: #120800;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 22px;
  border-radius: 999px;
  white-space: nowrap;
}
.price-value {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 9vw, 5rem);
  line-height: 1;
  margin: 18px 0 4px;
}
.price-value small {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--muted);
  font-weight: 500;
}

.price-list {
  list-style: none;
  padding: 0;
  margin: 34px 0;
  text-align: left;
}
.price-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  color: var(--text);
  font-size: 0.98rem;
}
.price-list li:last-child { border-bottom: none; }
.price-list li::before {
  content: "✓";
  flex: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #120800;
  background: linear-gradient(115deg, var(--orange-light), var(--orange));
  margin-top: 2px;
}

/* ---------- FAQ / akordeon ---------- */
.accordion { max-width: 780px; margin-inline: auto; }
.acc-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--bg-2);
  margin-bottom: 14px;
  overflow: hidden;
  transition: border-color 0.3s;
}
.acc-item.open { border-color: rgba(242, 107, 29, 0.4); }

.acc-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
  padding: 20px 24px;
  cursor: pointer;
}
.acc-btn .acc-icon {
  flex: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(242, 107, 29, 0.5);
  color: var(--orange-light);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  font-weight: 400;
  transition: transform 0.35s var(--ease), background 0.3s;
}
.acc-item.open .acc-icon {
  transform: rotate(45deg);
  background: rgba(242, 107, 29, 0.15);
}

.acc-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease);
}
.acc-panel-inner {
  padding: 0 24px 22px;
  color: var(--muted);
  font-size: 0.97rem;
}
.acc-panel-inner p { margin: 0; }

/* ---------- Kontakt ---------- */
.contact-grid {
  display: grid;
  gap: 22px;
}
@media (min-width: 760px) {
  .contact-grid { grid-template-columns: repeat(3, 1fr); }
}
.contact-card {
  text-align: center;
  padding: 36px 24px;
}
.contact-card .card-icon { margin-inline: auto; }
.contact-card a.contact-link {
  font-weight: 600;
  color: var(--orange-light);
  word-break: break-word;
}

.magic-word {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3.2rem);
  letter-spacing: 0.35em;
  padding: 18px 30px 18px 42px;
  border: 1px dashed rgba(242, 107, 29, 0.5);
  border-radius: var(--radius);
  background: rgba(242, 107, 29, 0.06);
  color: var(--orange-light);
  margin: 10px 0 26px;
}

/* ---------- CTA final ---------- */
.cta-final {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: clamp(80px, 14vh, 150px) 0;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
}
.cta-final::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -40%;
  transform: translateX(-50%);
  width: 80vw;
  max-width: 900px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(242, 107, 29, 0.18), transparent 65%);
  pointer-events: none;
}
.cta-final .container { position: relative; }
.cta-final h2 { max-width: 780px; margin-inline: auto; }
.cta-final p {
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 36px;
  font-size: 1.08rem;
}

/* ---------- Stopka ---------- */
.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: clamp(48px, 8vh, 70px) 0 32px;
}
.footer-grid {
  display: grid;
  gap: 36px;
  margin-bottom: 44px;
}
@media (min-width: 760px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
}
.footer-brand p {
  color: var(--muted);
  font-size: 0.94rem;
  max-width: 300px;
  margin-top: 14px;
}
.site-footer h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 16px;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 9px;
}
.footer-links a {
  color: var(--text);
  font-size: 0.95rem;
  opacity: 0.85;
}
.footer-links a:hover { color: var(--orange-light); opacity: 1; }

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--muted);
}

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

/* ---------- Dostępność / reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  #particles { display: none; }
}

/* skip link */
.skip-link {
  position: absolute;
  top: -60px;
  left: 16px;
  z-index: 200;
  background: var(--orange);
  color: #120800;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 8px;
  transition: top 0.2s;
}
.skip-link:focus { top: 12px; color: #120800; }
