/* ===========================
   BRAND GUIDELINES TOKENS
   ===========================
   ACCESSIBILITY AUDIT — WCAG 2.1 AA
   ===========================
   Typography: reduced from ~10 sizes to 4 body + headings
   Contrast: all pairs verified ≥ 4.5:1 (normal) or ≥ 3:1 (large)
   Focus: :focus-visible on all interactive elements
   Motion: prefers-reduced-motion respected
   Font optimization: Removed Inter Tight (only used once), using Inter 800+ instead
   =========================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* 60-30-10 Color System — LIGHT THEME */
  --color-60: #FFFFFF;
  --color-30: #F5F5F7;
  --color-30-mid: #E8E8ED;
  --color-30-dark: #D1D1D6;
  --color-10: #FFDE59;
  --color-10-dark: #F5C800;
  --color-10-glow: rgba(255, 222, 89, 0.4);

  /* PITCH GREEN (Boiksowa Zieleń - nowość) */
  --color-pitch: #184524;
  --color-pitch-dark: #0f2e17;
  --bg-pitch: repeating-linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.03) 0px,
    rgba(255, 255, 255, 0.03) 24px,
    rgba(0, 0, 0, 0.04) 24px,
    rgba(0, 0, 0, 0.04) 48px
  ), linear-gradient(135deg, var(--color-pitch), var(--color-pitch-dark));

  /* Text */
  --text-primary: #1D1D1F;
  --text-secondary: #595959;
  --text-tertiary: #717171;

  /* Accent — WCAG AA: 4.63:1 on white */
  --accent-text: #946F00;

  /* Light text on dark bg */
  --light-body: rgba(255,255,255,0.82);
  --light-secondary: rgba(255,255,255,0.68);
  --light-tertiary: rgba(255,255,255,0.55);

  /* Text on yellow bg */
  --on-yellow: rgba(0,0,0,0.72);

  /* Dark surfaces (for cards, solution, CTA, footer) */
  --surface-dark: #1D1D1F;
  --surface-dark-elevated: #2C2C2E;

  /* Typography scale */
  --text-sm: 14px;
  --text-base: 16px;
  --text-lg: 18px;

  /* Spacing (8pt system) */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 48px;
  --space-xl: 80px;
  --space-xxl: 120px;

  /* Border radius */
  --radius-icon: 6px;
  --radius-logo: 10px;
  --radius-input: 12px;
  --radius-card: 16px;
  --radius-card-lg: 20px;
  --radius-pill: 980px;

  /* Shadows */
  --shadow-card: 0 1px 3px rgba(0,0,0,0.06), 0 4px 16px rgba(0,0,0,0.04);
  --shadow-card-hover: 0 4px 12px rgba(0,0,0,0.08), 0 16px 40px rgba(0,0,0,0.08);
  --shadow-elevated: 0 8px 32px rgba(0,0,0,0.10), 0 2px 8px rgba(0,0,0,0.06);

  /* Typography */
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Focus ring */
  --focus-ring: 0 0 0 3px rgba(148, 111, 0, 0.55);

  /* Transitions */
  --transition: 0.2s ease;

  /* Navbar */
  --navbar-bg: rgba(255,255,255,0.72);
  --navbar-bg-scrolled: rgba(255,255,255,0.92);
  --navbar-border: var(--color-30-mid);

  /* Hero background */
  --hero-bg: var(--color-60);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font);
  background: var(--color-60);
  color: var(--text-primary);
  font-size: var(--text-base);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

/* ===========================
   SCROLL PROGRESS BAR
   =========================== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--color-10), var(--color-10-dark));
  z-index: 10001;
  transition: width 0.05s linear;
  box-shadow: 0 0 8px var(--color-10-glow);
}

/* ===========================
   SKIP LINK (a11y)
   =========================== */
.skip-link {
  position: absolute;
  top: -100px;
  left: var(--space-sm);
  background: var(--text-primary);
  color: var(--color-60);
  padding: 12px 24px;
  border-radius: var(--radius-card);
  font-size: var(--text-base);
  font-weight: 600;
  z-index: 10000;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: var(--space-sm);
  outline: none;
  box-shadow: var(--focus-ring);
}

/* ===========================
   FOCUS STATES (a11y)
   =========================== */
:focus-visible {
  outline: 3px solid var(--accent-text);
  outline-offset: 3px;
  border-radius: 4px;
}

.btn:focus-visible {
  outline: 3px solid var(--text-primary);
  outline-offset: 3px;
}

.btn-primary:focus-visible {
  outline-color: var(--text-primary);
}

.btn-secondary-white:focus-visible {
  outline-color: var(--color-60);
}

.nav-links .nav-cta:focus-visible {
  outline-color: var(--text-primary);
}

.nav-toggle:focus-visible {
  outline: 3px solid var(--accent-text);
  outline-offset: 3px;
  border-radius: 4px;
}

.cta-section a:focus-visible,
.footer a:focus-visible {
  outline-color: var(--color-10);
}

/* ===========================
   TYPOGRAPHY SCALE
   =========================== */
.t-display {
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 800;
  line-height: 1.0;
  color: var(--text-primary);
}

.t-h1 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-primary);
}

.t-h2 {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}

.t-h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-primary);
}

.t-caption {
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-tertiary);
}

/* ===========================
   SECTION LABELS & HEADERS
   =========================== */
.section-label {
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: var(--space-sm);
  display: block;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.section-header .t-h2 {
  margin-top: 8px;
  margin-bottom: 0;
}

/* ===========================
   TAGS / BADGES
   =========================== */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--color-30);
  border-radius: var(--radius-pill);
  padding: 5px 14px;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-secondary);
}

.tag-accent {
  background: rgba(255, 222, 89, 0.25);
  color: #6B5200;
}

.tag-green {
  background: rgba(48, 209, 88, 0.15);
  color: #1A6B2E;
}

.tag-dark {
  background: var(--text-primary);
  color: var(--color-60);
}

/* ===========================
   BUTTONS
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-size: var(--text-base);
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  border: none;
  text-decoration: none;
  white-space: nowrap;
  min-height: 44px;
}

.btn-primary {
  background: var(--color-10);
  color: #1D1D1F;
}

.btn-primary:hover {
  background: var(--color-10-dark);
  transform: scale(0.98);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--color-30-dark);
}

.btn-secondary:hover {
  border-color: var(--text-primary);
  transform: scale(0.98);
}

.btn-secondary-white {
  background: transparent;
  color: var(--color-60);
  border: 1.5px solid rgba(255,255,255,0.5);
}

.btn-secondary-white:hover {
  border-color: rgba(255,255,255,0.85);
  transform: scale(0.98);
}

.btn-sm {
  font-size: var(--text-sm);
  padding: 8px 16px;
  min-height: 44px;
}

.btn-lg {
  font-size: var(--text-lg);
  padding: 16px 32px;
}

.btn-full {
  width: 100%;
}

/* ===== CTA PULSE ANIMATION ===== */
.btn-cta-pulse {
  position: relative;
  overflow: visible;
}

.btn-cta-pulse::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: var(--radius-pill);
  background: var(--color-10);
  opacity: 0;
  z-index: -1;
  animation: ctaPulse 2.5s ease-in-out infinite;
}

@keyframes ctaPulse {
  0%, 100% { opacity: 0; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(1.04); }
}

/* ===========================
   NAVBAR
   =========================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 64px;
  display: flex;
  align-items: center;
  padding: 0 var(--space-lg);
  background: var(--navbar-bg);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--navbar-border);
  transition: background var(--transition), border-color var(--transition);
}

.navbar.scrolled {
  background: var(--navbar-bg-scrolled);
  border-bottom-color: var(--navbar-border);
}

.nav-inner {
  max-width: 1080px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo-img {
  height: 44px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  list-style: none;
}

.nav-links a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-secondary);
  padding: 10px 14px;
  border-radius: var(--radius-pill);
  transition: color var(--transition), background var(--transition);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.nav-links a:hover {
  color: var(--text-primary);
  background: var(--color-30);
}

.nav-links a.active {
  color: var(--text-primary);
}

.nav-links .nav-cta {
  background: var(--color-10);
  color: #1D1D1F;
  font-weight: 600;
  padding: 10px 18px;
}

.nav-links .nav-cta:hover {
  background: var(--color-10-dark);
  color: #1D1D1F;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ===========================
   STICKY MOBILE CTA
   =========================== */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 12px var(--space-sm);
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--color-30-mid);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: none;
}

.sticky-cta.visible {
  transform: translateY(0);
}

.btn-sticky {
  width: 100%;
  font-size: 15px;
  padding: 14px 20px;
  border-radius: var(--radius-pill);
  font-weight: 700;
}

.btn-sticky strong {
  color: inherit;
}

/* ===========================
   HERO
   =========================== */
.hero {
  padding-top: calc(64px + var(--space-xxl));
  padding-bottom: 0;
  background: var(--hero-bg);
  position: relative;
  overflow: hidden;
}

/* Hero gradient orbs for parallax-like depth */
.hero-bg-effects {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  will-change: transform;
}

.hero-gradient-orb--1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 222, 89, 0.3) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  animation: orbFloat1 8s ease-in-out infinite;
}

.hero-gradient-orb--2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 222, 89, 0.15) 0%, transparent 70%);
  bottom: 0;
  left: -150px;
  animation: orbFloat2 10s ease-in-out infinite;
}

.hero-gradient-orb--3 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(245, 200, 0, 0.12) 0%, transparent 70%);
  top: 40%;
  left: 50%;
  animation: orbFloat3 7s ease-in-out infinite;
}

@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-30px, 20px) scale(1.05); }
}

@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -30px) scale(1.1); }
}

@keyframes orbFloat3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-15px, -20px) scale(0.95); }
}

.hero-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-lg);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text {
  min-width: 0;
}

.hero-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo-img {
  width: 320px;
  height: auto;
  filter: drop-shadow(0 8px 32px rgba(0,0,0,0.10));
  animation: logoFloat 4s ease-in-out infinite;
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: var(--space-md);
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: #30D158;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

.hero-title {
  font-size: clamp(44px, 7vw, 72px);
  font-weight: 800;
  font-family: var(--font);
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
}

.hero-title .accent {
  background: linear-gradient(135deg, #F5C800 0%, #E8A000 50%, #D4820A 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 520px;
  margin-bottom: var(--space-md);
  font-weight: 400;
}

/* ===== URGENCY BADGE ===== */
.urgency-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 59, 48, 0.08);
  border: 1px solid rgba(255, 59, 48, 0.2);
  border-radius: var(--radius-pill);
  padding: 8px 18px;
  margin-bottom: var(--space-md);
  animation: urgencyFadeIn 0.6s ease 0.5s both;
}

@keyframes urgencyFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.urgency-pulse {
  width: 8px;
  height: 8px;
  background: #FF3B30;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
  flex-shrink: 0;
}

.urgency-text {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-secondary);
}

.urgency-text strong {
  color: #D32F2F;
  font-weight: 700;
  display: inline-block;
  animation: textPulse 1.8s ease-in-out infinite;
}

@keyframes textPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.08); }
}

.hero-actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-bottom: var(--space-xl);
}

/* Hero stats bar */
.hero-stats-bar {
  background: var(--color-30);
  border-radius: var(--radius-card-lg) var(--radius-card-lg) 0 0;
  padding: var(--space-md) var(--space-lg);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  max-width: 1080px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.stat-card {
  background: var(--color-60);
  border-radius: var(--radius-card);
  padding: var(--space-sm) var(--space-md);
  text-align: center;
}

.stat-card.stat-highlight {
  background-color: var(--color-pitch);
  background-image: var(--bg-pitch);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-card-value {
  font-size: 28px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-highlight .stat-card-value {
  color: #FFFFFF;
}

.stat-card-label {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-secondary);
}

.stat-highlight .stat-card-label {
  color: rgba(255, 255, 255, 0.85);
}

/* ===========================
   SECTION WRAPPER
   =========================== */
.section-white {
  background: var(--color-60);
  padding: var(--space-xxl) 0;
}

.section-grey {
  background: var(--color-30);
  padding: var(--space-xxl) 0;
}

/* ===========================
   TRIGGER / PROBLEM-SOLUTION
   =========================== */
.trigger-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: start;
}

.trigger-problem .t-h2 {
  margin-top: 8px;
  margin-bottom: var(--space-md);
}

.trigger-problem p {
  color: var(--text-secondary);
  font-size: var(--text-base);
  line-height: 1.65;
  margin-bottom: var(--space-sm);
}

.problem-icons {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-md);
  flex-wrap: wrap;
}

.problem-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  text-align: center;
}

.problem-icon {
  width: 48px;
  height: 48px;
  background: var(--color-30);
  border-radius: var(--radius-card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.problem-icon-item span {
  font-size: var(--text-sm);
  color: var(--text-tertiary);
  font-weight: 500;
  max-width: 80px;
  line-height: 1.3;
}

/* Solution card */
.solution-card {
  background: var(--surface-dark);
  color: var(--color-60);
  padding: var(--space-lg);
  border-radius: var(--radius-card-lg);
  position: relative;
  overflow: hidden;
}

.solution-card::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: var(--color-10);
  opacity: 0.06;
  border-radius: 50%;
}

.solution-icon {
  font-size: 2rem;
  margin-bottom: var(--space-sm);
}

.solution-card .section-label {
  color: var(--color-10);
}

.solution-card .t-h2 {
  color: #F5F5F7;
  margin-top: 8px;
  margin-bottom: var(--space-md);
}

.solution-card p {
  color: var(--light-body);
  font-size: var(--text-base);
  line-height: 1.65;
  margin-bottom: var(--space-sm);
}

.solution-card strong {
  color: var(--color-10);
}

/* ===========================
   WHY US — WITH GLOW EFFECT
   =========================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.why-card {
  background: var(--color-60);
  padding: var(--space-md);
  border-radius: var(--radius-card-lg);
  box-shadow: var(--shadow-card);
  border: 1px solid transparent;
  transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
}

/* Animated glow effect on hover */
.why-card--glow {
  position: relative;
  overflow: hidden;
}

.why-card--glow::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--radius-card-lg) + 2px);
  background: conic-gradient(
    from var(--glow-angle, 0deg),
    transparent 0%,
    var(--color-10) 10%,
    var(--color-10-dark) 20%,
    transparent 30%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -2;
}

.why-card--glow::after {
  content: '';
  position: absolute;
  inset: 2px;
  border-radius: calc(var(--radius-card-lg) - 2px);
  background: var(--color-60);
  z-index: -1;
  transition: background 0.3s ease;
}

.why-card--glow:hover::before {
  opacity: 1;
  animation: glowSpin 3s linear infinite;
}

.why-card--glow:hover {
  box-shadow: 0 0 24px var(--color-10-glow), var(--shadow-card-hover);
  transform: translateY(-3px);
}

@keyframes glowSpin {
  from { --glow-angle: 0deg; }
  to { --glow-angle: 360deg; }
}

@property --glow-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

.why-card--featured {
  background: var(--surface-dark);
  border-color: transparent;
}

.why-card--featured .why-card-title {
  color: #F5F5F7;
}

.why-card--featured .why-card-body {
  color: var(--light-body);
}

.why-card--featured.why-card--glow::after {
  background: var(--surface-dark);
}

.why-card-num {
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: var(--space-sm);
}

.why-card--featured .why-card-num {
  color: var(--light-tertiary);
}

.why-card-icon {
  font-size: 1.75rem;
  margin-bottom: var(--space-sm);
}

.why-card-title {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
}

.why-card-body {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Extra checklist */
.why-extras {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xs);
}

.why-extra-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--color-60);
  padding: 12px var(--space-sm);
  border-radius: var(--radius-card);
  font-size: var(--text-base);
  color: var(--text-secondary);
  box-shadow: var(--shadow-card);
}

.check-circle {
  width: 22px;
  height: 22px;
  background: rgba(48, 209, 88, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: #1A6B2E;
  font-weight: 700;
  flex-shrink: 0;
}

/* ===========================
   FOR WHO
   =========================== */
.for-who-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.for-who-image {
  position: relative;
}

.for-who-image img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius-card-lg);
  box-shadow: var(--shadow-elevated);
}

.image-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background-color: var(--color-pitch);
  background-image: var(--bg-pitch);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-card);
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.badge-emoji {
  font-size: 1.75rem;
}

.image-badge-text {
  font-size: var(--text-sm);
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.3;
}

.for-who-content .t-h2 {
  margin-top: 8px;
  margin-bottom: var(--space-md);
}

.for-who-list {
  list-style: none;
  margin-bottom: var(--space-md);
}

.for-who-list li {
  display: flex;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--color-30-mid);
}

.for-who-list li:last-child {
  border-bottom: none;
}

.list-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.for-who-list li div {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: 1.6;
}

.for-who-list li strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* ===========================
   SCHEDULE
   =========================== */
.schedule-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.schedule-card {
  background: var(--color-60);
  border-radius: var(--radius-card-lg);
  padding: var(--space-md);
  text-align: center;
  box-shadow: var(--shadow-card);
  border: 1.5px solid transparent;
  transition: border-color var(--transition), transform var(--transition);
}

.schedule-card:hover {
  border-color: var(--color-10-dark);
  transform: translateY(-2px);
}

.schedule-card--featured {
  background-color: var(--color-pitch);
  background-image: var(--bg-pitch);
  border-color: rgba(255, 255, 255, 0.08);
}

.schedule-card--featured:hover {
  border-color: rgba(255, 255, 255, 0.25);
}

.schedule-day {
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: var(--space-xs);
}

.schedule-card--featured .schedule-day {
  color: rgba(255, 255, 255, 0.85);
}

.schedule-time {
  font-size: 26px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.schedule-card--featured .schedule-time {
  color: #FFFFFF;
}

.schedule-location {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.schedule-card--featured .schedule-location {
  color: rgba(255, 255, 255, 0.85);
}

.schedule-note {
  background: var(--color-60);
  border-radius: var(--radius-card);
  border-left: 3px solid var(--color-10-dark);
  padding: var(--space-sm) var(--space-md);
  font-size: var(--text-base);
  color: var(--text-secondary);
  display: flex;
  align-items: flex-start;
  gap: var(--space-xs);
  margin-bottom: var(--space-xl);
  box-shadow: var(--shadow-card);
}

/* PRICING */
.pricing-wrap {
  max-width: 440px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--color-60);
  border-radius: var(--radius-card-lg);
  overflow: hidden;
  box-shadow: var(--shadow-elevated);
}

.pricing-header {
  background-color: var(--color-pitch);
  background-image: var(--bg-pitch);
  padding: var(--space-lg) var(--space-lg) var(--space-md);
  text-align: center;
}

.pricing-label {
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--space-sm);
}

.pricing-price-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 2px;
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.pricing-amount {
  font-size: 72px;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1;
}

.pricing-currency {
  font-size: 24px;
  font-weight: 700;
  color: #FFFFFF;
  margin-top: 12px;
}

.pricing-period {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

.pricing-features {
  list-style: none;
  padding: var(--space-md) var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--text-base);
  color: var(--text-secondary);
}

.pricing-features .check-circle {
  flex-shrink: 0;
}

.pricing-cta {
  padding: 0 var(--space-lg) var(--space-lg);
}

/* ===========================
   COACH
   =========================== */
.coach-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.coach-badges {
  display: flex;
  gap: var(--space-xs);
  flex-wrap: wrap;
  margin-bottom: var(--space-md);
}

.coach-content .t-h2 {
  margin-top: 8px;
  margin-bottom: var(--space-xs);
}

.coach-content p {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: var(--space-sm);
}

.coach-content strong {
  color: var(--text-primary);
  font-weight: 600;
}

.coach-values {
  display: flex;
  gap: var(--space-xs);
  flex-wrap: wrap;
  margin-top: var(--space-md);
}

.coach-value {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--color-30);
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-secondary);
}

.coach-image-wrap {
  position: relative;
}

.coach-img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: var(--radius-card-lg);
  box-shadow: var(--shadow-elevated);
}

.coach-quote {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background-color: var(--color-pitch);
  background-image: var(--bg-pitch);
  color: #F5F5F7;
  padding: var(--space-md);
  border-radius: var(--radius-card);
  max-width: 300px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 3px solid var(--color-10);
  box-shadow: var(--shadow-elevated);
}

.coach-quote blockquote {
  font-size: var(--text-base);
  font-style: italic;
  color: var(--light-body);
  line-height: 1.55;
  margin-bottom: var(--space-xs);
}

.coach-quote cite {
  font-size: var(--text-sm);
  color: var(--color-10);
  font-style: normal;
  font-weight: 600;
}

/* ===========================
   FAQ
   =========================== */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
}

.faq-item {
  background: var(--color-60);
  padding: var(--space-md);
  border-radius: var(--radius-card-lg);
  box-shadow: var(--shadow-card);
  border: 1.5px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.faq-item:hover {
  border-color: var(--color-10-dark);
  box-shadow: var(--shadow-card-hover);
}

.faq-q {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
}

.faq-a {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ===========================
   PARENT CODE
   =========================== */
.parent-code-intro {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  max-width: 540px;
  margin: var(--space-sm) auto var(--space-lg);
  text-align: center;
  line-height: 1.65;
}

.code-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-sm);
}

.code-item {
  background: var(--color-60);
  padding: var(--space-md);
  border-radius: var(--radius-card-lg);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
}

.code-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
}

.code-icon {
  font-size: 1.75rem;
  margin-bottom: var(--space-sm);
  display: block;
}

.code-item h4 {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
}

.code-item p {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ===========================
   PHILOSOPHY / "SKĄD TA NAZWA"
   =========================== */
.philosophy-inner {
  max-width: 640px;
  margin: var(--space-xl) auto 0;
  text-align: center;
  padding-top: var(--space-lg);
  border-top: 1px solid var(--color-30-mid);
}

.philosophy-inner .section-label {
  margin-bottom: var(--space-xs);
}

.philosophy-inner .t-h2 {
  margin-top: 8px;
  margin-bottom: var(--space-md);
}

.philosophy-body p {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: var(--space-sm);
}

.philosophy-accent {
  font-weight: 600;
  color: var(--text-primary) !important;
  margin-top: var(--space-md);
  font-size: clamp(18px, 2.5vw, 22px) !important;
  line-height: 1.5 !important;
}

/* ===========================
   CTA SECTION
   =========================== */
.cta-section {
  background: var(--surface-dark);
  padding: var(--space-xxl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: var(--color-10);
  opacity: 0.04;
  border-radius: 50%;
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
}

.cta-inner .section-label {
  color: var(--light-tertiary);
}

.cta-title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.05;
  color: #F5F5F7;
  margin-top: 8px;
  margin-bottom: var(--space-md);
}

.cta-subtitle {
  font-size: var(--text-lg);
  color: var(--light-body);
  max-width: 480px;
  margin: 0 auto var(--space-lg);
  line-height: 1.65;
}

.cta-subtitle strong {
  color: var(--color-10);
}

.cta-actions {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-md);
}

.cta-phone {
  margin-bottom: var(--space-sm);
}

.phone-link {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--color-10);
  transition: color var(--transition);
}

.phone-link:hover {
  color: var(--color-10-dark);
}

.cta-note {
  font-size: var(--text-sm);
  color: var(--light-tertiary);
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  background-color: var(--color-pitch);
  background-image: var(--bg-pitch);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: var(--space-lg) 0 var(--space-md);
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: var(--space-lg);
  align-items: start;
  padding-bottom: var(--space-md);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: var(--space-sm);
}

.footer-logo-img {
  height: auto;
  width: 200px;
}

.footer-name {
  font-size: var(--text-base);
  font-weight: 700;
  color: #F5F5F7;
  margin-bottom: 4px;
}

.footer-location {
  font-size: var(--text-sm);
  color: var(--light-secondary);
  margin-bottom: 6px;
}

.footer-contact a {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-10);
  transition: color var(--transition);
}

.footer-contact a:hover {
  color: var(--color-10-dark);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
}

.footer-links a {
  font-size: var(--text-sm);
  color: var(--light-secondary);
  transition: color var(--transition);
  padding: 4px 0;
  min-height: 32px;
  display: flex;
  align-items: center;
}

.footer-links a:hover {
  color: #F5F5F7;
}

.footer-bottom {
  text-align: center;
}

.footer-bottom p {
  font-size: var(--text-sm);
  color: var(--light-tertiary);
}

/* ===========================
   SCROLL REVEAL ANIMATIONS
   =========================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   REDUCED MOTION (a11y)
   =========================== */
@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;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-logo-img {
    animation: none;
  }

  .hero-badge-dot,
  .urgency-pulse,
  .urgency-text strong {
    animation: none;
  }

  .btn-cta-pulse::after {
    animation: none;
    display: none;
  }

  .why-card--glow:hover::before {
    animation: none;
  }

  .hero-gradient-orb {
    animation: none;
  }

  .why-card:hover,
  .code-item:hover,
  .schedule-card:hover {
    transform: none;
  }

  .btn:hover,
  .btn-primary:hover,
  .btn-secondary:hover,
  .btn-secondary-white:hover {
    transform: none;
  }

  .scroll-top {
    transition: none;
  }
}

/* ===========================
   POLITYKA COOKIES
   =========================== */
.cookies-page {
  /* Odstęp z góry (wysokość nawigacji 64px + bufor) oraz z dołu */
  padding-top: calc(64px + var(--space-xl));
  padding-bottom: var(--space-xxl);
}

/* Zwężamy kontener na tej podstronie, żeby ściana tekstu była czytelniejsza */
.cookies-page .container {
  max-width: 800px; 
}

.cookies-header {
  margin-bottom: var(--space-lg);
  border-bottom: 1px solid var(--color-30-mid);
  padding-bottom: var(--space-md);
}

.cookies-back {
  display: inline-block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-tertiary);
  margin-bottom: var(--space-sm);
  transition: color var(--transition);
}

.cookies-back:hover {
  color: var(--text-primary);
}

.cookies-updated {
  font-size: var(--text-sm);
  color: var(--text-tertiary);
  margin-top: var(--space-xs);
}

.cookies-section {
  margin-bottom: var(--space-lg);
}

.cookies-section h2 {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}

.cookies-category h3 {
  font-size: var(--text-base);
  font-weight: 600;
  margin-top: var(--space-md);
  margin-bottom: var(--space-xs);
  color: var(--text-primary);
}

.cookies-section p {
  color: var(--text-secondary);
  margin-bottom: var(--space-sm);
  line-height: 1.7;
}

/* Tabela z plikami cookies */
.cookies-table-wrap {
  overflow-x: auto;
  margin: var(--space-md) 0;
  border: 1px solid var(--color-30-mid);
  border-radius: var(--radius-card);
}

.cookies-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: var(--text-sm);
}

.cookies-table th,
.cookies-table td {
  padding: 12px var(--space-sm);
  border-bottom: 1px solid var(--color-30-mid);
}

.cookies-table th {
  background: var(--color-30);
  font-weight: 600;
  color: var(--text-primary);
}

.cookies-table tr:last-child td {
  border-bottom: none;
}

/* Kafelki z przeglądarkami */
.cookies-browsers {
  display: grid;
  gap: 12px;
  margin-top: var(--space-md);
}

.cookies-browser-item {
  background: var(--color-30);
  padding: var(--space-sm);
  border-radius: var(--radius-card);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cookies-browser-item strong {
  color: var(--text-primary);
  font-size: var(--text-base);
}

.cookies-browser-item span {
  font-size: var(--text-sm);
  color: var(--text-secondary);
}

/* Dolna sekcja z przyciskiem powrotu */
.cookies-footer-nav {
  margin-top: var(--space-xl);
  text-align: center;
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-30-mid);
}

/* ===========================
   SCROLL TO TOP
   =========================== */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 998;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--color-30-dark);
  background: var(--color-60);
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-card);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background var(--transition), border-color var(--transition);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--color-30);
  border-color: var(--text-secondary);
}

.scroll-top:focus-visible {
  outline: 3px solid var(--accent-text);
  outline-offset: 3px;
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: left;
  }

  /* Show logo on mobile — scaled down */
  .hero-logo-wrap {
    display: flex;
    justify-content: center;
    order: -1;
    margin-bottom: var(--space-sm);
  }

  .hero-logo-img {
    width: 180px;
  }

  .trigger-grid,
  .for-who-inner,
  .coach-inner {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-extras {
    grid-template-columns: 1fr;
  }

  .code-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-stats-bar {
    grid-template-columns: repeat(2, 1fr);
    border-radius: var(--radius-card-lg);
    margin: 0 var(--space-lg);
  }

  .coach-quote {
    position: static;
    margin-top: var(--space-md);
    max-width: 100%;
  }

  .image-badge {
    bottom: var(--space-sm);
    right: var(--space-sm);
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .footer-links {
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    gap: var(--space-sm);
  }

  /* Hide scroll-to-top on mobile (sticky CTA serves this role) */
  .scroll-top {
    display: none;
  }

  /* Show sticky CTA on tablet/mobile */
  .sticky-cta {
    display: block;
  }
}

@media (max-width: 768px) {
  :root {
    --space-xxl: 80px;
    --space-xl: 56px;
    --space-lg: 32px;
  }

  .container {
    padding: 0 var(--space-sm);
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navbar-bg-scrolled);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: var(--space-sm) var(--space-sm) var(--space-md);
    gap: 4px;
    border-bottom: 1px solid var(--navbar-border);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }

  .nav-links.open {
    display: flex;
  }

  /* Backdrop blur overlay behind mobile menu */
  .menu-backdrop {
    position: fixed;
    inset: 0;
    top: 64px;
    background: rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
  }

  .menu-backdrop.visible {
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    padding: 12px var(--space-sm);
    width: 100%;
    min-height: 44px;
  }

  .hero-stats-bar {
    grid-template-columns: repeat(2, 1fr);
    margin: 0 var(--space-sm);
  }

  .hero-logo-img {
    width: 140px;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .schedule-grid {
    grid-template-columns: 1fr;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .code-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .cta-actions .btn {
    width: 100%;
    max-width: 300px;
  }

  /* Extra bottom padding for sticky CTA */
  .footer {
    padding-bottom: calc(var(--space-md) + 70px);
  }
}

@media (max-width: 480px) {
  .hero-stats-bar {
    grid-template-columns: repeat(2, 1fr);
    padding: var(--space-sm);
    gap: var(--space-xs);
  }

  .navbar {
    padding: 0 var(--space-sm);
  }

  .solution-card {
    padding: var(--space-md);
  }

  .pricing-header {
    padding: var(--space-md);
  }

  .pricing-features,
  .pricing-cta {
    padding-left: var(--space-md);
    padding-right: var(--space-md);
  }

  .hero-logo-img {
    width: 120px;
  }
}

/* ===========================
   LUCIDE ICONS — Global Styles
   =========================== */

/* Base icon rendered by lucide.createIcons() */
.lucide {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

/* Inline icon (next to text — buttons, labels, headings) */
.icon-inline {
  width: 1em;
  height: 1em;
  vertical-align: -0.125em;
}

/* ── Problem icons (48 × 48 grey box) ── */
.problem-icon .lucide {
  width: 24px;
  height: 24px;
  color: var(--text-secondary);
}

/* ── Solution icon on dark card ── */
.solution-icon .lucide {
  width: 32px;
  height: 32px;
  color: var(--color-10);
}

/* ── Why-card icons ── */
.why-card-icon .lucide {
  width: 28px;
  height: 28px;
  color: var(--color-10-dark);
}

.why-card--featured .why-card-icon .lucide {
  color: var(--color-10);
}

/* ── Check circles ── */
.check-circle .lucide {
  width: 12px;
  height: 12px;
  stroke-width: 3;
  color: #1A6B2E;
}

/* ── Image badge (dark bg) ── */
.badge-emoji .lucide {
  width: 28px;
  height: 28px;
  color: var(--color-10);
}

/* ── For-who list icons ── */
.list-icon .lucide {
  width: 20px;
  height: 20px;
  color: var(--color-10-dark);
}

/* ── Schedule note info icon ── */
.schedule-note-icon .lucide {
  width: 20px;
  height: 20px;
  color: var(--color-10-dark);
  flex-shrink: 0;
}

/* ── Coach value pills ── */
.coach-value .lucide {
  width: 16px;
  height: 16px;
  color: var(--text-secondary);
}

/* ── Parent code icons (block-level) ── */
.code-icon .lucide {
  width: 28px;
  height: 28px;
  color: var(--color-10-dark);
}

/* ── Urgency badge ── */
.urgency-text .lucide {
  width: 14px;
  height: 14px;
  color: #D32F2F;
}

/* ── Sticky CTA button ── */
.btn-sticky .lucide {
  width: 18px;
  height: 18px;
}

/* ── CTA section buttons (dark bg) ── */
.cta-section .btn-primary .lucide {
  width: 20px;
  height: 20px;
}

.cta-section .btn-secondary-white .lucide {
  width: 20px;
  height: 20px;
}

/* ── Footer (dark bg) ── */
.footer .lucide {
  color: var(--light-secondary);
}

/* ── Cookie modal ── */
.cookie-modal-title .lucide {
  width: 22px;
  height: 22px;
  color: var(--color-10-dark);
}

/* ── Cookies & Dostępność subpage headings ── */
.cookies-category h3 .lucide {
  width: 18px;
  height: 18px;
  color: var(--color-10-dark);
}

/* ── Schedule card location pins ── */
.schedule-location .lucide {
  width: 14px;
  height: 14px;
}

.schedule-card--featured .schedule-location .lucide {
  color: rgba(255, 255, 255, 0.85);
}

/* ===========================
   COOKIE CONSENT MODAL (Native <dialog>)
   =========================== */
.cookie-modal {
  border: none;
  margin: auto;
  padding: 0;
  width: 92%;
  max-width: 460px;
  background: var(--color-60);
  border-radius: var(--radius-card-lg);
  box-shadow: 0 24px 80px rgba(0,0,0,0.25), 0 4px 16px rgba(0,0,0,0.1);
}

.cookie-modal::backdrop {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.cookie-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) var(--space-md) 0;
}

.cookie-modal-title {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--text-primary);
}

.cookie-close {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-30);
  border: none;
  border-radius: 50%;
  font-size: 22px;
  color: var(--text-secondary);
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  flex-shrink: 0;
  line-height: 1;
}

.cookie-close:hover {
  background: var(--color-30-mid);
  color: var(--text-primary);
}

.cookie-modal-body {
  padding: var(--space-sm) var(--space-md);
}

.cookie-modal-body p {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0;
}

.cookie-link {
  color: var(--accent-text);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 600;
  transition: color var(--transition);
}

.cookie-link:hover {
  color: var(--color-10-dark);
}

.cookie-modal-actions {
  display: flex;
  gap: var(--space-xs);
  padding: var(--space-sm) var(--space-md);
}

.btn-cookie-modal {
  flex: 1;
  font-size: var(--text-sm);
  padding: 12px 16px;
  min-height: 44px;
  text-align: center;
}

.cookie-modal-footer {
  padding: 0 var(--space-md) var(--space-md);
  text-align: center;
}

.cookie-more-link {
  font-size: 13px;
  color: var(--text-tertiary);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--transition);
}

.cookie-more-link:hover {
  color: var(--text-primary);
}

@media (max-width: 480px) {
  .cookie-modal {
    width: 95%;
  }

  .cookie-modal-actions {
    flex-direction: column;
  }
}