/* ═══════════════════════════════════════════════════════
   Marcel Michalak – Trener Personalny | Shared Styles v2
   ═══════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg:        #0a0a0a;
  --bg2:       #111111;
  --bg3:       #161616;
  --card:      #1a1a1a;
  --border:    #2a2a2a;
  --border-strong: #3d3d3d;
  --orange:    #FF6B00;
  --orange2:   #FF8C00;
  --orange-dim:#FF6B0022;
  --text:      #f0f0f0;
  --muted:     #9a9a9a;
  --white:     #ffffff;
  --radius:    12px;
  --nav-h:     70px;
  --transition: 200ms ease;
}
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, [role="button"] { cursor: pointer; border: none; background: none; font-family: inherit; }
section[id] { scroll-margin-top: calc(var(--nav-h) + 16px); }
:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; border-radius: 4px; }

/* ─── SCROLLBAR ────────────────────────────────────────── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 4px; }

/* ─── PROMO BANNER ─────────────────────────────────────── */
#promo-bar {
  background: var(--orange);
  color: #000;
  text-align: center;
  padding: 10px 48px 10px 16px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 100;
}
#promo-bar span { font-weight: 900; font-size: 17px; }
#close-promo {
  position: absolute;
  right: 14px; top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.25);
  border-radius: 50%;
  width: 24px; height: 24px;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
  color: #000;
}
#close-promo svg { width: 14px; height: 14px; }
#close-promo:hover { background: rgba(0,0,0,0.5); }

/* ─── NAV ──────────────────────────────────────────────── */
#nav {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 clamp(16px, 5vw, 60px);
  transition: box-shadow var(--transition);
}
#nav.scrolled { box-shadow: 0 4px 30px rgba(255,107,0,0.08); }
.nav-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 26px;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 4px;
}
.logo .mm {
  font-size: 28px;
  line-height: 1;
  margin-right: 4px;
  transition: transform var(--transition);
}
.logo:hover .mm { transform: scale(1.15) rotate(-10deg); }
.logo .brand-sub {
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.08em;
  display: block;
  line-height: 1;
}
.logo-wrap { display: flex; flex-direction: column; }
nav { display: flex; gap: 28px; align-items: center; }
nav a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color var(--transition);
}
nav a:hover { color: var(--orange); }
nav a[aria-current="page"], nav a.nav-active { color: var(--text); }
.nav-cta {
  background: var(--orange);
  color: #000 !important;
  padding: 8px 20px;
  border-radius: 6px;
  font-weight: 700;
  transition: background var(--transition), box-shadow var(--transition);
}
.nav-cta:hover {
  background: var(--orange2);
  box-shadow: 0 0 20px rgba(255,107,0,0.4);
}
#hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  background: transparent;
}
#hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
#mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  padding: 20px 24px 24px;
  z-index: 89;
  flex-direction: column;
  gap: 16px;
}
#mobile-menu.open { display: flex; }
#mobile-menu a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
#mobile-menu a[aria-current="page"], #mobile-menu a.nav-active { color: var(--orange); }

@media (max-width: 759px) {
  #desktop-nav { display: none; }
  #hamburger { display: flex; }
}

/* ─── PAGE HERO (subpages) ─────────────────────────────── */
.page-hero {
  padding: clamp(56px, 8vw, 100px) clamp(16px, 5vw, 60px) clamp(40px, 6vw, 72px);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.page-hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 10% 50%, rgba(255,107,0,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 30% 50% at 90% 30%, rgba(255,107,0,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
.page-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange-dim);
  border: 1px solid rgba(255,107,0,0.3);
  color: var(--orange);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 12px;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 100px;
  margin-bottom: 20px;
}
.page-hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(44px, 8vw, 88px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.page-hero h1 .accent { color: var(--orange); }
.page-hero .sub {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--muted);
  max-width: 560px;
  line-height: 1.65;
}

/* ─── BUTTONS (poprawiona widoczność) ──────────────────── */
.btn-primary {
  background: var(--orange);
  color: #000;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 17px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius);
  display: inline-block;
  border: 2px solid var(--orange);
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
}
.btn-primary:hover {
  background: var(--orange2);
  border-color: var(--orange2);
  box-shadow: 0 0 30px rgba(255,107,0,0.5);
  transform: translateY(-2px);
}
.btn-primary:active { transform: translateY(0); }
.btn-outline {
  background: rgba(255,255,255,0.04);
  color: var(--text);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 12px 32px;
  border-radius: var(--radius);
  border: 2px solid var(--orange);
  display: inline-block;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.btn-outline:hover {
  background: var(--orange);
  color: #000;
  box-shadow: 0 0 24px rgba(255,107,0,0.35);
  transform: translateY(-2px);
}

/* ─── SECTION WRAPPER ──────────────────────────────────── */
.section { padding: clamp(60px, 10vw, 120px) clamp(16px, 5vw, 60px); }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 12px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}
.section-label::after {
  content: ''; flex: 1; max-width: 40px;
  height: 1px; background: var(--orange);
}
h2.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 6vw, 68px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
h2.section-title .accent { color: var(--orange); }
.section-desc { font-size: 16px; color: var(--muted); max-width: 560px; line-height: 1.7; }

/* ─── HERO (homepage) ──────────────────────────────────── */
#hero {
  min-height: calc(100svh - var(--nav-h));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(60px, 10vw, 120px) clamp(16px, 5vw, 60px);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 60%, rgba(255,107,0,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 30% at 80% 20%, rgba(255,107,0,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,107,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,107,0,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 70%);
}
.hero-content { position: relative; z-index: 1; max-width: 900px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange-dim);
  border: 1px solid rgba(255,107,0,0.3);
  color: var(--orange);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 13px;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 100px;
  margin-bottom: 28px;
}
.hero-eyebrow svg { width: 14px; height: 14px; flex-shrink: 0; }
h1.hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(52px, 10vw, 110px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
h1.hero-title .accent { color: var(--orange); }
.hero-sub {
  font-size: clamp(16px, 2.5vw, 20px);
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.65;
}
.hero-sub strong { color: var(--text); }
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-stats {
  display: flex; justify-content: center;
  gap: clamp(24px, 6vw, 64px);
  margin-top: 64px; padding-top: 40px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat .num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 6vw, 52px);
  color: var(--orange);
  line-height: 1; display: block;
}
.hero-stat .label {
  font-size: 13px; color: var(--muted);
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-top: 4px;
}

/* ─── ABOUT (O MNIE) ───────────────────────────────────── */
#about { background: var(--bg2); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(32px, 5vw, 64px);
  margin-top: 48px;
  align-items: center;
}
@media (max-width: 840px) { .about-grid { grid-template-columns: 1fr; } }
.about-photo {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(160deg, #1f1200 0%, var(--card) 60%);
  border: 1px solid var(--border);
}
.about-photo img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.about-photo .photo-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: var(--muted);
  text-align: center; padding: 24px;
  gap: 12px;
}
.about-photo .photo-placeholder svg { width: 56px; height: 56px; color: var(--orange); opacity: 0.5; }
.about-photo .photo-placeholder span { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; font-size: 13px; }
.about-photo img:not([src=""]):not([src="#"]) ~ .photo-placeholder { display: none; }
.about-photo .photo-frame {
  position: absolute; bottom: 16px; left: 16px;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,107,0,0.4);
  border-radius: 12px;
  padding: 14px 18px;
}
.about-photo .photo-frame .pf-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: 28px;
  color: var(--orange); line-height: 1;
}
.about-photo .photo-frame .pf-label {
  font-size: 11px; color: var(--text);
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-top: 4px;
}
.about-content p { color: #c7c7c7; line-height: 1.75; margin-bottom: 16px; font-size: 16px; }
.about-content p strong { color: var(--text); }
.about-features { list-style: none; margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.about-features li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 15px; color: #d0d0d0;
}
.about-features li svg {
  width: 22px; height: 22px;
  flex-shrink: 0; color: var(--orange);
  background: var(--orange-dim);
  border-radius: 6px; padding: 3px;
  margin-top: 1px;
}

/* ─── GOALS ACCORDION ──────────────────────────────────── */
#goals { background: var(--bg2); }
.goals-grid {
  display: flex; flex-direction: column; gap: 8px;
  margin-top: 52px;
}
.goal-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.goal-item.active {
  border-color: var(--orange);
  box-shadow: 0 0 30px rgba(255,107,0,0.1);
}
.goal-trigger {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 28px;
  gap: 16px;
  background: none;
  text-align: left;
}
.goal-trigger-left { display: flex; align-items: center; gap: 20px; flex: 1; min-width: 0; }
.goal-icon {
  width: 48px; height: 48px;
  background: var(--orange-dim);
  border: 1px solid rgba(255,107,0,0.25);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.goal-icon svg { width: 22px; height: 22px; color: var(--orange); }
.goal-headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(18px, 2.6vw, 26px);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.15;
  color: var(--text);
  transition: color var(--transition);
}
.goal-trigger:hover .goal-headline { color: var(--orange); }
.goal-item.active .goal-headline { color: var(--orange); }
.goal-chevron {
  width: 32px; height: 32px;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
  color: var(--text);
}
.goal-chevron svg { width: 14px; height: 14px; transition: transform var(--transition); }
.goal-item.active .goal-chevron { background: var(--orange); border-color: var(--orange); color: #000; }
.goal-item.active .goal-chevron svg { transform: rotate(180deg); }

/* animowany accordion */
.goal-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}
.goal-item.active .goal-body { grid-template-rows: 1fr; }
.goal-body > .goal-body-wrap { overflow: hidden; }
.goal-body-inner {
  padding: 0 28px 28px;
}
.goal-body-inner-grid {
  padding-top: 20px;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}
@media (max-width: 640px) { .goal-body-inner-grid { grid-template-columns: 1fr; } }
.goal-body p { font-size: 15px; color: #c0c0c0; line-height: 1.75; grid-column: 1 / -1; }
.goal-proof {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px 20px;
}
.goal-proof .proof-label {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 10px;
}
.proof-row { display: flex; align-items: center; gap: 12px; margin-bottom: 6px; }
.proof-name { font-weight: 700; font-size: 14px; min-width: 70px; color: var(--text); }
.proof-bar-wrap { flex: 1; height: 6px; background: var(--border); border-radius: 3px; overflow: hidden; }
.proof-bar { height: 100%; background: var(--orange); border-radius: 3px; transition: width 0.8s ease; }
.proof-val {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 14px; color: var(--orange);
  min-width: 40px; text-align: right;
}
.proof-note { font-size: 12px; color: var(--muted); margin-top: 6px; }
.goal-transform-grid { display: flex; gap: 12px; align-items: center; }
.transform-card {
  flex: 1;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px;
  text-align: center;
}
.transform-card .t-val {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: 32px; color: var(--orange); line-height: 1;
}
.transform-card .t-label {
  font-size: 12px; color: var(--muted); margin-top: 4px;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.transform-arrow {
  display: flex; align-items: center; justify-content: center;
  color: var(--orange); padding: 0 4px;
}

.goal-photo-placeholder {
  background: var(--bg3);
  border: 1px dashed var(--border-strong);
  border-radius: 10px;
  aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 8px;
  color: var(--muted);
}
.goal-photo-placeholder svg { width: 36px; height: 36px; color: var(--orange); opacity: 0.5; }
.goal-photo-placeholder span { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; }
.goal-photo {
  border-radius: 10px; overflow: hidden;
  aspect-ratio: 4/3; background: var(--bg3);
}
.goal-photo img { width: 100%; height: 100%; object-fit: cover; }

/* ─── TESTIMONIALS ─────────────────────────────────────── */
#testimonials { background: var(--bg); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}
@media (max-width: 720px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}
.testimonial {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  display: flex; flex-direction: column;
  gap: 18px;
  transition: border-color var(--transition), transform var(--transition);
  position: relative;
}
.testimonial:hover { border-color: rgba(255,107,0,0.4); transform: translateY(-4px); }
.testimonial::before {
  content: '"';
  position: absolute;
  top: 16px; right: 24px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 80px; font-weight: 900;
  color: var(--orange);
  opacity: 0.15;
  line-height: 1;
}
.testimonial-stars { display: flex; gap: 2px; color: var(--orange); }
.testimonial-stars svg { width: 16px; height: 16px; }
.testimonial-text { color: #d6d6d6; font-size: 15px; line-height: 1.7; flex: 1; }
.testimonial-author {
  display: flex; align-items: center; gap: 12px;
  padding-top: 14px; border-top: 1px solid var(--border);
}
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--orange-dim);
  border: 1px solid rgba(255,107,0,0.3);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; color: var(--orange);
  font-size: 16px;
}
.testimonial-meta { display: flex; flex-direction: column; }
.testimonial-name { font-weight: 700; font-size: 14px; color: var(--text); }
.testimonial-result { font-size: 12px; color: var(--orange); letter-spacing: 0.04em; }

/* ─── PRICING ──────────────────────────────────────────── */
.pricing-tabs {
  display: flex;
  gap: 8px;
  margin: 48px 0 36px;
  background: var(--bg2);
  padding: 6px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  flex-wrap: wrap;
}
.ptab {
  flex: 1;
  min-width: 160px;
  padding: 12px 20px;
  border-radius: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  transition: background var(--transition), color var(--transition);
}
.ptab:hover { color: var(--text); }
.ptab.active { background: var(--orange); color: #000; }
.pricing-panel { display: none; }
.pricing-panel.active { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 840px) { .pricing-panel.active { grid-template-columns: 1fr; } }
.price-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.price-card:hover {
  border-color: rgba(255,107,0,0.5);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(255,107,0,0.12);
}
.price-card.popular {
  border-color: var(--orange);
  background: linear-gradient(160deg, #1f1200 0%, var(--card) 40%);
}
.price-card.popular::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--orange);
  color: #000;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 20px;
  align-self: flex-start;
}
.badge svg { width: 12px; height: 12px; }
.pc-days {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 42px;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}
.pc-days span { font-size: 16px; color: var(--muted); font-weight: 600; }
.pc-desc { font-size: 13px; color: var(--muted); margin-bottom: 28px; line-height: 1.5; }
.pc-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 52px;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 4px;
}
.pc-price span { font-size: 20px; font-weight: 600; color: var(--muted); }
.pc-price-note { font-size: 12px; color: var(--muted); margin-bottom: 28px; }
.pc-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
  flex: 1;
}
.pc-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: #d0d0d0; }
.pc-features li svg { width: 16px; height: 16px; color: var(--orange); flex-shrink: 0; margin-top: 2px; }
.pc-cta {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  transition: all var(--transition);
  display: block;
  border: 2px solid transparent;
  text-decoration: none;
}
.pc-cta-primary { background: var(--orange); color: #000; border-color: var(--orange); }
.pc-cta-primary:hover { background: var(--orange2); border-color: var(--orange2); box-shadow: 0 0 24px rgba(255,107,0,0.4); }
.pc-cta-outline { background: rgba(255,255,255,0.04); color: var(--text); border-color: var(--orange); }
.pc-cta-outline:hover { background: var(--orange); color: #000; }
.pricing-note { margin-top: 32px; text-align: center; font-size: 14px; color: var(--muted); }
.pricing-note strong { color: var(--orange); }

/* ─── STEPS (Jak to działa) ────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
@media (max-width: 900px) { .steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .steps-grid { grid-template-columns: 1fr; } }

.step-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  position: relative;
  transition: border-color var(--transition), transform var(--transition);
}
.step-item:hover {
  border-color: rgba(255,107,0,0.4);
  transform: translateY(-4px);
}
.step-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 48px;
  color: var(--orange-dim);
  line-height: 1;
  margin-bottom: 12px;
  /* vibrant orange outline effect */
  -webkit-text-stroke: 1px rgba(255,107,0,0.35);
  color: transparent;
}
.step-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--white);
  letter-spacing: 0.02em;
  margin-bottom: 10px;
}
.step-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* ─── REFERRAL ─────────────────────────────────────────── */
.referral-section { padding: clamp(48px, 8vw, 80px) clamp(16px, 5vw, 60px); }
.referral-section.alt { background: var(--bg2); }
.referral-box {
  max-width: 1200px;
  margin: 0 auto;
  background: linear-gradient(135deg, #1a0d00 0%, var(--card) 100%);
  border: 1px solid rgba(255,107,0,0.3);
  border-radius: 20px;
  padding: clamp(32px, 6vw, 64px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.referral-box::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(255,107,0,0.12) 0%, transparent 70%);
  pointer-events: none;
}
@media (max-width: 640px) { .referral-box { grid-template-columns: 1fr; } }
.referral-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 5vw, 46px);
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 12px;
}
.referral-title .accent { color: var(--orange); }
.referral-desc { font-size: 15px; color: var(--muted); line-height: 1.65; max-width: 480px; }
.referral-desc strong { color: var(--text); }
.referral-code-box {
  background: var(--bg);
  border: 2px dashed var(--orange);
  border-radius: 12px;
  padding: 20px 28px;
  text-align: center;
  min-width: 180px;
}
.referral-code-box .rc-label { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.referral-code-box .rc-code { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 32px; color: var(--orange); letter-spacing: 0.08em; }
.referral-code-box .rc-disc { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 16px; color: var(--text); margin-top: 6px; }

/* ─── CONTACT ──────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  margin-top: 52px;
  align-items: start;
}
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
  transition: border-color var(--transition), transform var(--transition);
}
a.contact-card:hover { border-color: rgba(255,107,0,0.4); transform: translateX(4px); }
.contact-card-icon {
  width: 44px; height: 44px;
  background: var(--orange-dim);
  border: 1px solid rgba(255,107,0,0.25);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-card-icon svg { width: 20px; height: 20px; color: var(--orange); }
.contact-card-label { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.contact-card-val { font-weight: 600; font-size: 15px; color: var(--text); }
.contact-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }
.btn-ig {
  display: flex; align-items: center; gap: 8px;
  background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888);
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 15px; letter-spacing: 0.04em; text-transform: uppercase;
  padding: 12px 22px; border-radius: 10px;
  transition: opacity var(--transition), box-shadow var(--transition), transform var(--transition);
}
.btn-ig:hover { opacity: 0.9; box-shadow: 0 0 20px rgba(220,39,67,0.3); transform: translateY(-2px); }
.btn-ig svg { width: 18px; height: 18px; }
.btn-wa {
  display: flex; align-items: center; gap: 8px;
  background: #25D366; color: #000;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 15px; letter-spacing: 0.04em; text-transform: uppercase;
  padding: 12px 22px; border-radius: 10px;
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
}
.btn-wa:hover { background: #1db954; box-shadow: 0 0 20px rgba(37,211,102,0.3); transform: translateY(-2px); }
.btn-wa svg { width: 18px; height: 18px; }

/* ─── FORM ─────────────────────────────────────────────── */
.form-wrap {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
}
.form-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 24px; text-transform: uppercase;
  letter-spacing: 0.02em; margin-bottom: 24px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 500px) { .form-row { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.form-group label { font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.form-group label .req { color: var(--orange); }
.form-group input,
.form-group textarea,
.form-group select {
  background: var(--bg2);
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  padding: 11px 14px;
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,107,0,0.15);
}
.form-group input.invalid,
.form-group textarea.invalid,
.form-group select.invalid {
  border-color: #ff4d4d;
  box-shadow: 0 0 0 3px rgba(255,77,77,0.12);
}
.form-group textarea { resize: vertical; min-height: 90px; }
.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='none' stroke='%23FF6B00' stroke-width='2' d='M1 1l5 5 5-5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.form-group .field-error { font-size: 12px; color: #ff6b6b; margin-top: 2px; display: none; }
.form-group.has-error .field-error { display: block; }

.consent-row {
  display: flex; gap: 10px; align-items: flex-start;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 14px;
}
.consent-row input[type="checkbox"] {
  width: 18px; height: 18px;
  flex-shrink: 0; margin-top: 2px;
  accent-color: var(--orange);
  cursor: pointer;
}
.consent-row label { font-size: 12px; color: var(--muted); line-height: 1.55; cursor: pointer; }
.consent-row label a { color: var(--orange); text-decoration: underline; }
.consent-row.has-error { border-color: #ff4d4d; }

.form-submit {
  width: 100%;
  padding: 14px;
  background: var(--orange);
  color: #000;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 18px; letter-spacing: 0.06em; text-transform: uppercase;
  border-radius: 10px; border: 2px solid var(--orange);
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
  margin-top: 8px;
}
.form-submit:hover:not(:disabled) {
  background: var(--orange2); border-color: var(--orange2);
  box-shadow: 0 0 28px rgba(255,107,0,0.4);
  transform: translateY(-2px);
}
.form-submit:active { transform: translateY(0); }
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; }

.form-feedback {
  display: none;
  border-radius: 10px;
  padding: 16px 20px;
  text-align: center;
  font-weight: 600;
  margin-top: 12px;
}
.form-feedback.show { display: block; }
.form-feedback.success { background: rgba(37,211,102,0.08); border: 1px solid #25D366; color: #25D366; }
.form-feedback.error { background: rgba(255,77,77,0.08); border: 1px solid #ff4d4d; color: #ff8080; }

/* ─── ANKIETA ──────────────────────────────────────────── */
.ankieta-box { max-width: 760px; margin: 0 auto; }
.ankieta-box .form-wrap { background: var(--bg2); }
.check-group { display: flex; flex-wrap: wrap; gap: 10px; }
.check-label {
  display: flex; align-items: center; gap: 8px;
  background: var(--bg3); border: 1.5px solid var(--border-strong);
  border-radius: 8px; padding: 9px 16px;
  cursor: pointer; font-size: 14px; font-weight: 500;
  transition: border-color var(--transition), background var(--transition), color var(--transition);
  user-select: none;
}
.check-label input { display: none; }
.check-label:hover { border-color: rgba(255,107,0,0.4); }
.check-label:has(input:checked) { border-color: var(--orange); background: var(--orange-dim); color: var(--orange); }
.radio-group { display: flex; flex-wrap: wrap; gap: 10px; }
.radio-label {
  display: flex; align-items: center; justify-content: center;
  background: var(--bg3); border: 1.5px solid var(--border-strong);
  border-radius: 8px; padding: 9px 20px;
  cursor: pointer; font-size: 14px; font-weight: 600;
  transition: border-color var(--transition), background var(--transition), color var(--transition);
  user-select: none; min-width: 60px;
}
.radio-label input { display: none; }
.radio-label:hover { border-color: rgba(255,107,0,0.4); }
.radio-label:has(input:checked) { border-color: var(--orange); background: var(--orange-dim); color: var(--orange); }

/* ─── GALERIA PRZEMIAN ─────────────────────────────────── */
#galeria { background: var(--bg3); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 52px;
}
@media (max-width: 860px) { .gallery-grid { grid-template-columns: 1fr; } }

.gallery-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.gallery-card:hover {
  border-color: rgba(255,107,0,0.45);
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(255,107,0,0.1);
}
.gallery-card.featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
}
@media (max-width: 860px) { .gallery-card.featured { grid-template-columns: 1fr; grid-column: auto; } }

/* ── Before / After drag slider ── */
.ba-slider {
  position: relative;
  overflow: hidden;
  user-select: none;
  touch-action: pan-y;
  background: var(--bg2);
  cursor: ew-resize;
}
.ba-slider .ba-before,
.ba-slider .ba-after {
  display: block;
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
  pointer-events: none;
}
.ba-slider .ba-before {
  position: relative;
  z-index: 1;
}
.ba-slider .ba-after {
  position: absolute;
  inset: 0;
  z-index: 2;
  /* clip-path updated by JS – default ~5% (start at "before") */
  clip-path: inset(0 95% 0 0);
  transition: clip-path 0s;   /* no transition during drag */
}
.ba-slider.ba-ready .ba-after {
  transition: clip-path 0s;   /* stays instant during drag */
}
/* divider line + handle */
.ba-divider {
  position: absolute;
  top: 0; bottom: 0;
  left: 5%; /* JS overrides this; matches initial pct=5 */
  width: 3px;
  background: var(--orange);
  z-index: 10;
  transform: translateX(-50%);
  pointer-events: none;
}
.ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px; height: 44px;
  background: var(--orange);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 3px rgba(255,107,0,0.3), 0 4px 16px rgba(0,0,0,0.5);
  color: #000;
  transition: transform var(--transition), box-shadow var(--transition);
  animation: handle-pulse 2s ease 0.8s 3;
}
@keyframes handle-pulse {
  0%   { box-shadow: 0 0 0 3px rgba(255,107,0,0.3), 0 4px 16px rgba(0,0,0,0.5); }
  50%  { box-shadow: 0 0 0 10px rgba(255,107,0,0.15), 0 4px 16px rgba(0,0,0,0.5); }
  100% { box-shadow: 0 0 0 3px rgba(255,107,0,0.3), 0 4px 16px rgba(0,0,0,0.5); }
}
.ba-slider:active .ba-handle,
.ba-slider.dragging .ba-handle {
  transform: translate(-50%, -50%) scale(1.15);
  box-shadow: 0 0 0 6px rgba(255,107,0,0.25), 0 6px 24px rgba(0,0,0,0.6);
}
.ba-handle svg { width: 20px; height: 20px; flex-shrink: 0; }
/* labels */
.ba-label {
  position: absolute;
  bottom: 14px;
  z-index: 12;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  pointer-events: none;
}
.ba-label.before {
  left: 12px;
  background: rgba(10,10,10,0.85);
  color: #e0e0e0;
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(4px);
}
.ba-label.after {
  right: 12px;
  background: var(--orange);
  color: #000;
  z-index: 13; /* always on top */
  box-shadow: 0 2px 12px rgba(255,107,0,0.45);
}
/* hint arrow — points right since slider starts at "before" */
.ba-hint {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex; align-items: center; gap: 8px;
  background: rgba(10,10,10,0.75);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,107,0,0.35);
  border-radius: 100px;
  color: #fff;
  font-size: 12px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 18px;
  z-index: 14;
  white-space: nowrap;
  animation: hint-fade 3s ease 0.6s forwards;
  pointer-events: none;
}
@keyframes hint-fade {
  0%   { opacity: 1; transform: translate(-50%, -50%); }
  70%  { opacity: 1; transform: translate(-50%, -50%); }
  100% { opacity: 0; transform: translate(-50%, -50%); }
}

/* Single photo card */
.gallery-single img {
  width: 100%;
  aspect-ratio: 3/5;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.4s ease;
}
.gallery-card:hover .gallery-single img { transform: scale(1.03); }
.gallery-single { overflow: hidden; }

.gallery-info {
  padding: 22px 24px 24px;
}
.gallery-info.featured-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 36px 40px;
}
@media (max-width: 860px) { .gallery-info.featured-info { padding: 24px; } }

.gallery-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--orange-dim);
  border: 1px solid rgba(255,107,0,0.3);
  color: var(--orange);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.gallery-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(22px, 3vw, 32px);
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 6px;
}
.gallery-result {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 4vw, 46px);
  color: var(--orange);
  line-height: 1;
  margin-bottom: 12px;
}
.gallery-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 380px;
}
.gallery-meta {
  display: flex;
  gap: 16px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.gallery-meta-item {
  display: flex;
  flex-direction: column;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 16px;
  min-width: 80px;
}
.gallery-meta-item .gmv {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 22px;
  color: var(--text);
  line-height: 1;
}
.gallery-meta-item .gml {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 3px;
}

/* ─── FAQ ──────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 12px; margin-top: 40px; }
.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  transition: border-color var(--transition);
}
.faq-item[open] { border-color: rgba(255,107,0,0.4); }
.faq-item summary {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 18px;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  cursor: pointer;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .faq-toggle {
  color: var(--orange); font-size: 22px;
  flex-shrink: 0; transition: transform var(--transition);
  font-weight: 400;
}
.faq-item[open] summary .faq-toggle { transform: rotate(45deg); }
.faq-item p { margin-top: 14px; font-size: 15px; color: #c0c0c0; line-height: 1.75; }

/* ─── FOOTER ───────────────────────────────────────────── */
footer {
  background: #050505;
  border-top: 1px solid var(--border);
  padding: clamp(40px, 6vw, 64px) clamp(16px, 5vw, 60px) 32px;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: start;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}
@media (max-width: 600px) { .footer-top { grid-template-columns: 1fr; } }
.footer-brand {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: 32px; text-transform: uppercase;
  line-height: 1; margin-bottom: 10px;
}
.footer-brand .accent { color: var(--orange); }
.footer-tagline { font-size: 14px; color: var(--muted); max-width: 320px; line-height: 1.6; }
.footer-socials { display: flex; gap: 12px; align-items: center; }
.social-btn {
  width: 44px; height: 44px;
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}
.social-btn:hover { border-color: var(--orange); background: var(--orange-dim); transform: translateY(-2px); }
.social-btn svg { width: 20px; height: 20px; color: var(--text); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-links { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-links a { font-size: 13px; color: var(--muted); transition: color var(--transition); }
.footer-links a:hover { color: var(--orange); }
.footer-copy { font-size: 13px; color: var(--muted); }
.footer-copy .accent { color: var(--orange); }
.footer-loc { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--muted); }
.footer-loc svg { width: 14px; height: 14px; color: var(--orange); }
.risenly-link { color: rgba(240,240,240,0.7); font-weight: 600; transition: color var(--transition); }
.risenly-link:hover { color: var(--orange); }

/* ─── LEGAL PAGE ───────────────────────────────────────── */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 80px) clamp(16px, 5vw, 60px);
}
.legal-content h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: clamp(36px, 6vw, 56px);
  text-transform: uppercase; letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.legal-content h1 .accent { color: var(--orange); }
.legal-content h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 22px;
  text-transform: uppercase; letter-spacing: 0.02em;
  margin-top: 32px; margin-bottom: 12px;
  color: var(--orange);
}
.legal-content p, .legal-content li { color: #c8c8c8; line-height: 1.75; margin-bottom: 12px; font-size: 15px; }
.legal-content ul, .legal-content ol { padding-left: 22px; margin-bottom: 16px; }
.legal-content a { color: var(--orange); text-decoration: underline; }
.legal-meta { color: var(--muted); font-size: 13px; margin-bottom: 32px; }

/* ─── SCROLL REVEAL ────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ─── REDUCED MOTION ───────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
