/* ==========================================
   RESET & BASE STYLES
   ========================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Primary colors - optimized for WCAG AA contrast */
  --primary-color: #ff6b6b;
  --primary-dark: #e85555;
  --primary-text: #c73030; /* For text on light backgrounds - contrast 5.5:1 (WCAG AA+) */
  --primary-light: #ff9494;
  --secondary-color: #4ecdc4;
  --accent-color: #ffe66d;

  /* Text colors - optimized for WCAG AA compliance */
  --text-dark: #2c3e50;
  --text-light: #5a6169; /* Improved from #6c757d - contrast ratio 6.5:1 */
  --text-muted: #6c757d; /* For less critical text, 4.6:1 ratio */

  /* Background colors */
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;

  /* Status colors */
  --success-color: #51cf66;
  --warning-color: #ffa94d;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.2);

  /* Other */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --border-radius: 12px;
  --border-radius-lg: 20px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    "Poppins",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-white);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

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

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

/* ==========================================
   TYPOGRAPHY
   ========================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
  margin-bottom: 1rem;
}

.lead {
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text-dark);
}

.mt-1 {
  margin-top: 0.25rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-4 {
  margin-top: 2.4rem;
}

/* ==========================================
   BUTTONS
   ========================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--border-radius);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--primary-dark) 100%
  );
  color: white;
  box-shadow: 0 4px 16px rgba(255, 107, 107, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 107, 107, 0.4);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: white;
  color: var(--primary-text);
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
  background: var(--primary-color);
  color: white;
  border-color: var(--bg-white);
}

.btn-large {
  padding: 18px 40px;
  font-size: 1.125rem;
}

.btn-xlarge {
  padding: 22px 50px;
  font-size: 1.25rem;
}

.btn-full {
  width: 100%;
}

.btn-icon {
  font-size: 1.25em;
}

/* Pulse animation for CTA buttons */
@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 4px 16px rgba(255, 107, 107, 0.3);
  }
  50% {
    box-shadow: 0 4px 24px rgba(255, 107, 107, 0.5);
  }
}

.pulse {
  animation: pulse 2s infinite;
}

/* ==========================================
   SECTIONS
   ========================================== */

section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.section-label {
  display: inline-block;
  color: var(--primary-text);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.section-title {
  color: var(--text-dark);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ==========================================
   HERO SECTION
   ========================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  background-image:
    linear-gradient(
      135deg,
      rgba(102, 126, 234, 0.95) 0%,
      rgba(118, 75, 162, 0.95) 100%
    ),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,165.3C1248,171,1344,149,1392,138.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 30% 50%,
    rgba(255, 107, 107, 0.2) 0%,
    transparent 50%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding: 40px 0;
}

.hero-label {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-title {
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.hero-title .highlight {
  color: var(--accent-color);
  position: relative;
  display: inline-block;
}

.hero-title .highlight::after {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 0;
  right: 0;
  height: 16px;
  background: var(--accent-color);
  opacity: 0.3;
  z-index: -1;
}

.hero-subtitle {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 400;
  margin-bottom: 40px;
  line-height: 1.7;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.875rem;
  opacity: 0.9;
  text-transform: uppercase;
  color: var(--bg-white);
  letter-spacing: 1px;
}

.stat-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.3);
}

.progress-container {
  max-width: 600px;
  margin: 0 auto;
}

.progress-bar {
  height: 16px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  overflow: hidden;
  margin-bottom: 12px;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(
    90deg,
    var(--accent-color) 0%,
    var(--warning-color) 100%
  );
  border-radius: 50px;
  transition: width 1s ease-out;
  width: 0%;
}

.progress-text {
  text-align: center;
  font-size: 0.875rem;
  opacity: 0.9;
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: white;
  opacity: 0.8;
}

.scroll-indicator span {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.mouse {
  width: 24px;
  height: 40px;
  border: 2px solid white;
  border-radius: 12px;
  margin: 0 auto;
  position: relative;
}

.mouse::before {
  content: "";
  width: 4px;
  height: 8px;
  background: white;
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll 2s infinite;
}

@keyframes scroll {
  0%,
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(0);
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(12px);
  }
}

/* ==========================================
   URGENT BANNER
   ========================================== */

.urgent-banner {
  background: linear-gradient(135deg, var(--warning-color) 0%, #ff922b 100%);
  color: white;
  padding: 20px 0;
}

.urgent-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
}

.urgent-icon {
  font-size: 2rem;
}

.urgent-content p {
  margin: 0;
  font-size: 1.125rem;
}

/* ==========================================
   STORY SECTION
   ========================================== */

.story-section {
  background: var(--bg-white);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.image-placeholder {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.main-image {
  width: 100%;
  height: auto;
  display: block;
}

.image-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: white;
  padding: 12px 20px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.badge-icon {
  font-size: 1.5rem;
}

.story-text p {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--text-dark);
}

.decision-box {
  background: var(--bg-light);
  border-left: 4px solid var(--primary-color);
  padding: 24px;
  border-radius: var(--border-radius);
  margin: 24px 0;
}

.decision-box h3 {
  color: var(--primary-text);
  font-size: 1.125rem;
  margin-bottom: 12px;
}

.decision-box p {
  margin: 0;
  font-weight: 500;
}

.story-highlight {
  background: linear-gradient(
    135deg,
    var(--warning-color) 0%,
    var(--warning-color) 100%
  );
  color: white;
  padding: 24px;
  border-radius: var(--border-radius);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-top: 24px;
}

.highlight-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.story-highlight p {
  margin: 0;
  font-size: 1.125rem;
}

/* ==========================================
   VIDEO SECTION
   ========================================== */

.video-section {
  background: var(--bg-light);
}

.video-container {
  max-width: 900px;
  margin: 0 auto;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-xl);
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.video-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  cursor: pointer;
  transition: var(--transition);
}

.video-placeholder:hover .play-button {
  transform: scale(1.1);
}

.play-button {
  transition: var(--transition);
}

.video-placeholder-text {
  color: white;
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 20px;
}

.video-caption {
  text-align: center;
  font-style: italic;
  color: var(--text-light);
  margin-top: 20px;
  font-size: 1.0625rem;
}

/* ==========================================
   DISEASE SECTION
   ========================================== */

.disease-section {
  background: var(--bg-white);
}

.disease-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}

.disease-facts {
  display: grid;
  gap: 24px;
  margin: 40px 0;
  padding: 48px;
  background: linear-gradient(
    135deg,
    rgba(124, 58, 237, 0.03) 0%,
    rgba(236, 72, 153, 0.03) 100%
  );
  border-radius: 24px;
  border: 1px solid rgba(124, 58, 237, 0.08);
  position: relative;
}

.disease-facts::before {
  content: "";
  position: absolute;
  left: 72px;
  top: 90px;
  bottom: 90px;
  width: 2px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(124, 58, 237, 0.2) 10%,
    rgba(124, 58, 237, 0.2) 90%,
    transparent 100%
  );
  z-index: 0;
}

.fact-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 28px 32px;
  background: white;
  border-radius: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  position: relative;
  z-index: 1;
  border: 1px solid rgba(124, 58, 237, 0.08);
}

.fact-item:hover {
  transform: translateY(-4px) translateX(8px);
  box-shadow: 0 12px 32px rgba(124, 58, 237, 0.15);
  border-color: rgba(124, 58, 237, 0.3);
}

.fact-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #ec4899 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  box-shadow: 0 4px 16px rgba(124, 58, 237, 0.25);
  position: relative;
}

.fact-icon::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--primary-color), #ec4899);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
  filter: blur(8px);
}

.fact-item:hover .fact-icon::after {
  opacity: 0.4;
}

.fact-content h4 {
  font-size: 1.125rem;
  margin-bottom: 4px;
  color: var(--text-dark);
}

.fact-content p {
  margin: 0;
  color: var(--text-light);
  font-size: 0.9375rem;
}

.alert-box {
  padding: 20px;
  border-radius: var(--border-radius);
  margin: 16px 0;
  border-left: 4px solid var(--warning-color);
  background: #fff4e6;
}

.alert-box.success {
  border-left-color: var(--success-color);
  background: #ebfbee;
}

.alert-box strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.stats-card {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--primary-dark) 100%
  );
  color: white;
  padding: 40px;
  border-radius: var(--border-radius-lg);
  text-align: center;
  box-shadow: var(--shadow-lg);
  margin-bottom: 24px;
}

.stat-big-number {
  font-size: 5rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-big-label {
  font-size: 1.25rem;
  opacity: 0.95;
  font-weight: 600;
}

.stat-description {
  margin-top: 16px;
  opacity: 0.9;
  line-height: 1.6;
}

.timeline-card {
  background: var(--bg-light);
  padding: 32px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  margin-top: 40px;
}

.timeline-card h3 {
  margin-bottom: 24px;
  color: var(--text-dark);
}

.timeline {
  display: grid;
  gap: 20px;
}

.timeline-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.timeline-dot {
  width: 16px;
  height: 16px;
  background: var(--primary-color);
  border-radius: 50%;
  margin-top: 4px;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(255, 107, 107, 0.2);
}

.timeline-content h4 {
  font-size: 1rem;
  margin-bottom: 4px;
  color: var(--text-dark);
}

.timeline-content p {
  margin: 0;
  color: var(--text-light);
  font-size: 0.9375rem;
}

/* ==========================================
   EXPERT SECTION
   ========================================== */

.expert-section {
  background: var(--bg-light);
  padding: 80px 0;
}

.expert-card {
  max-width: 1000px;
  margin: 0 auto;
  background: white;
  padding: 48px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  position: relative;
}

.quote-icon {
  position: absolute;
  top: 32px;
  left: 32px;
  font-size: 6rem;
  color: var(--primary-text);
  opacity: 0.1;
  font-family: Georgia, serif;
  line-height: 1;
}

.expert-content {
  position: relative;
  z-index: 1;
}

.expert-quote {
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--text-dark);
  font-style: italic;
  margin-bottom: 32px;
  font-family: "Merriweather", serif;
}

.expert-info {
  display: flex;
  gap: 20px;
  align-items: center;
  padding-top: 32px;
  border-top: 2px solid var(--bg-light);
}

.expert-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.expert-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.expert-avatar-placeholder {
  font-size: 2.5rem;
}

.expert-details h4 {
  font-size: 1.25rem;
  margin-bottom: 4px;
  color: var(--text-dark);
}

.expert-details p {
  margin: 0;
  color: var(--text-light);
  font-size: 0.9375rem;
}

.expert-credentials {
  margin-top: 8px;
  font-size: 0.875rem;
  color: var(--primary-text);
  font-weight: 600;
}

/* ==========================================
   FUNDACJA CTA SECTION - 1.5%
   ========================================== */

.fundacja-cta-section {
  width: 100%;
  padding: 0;
  overflow: hidden;
}

.fundacja-cta-bg {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  padding: 100px 0;
  position: relative;
}

.fundacja-cta-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 20% 80%,
      rgba(124, 58, 237, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(236, 72, 153, 0.1) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.fundacja-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.fundacja-badge {
  display: inline-block;
  background: rgba(124, 58, 237, 0.2);
  border: 1px solid rgba(124, 58, 237, 0.4);
  color: #b794f6;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}

.fundacja-cta-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: white;
  line-height: 1.25;
  margin-bottom: 20px;
}

.fundacja-highlight {
  background: linear-gradient(135deg, #b794f6, #f687b3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.fundacja-cta-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.0625rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

.fundacja-logo-box {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
}

.fundacja-logo {
  max-width: 264px;
  /* height: 64px; */
  object-fit: contain;
  border-radius: 12px;
  flex-shrink: 0;
}

.fundacja-logo-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.fundacja-logo-text strong {
  color: white;
  font-size: 1rem;
}

.fundacja-logo-text span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8125rem;
}

/* Karta CTA */
.fundacja-cta-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
}

.fundacja-card-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, #ec4899 100%);
  padding: 32px;
  text-align: center;
}

.fundacja-card-icon {
  font-size: 3rem;
  font-weight: 900;
  color: white;
  margin-bottom: 8px;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.fundacja-card-header h3 {
  color: white;
  font-size: 1.375rem;
  font-weight: 700;
  margin: 0;
}

.fundacja-card-body {
  padding: 32px;
}

.fundacja-card-desc {
  color: var(--text-light);
  font-size: 1rem;
  margin-bottom: 20px;
  text-align: center;
}

.fundacja-data-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--bg-light);
  border-radius: 12px;
  margin-bottom: 12px;
  border: 2px solid transparent;
  transition: border-color 0.3s ease;
}

.fundacja-data-row:hover {
  border-color: var(--primary-text);
}

.fundacja-data-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  min-width: 60px;
}

.fundacja-data-value {
  flex: 1;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-dark);
  font-family: "Courier New", monospace;
}

.fundacja-copy-btn {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.fundacja-copy-btn:hover {
  background: var(--primary-dark);
  transform: scale(1.05);
}

.fundacja-steps {
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fundacja-step {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.9375rem;
  color: var(--text-dark);
}

.step-num {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--primary-color), #ec4899);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.fundacja-cta-btn {
  display: block;
  text-align: center;
  background: linear-gradient(135deg, var(--primary-color) 0%, #ec4899 100%);
  color: white;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 1.0625rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.3);
}

.fundacja-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(124, 58, 237, 0.4);
  color: white;
}

.fundacja-card-note {
  margin-top: 16px;
  font-size: 0.8125rem;
  color: var(--text-muted);
  text-align: center;
  font-style: italic;
}

/* Fundacja responsive */
@media (max-width: 968px) {
  .fundacja-cta-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .fundacja-cta-bg {
    padding: 60px 0;
  }

  .fundacja-cta-title {
    font-size: 1.75rem;
  }
}

@media (max-width: 480px) {
  .fundacja-cta-bg {
    padding: 48px 0;
  }

  .fundacja-card-body {
    padding: 24px 16px;
  }

  .fundacja-card-header {
    padding: 24px 16px;
  }

  .fundacja-data-row {
    flex-wrap: wrap;
    gap: 8px;
  }

  .fundacja-data-value {
    font-size: 1rem;
  }

  .fundacja-logo-box {
    flex-direction: column;
    text-align: center;
  }

  .fundacja-cta-title {
    font-size: 1.5rem;
  }
}

/* ==========================================
   COMMUNITY SECTION
   ========================================== */

.community-section {
  background: var(--bg-white);
}

.community-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
  margin-bottom: 60px;
}

.community-card {
  background: white;
  padding: 32px;
  border-radius: var(--border-radius-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 2px solid transparent;
}

.community-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-text);
}

.community-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.community-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.community-card p {
  margin: 0;
  color: var(--text-light);
  font-size: 0.9375rem;
}

.testimonials {
  margin-top: 60px;
}

.testimonials-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: var(--text-dark);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.testimonial {
  background: var(--bg-light);
  padding: 28px;
  border-radius: var(--border-radius);
  border-left: 4px solid var(--primary-color);
}

.testimonial p {
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.7;
}

.testimonial-author {
  display: block;
  font-weight: 600;
  color: var(--primary-text);
  font-style: normal;
}

/* ==========================================
   IMPACT SECTION
   ========================================== */

.impact-section {
  background: var(--bg-light);
  width: 100%;
  padding: 80px 0;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.impact-card {
  background: white;
  padding: 32px;
  border-radius: var(--border-radius-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 2px solid transparent;
  position: relative;
}

.impact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-text);
}

.impact-card.featured {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--primary-dark) 100%
  );
  color: white;
  border-color: var(--primary-text);
}

.impact-badge {
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-color);
  color: var(--text-dark);
  padding: 4px 16px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.impact-amount {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.impact-icon {
  font-size: 3rem;
  margin-bottom: 12px;
}

.impact-card h3 {
  font-size: 1.125rem;
  margin-bottom: 12px;
}

.impact-card p {
  margin: 0;
  font-size: 0.9375rem;
  opacity: 0.9;
}

.impact-card.featured h3,
.impact-card.featured p {
  color: white;
}

.impact-note {
  text-align: center;
  background: white;
  padding: 24px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
}

.impact-note p {
  margin: 0;
  font-size: 1.0625rem;
  color: var(--text-dark);
}

/* Nowy styl - kontrast "Dla Ciebie" vs "Dla Leo" */
.impact-card-contrast {
  background: white;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 2px solid transparent;
  position: relative;
}

.impact-card-contrast:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-text);
}

.impact-card-contrast.featured {
  border-color: var(--secondary-color);
  box-shadow: 0 12px 48px rgba(255, 107, 107, 0.2);
}

.contrast-header {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--primary-dark) 100%
  );
  padding: 40px;
  text-align: center;
}

.contrast-amount {
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  line-height: 1;
  margin-bottom: 4px;
}

.contrast-body {
  padding: 0;
}

.contrast-section {
  padding: 24px;
  position: relative;
}

.contrast-section:first-child {
  background: #f8f9fa;
  border-bottom: 2px dashed #e0e0e0;
}

.contrast-section:last-child {
  background: white;
}

.contrast-label {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.contrast-section:first-child .contrast-label {
  color: var(--text-muted);
}

.contrast-section:last-child .contrast-label {
  color: var(--secondary-color);
}

.contrast-text {
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text-dark);
  margin: 0;
}

.contrast-section:last-child .contrast-text {
  font-weight: 600;
  color: var(--primary-text);
}

.impact-card-contrast.featured .contrast-section:last-child {
  background: linear-gradient(
    135deg,
    rgba(255, 107, 107, 0.1) 0%,
    rgba(255, 107, 107, 0.05) 100%
  );
}

.impact-card-contrast.featured .contrast-section:last-child .contrast-label {
  color: var(--secondary-color);
  font-size: 0.9375rem;
}

.impact-card-contrast.featured .contrast-section:last-child .contrast-text {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--secondary-color);
}

/* ==========================================
   DONATION SECTION
   ========================================== */

.donation-section {
  background: var(--bg-white);
  padding: 100px 0;
}

.donation-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.donation-benefits {
  display: grid;
  gap: 16px;
  margin: 32px 0;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.benefit-icon {
  background: var(--success-color);
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.benefit-item p {
  margin: 0;
  font-size: 1.0625rem;
  color: var(--text-dark);
}

.urgency-box {
  background: #fff4e6;
  border: 2px solid var(--warning-color);
  border-radius: var(--border-radius);
  padding: 24px;
  display: flex;
  gap: 16px;
  margin-top: 32px;
}

.urgency-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.urgency-text h4 {
  color: var(--text-dark);
  margin-bottom: 8px;
  font-size: 1.125rem;
}

.urgency-text p {
  margin: 0;
  color: var(--text-dark);
  line-height: 1.7;
}

.donation-form-container {
  position: sticky;
  top: 20px;
}

.donation-form {
  background: white;
  padding: 40px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-xl);
  border: 2px solid var(--primary-color);
}

.donation-form h3 {
  text-align: center;
  color: var(--text-dark);
  margin-bottom: 28px;
  font-size: 1.75rem;
}

.amount-buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.amount-btn {
  position: relative;
  padding: 16px;
  border: 2px solid #e0e0e0;
  background: white;
  border-radius: var(--border-radius);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  transition: var(--transition);
}

.amount-btn:hover {
  border-color: var(--primary-text);
  background: var(--bg-light);
}

.amount-btn.active {
  border-color: var(--primary-text);
  background: var(--primary-color);
  color: white;
}

.amount-btn.popular {
  border-color: var(--primary-text);
  border-width: 3px;
}

.popular-badge {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  margin-top: 4px;
  color: var(--primary-text);
}

.amount-btn.active .popular-badge {
  color: white;
}

.custom-amount {
  margin-bottom: 24px;
}

.custom-amount label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--text-dark);
}

.custom-amount input {
  width: 100%;
  padding: 14px;
  border: 2px solid #e0e0e0;
  border-radius: var(--border-radius);
  font-size: 1.125rem;
  transition: var(--transition);
}

.custom-amount input:focus {
  outline: none;
  border-color: var(--primary-text);
}

.donation-summary {
  background: var(--bg-light);
  padding: 20px;
  border-radius: var(--border-radius);
  margin-bottom: 24px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.summary-row:last-child {
  margin-bottom: 0;
}

.summary-row.impact {
  justify-content: center;
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid #e0e0e0;
}

.summary-row.impact span {
  color: var(--primary-text);
  font-weight: 600;
  font-size: 0.9375rem;
}

.payment-methods {
  margin-top: 24px;
  text-align: center;
}

.payment-label {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-bottom: 12px;
}

.payment-icons {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.payment-icon {
  font-size: 1.5rem;
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #e0e0e0;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  color: var(--text-light);
}

.trust-icon {
  color: var(--success-color);
  font-weight: 700;
}

.sharing-box {
  background: var(--bg-light);
  padding: 24px;
  border-radius: var(--border-radius);
  text-align: center;
  margin-top: 24px;
  width: 100%;
}

.sharing-box h4 {
  font-size: 1.125rem;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.sharing-box p {
  font-size: 0.9375rem;
  color: var(--text-light);
  margin-bottom: 16px;
}

.share-buttons {
  display: flex;
  gap: 8px;
  justify-content: center;
}

.share-btn {
  flex: 1;
  padding: 10px 16px;
  border-radius: var(--border-radius);
  color: white;
  font-size: 0.875rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: var(--transition);
}

.share-btn.facebook {
  background: #1877f2;
}

.share-btn.twitter {
  background: #000000;
}

.share-btn.copy {
  background: var(--text-light);
}

.share-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.share-icon {
  font-weight: 700;
}

/* ==========================================
   GALLERY SECTION
   ========================================== */

.gallery-section {
  background: var(--bg-white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.gallery-item {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-md);
}

.gallery-placeholder {
  position: relative;
  padding-bottom: 100%;
  background: var(--bg-light);
  overflow: hidden;
}

.gallery-placeholder img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.placeholder-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--text-light);
  font-size: 3rem;
}

/* ==========================================
   FAQ SECTION
   ========================================== */

.faq-section {
  background: var(--bg-light);
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: var(--border-radius);
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 28px;
  cursor: pointer;
  transition: var(--transition);
}

.faq-question:hover {
  background: var(--bg-light);
}

.faq-question h3 {
  font-size: 1.125rem;
  margin: 0;
  color: var(--text-dark);
  font-weight: 600;
}

.faq-icon {
  font-size: 1.5rem;
  color: var(--primary-text);
  font-weight: 300;
  transition: var(--transition);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 28px 24px;
  margin: 0;
  color: var(--text-light);
  line-height: 1.7;
}

/* ==========================================
   FINAL CTA
   ========================================== */

.final-cta {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--primary-dark) 100%
  );
  color: white;
  padding: 100px 0;
}

.final-cta-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.final-cta h2 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 20px;
  color: white;
}

.final-cta > p {
  font-size: 1.375rem;
  margin-bottom: 40px;
  opacity: 0.95;
}

.final-cta-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.final-stat {
  text-align: center;
}

.final-stat strong {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.final-stat span {
  font-size: 0.9375rem;
  opacity: 0.9;
}

.final-note {
  margin-top: 24px;
  font-size: 1.0625rem;
  opacity: 0.85;
}

/* ==========================================
   FOOTER
   ========================================== */

.footer {
  background: var(--text-dark);
  color: white;
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h4 {
  font-size: 1.125rem;
  margin-bottom: 16px;
  color: white;
}

.footer-section p {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

.footer-link {
  color: var(--primary-light);
  font-weight: 600;
  transition: var(--transition);
}

.footer-link:hover {
  color: white;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.social-link:hover {
  background: var(--primary-color);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-disclaimer {
  margin-top: 8px;
}

/* ==========================================
   AOS ANIMATIONS
   ========================================== */

[data-aos] {
  opacity: 0;
  transition-property: opacity, transform;
}

[data-aos].aos-animate {
  opacity: 1;
}

[data-aos="fade-up"] {
  transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
  transform: translateY(0);
}

[data-aos="fade-down"] {
  transform: translateY(-30px);
}

[data-aos="fade-down"].aos-animate {
  transform: translateY(0);
}

[data-aos="fade-left"] {
  transform: translateX(30px);
}

[data-aos="fade-left"].aos-animate {
  transform: translateX(0);
}

[data-aos="fade-right"] {
  transform: translateX(-30px);
}

[data-aos="fade-right"].aos-animate {
  transform: translateX(0);
}

[data-aos="zoom-in"] {
  transform: scale(0.9);
}

[data-aos="zoom-in"].aos-animate {
  transform: scale(1);
}

[data-aos="flip-left"] {
  transform: perspective(1000px) rotateY(-20deg);
}

[data-aos="flip-left"].aos-animate {
  transform: perspective(1000px) rotateY(0);
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

@media (max-width: 968px) {
  .story-grid,
  .disease-grid,
  .donation-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-cta .btn {
    width: 100%;
  }

  .donation-form-container {
    position: static;
    width: 100%;
    max-width: 100%;
  }

  .donation-form {
    padding: 32px 24px;
  }

  .donation-section {
    overflow-x: hidden;
  }

  section {
    padding: 60px 0;
  }
}

@media (max-width: 768px) {
  .hero-stats {
    gap: 20px;
  }

  .stat-divider {
    display: none;
  }

  .community-grid,
  .impact-grid {
    grid-template-columns: 1fr;
  }

  .amount-buttons {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .final-cta-stats {
    gap: 30px;
  }

  .share-buttons {
    flex-direction: column;
  }

  .expert-card {
    padding: 32px 24px;
  }

  .expert-quote {
    font-size: 1.0625rem;
  }

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

  .disease-facts {
    padding: 32px 24px;
  }

  .disease-facts::before {
    left: 48px;
  }

  .fact-item {
    padding: 20px 24px;
  }

  .fact-icon {
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .donation-form,
  .donation-content {
    padding: 24px 16px;
    width: 85%;
  }

  .donation-container {
    gap: 24px;
  }

  .urgency-box {
    flex-direction: column;
    gap: 12px;
  }

  .amount-btn {
    padding: 12px 8px;
    font-size: 1rem;
  }

  section {
    padding: 50px 0;
  }
}
/* ==========================================
   IMPORTED FROM expert-section-new.css
   ========================================== */
/* ==========================================
   EXPERT SECTION - NOWA WERSJA Z DUŻYM ZDJĘCIEM
   ========================================== */

.expert-section {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  padding: 100px 0;
  position: relative;
}

.expert-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(
      circle at 20% 30%,
      rgba(78, 205, 196, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(255, 107, 107, 0.1) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.expert-grid {
  display: grid;
  grid-template-columns: 450px 1fr;
  gap: 60px;
  align-items: start;
  position: relative;
  z-index: 1;
}

/* Kontener ze zdjęciem */
.expert-photo-container {
  position: sticky;
  top: 100px;
}

.expert-photo-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  background: white;
  margin-bottom: 24px;
}

.expert-photo {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 3/4;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.expert-photo-wrapper:hover .expert-photo {
  transform: scale(1.05);
}

.expert-photo-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--primary-dark) 100%
  );
  color: white;
}

.placeholder-icon {
  font-size: 6rem;
  margin-bottom: 16px;
}

.placeholder-text {
  font-size: 1.5rem;
  font-weight: 600;
}

/* Badge na zdjęciu */
.expert-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 10px 16px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark);
}

.badge-icon {
  font-size: 1.25rem;
}

/* Karta z informacjami o doktorze */
.expert-info-card {
  background: white;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-left: 4px solid var(--primary-color);
}

.expert-info-card h3 {
  font-size: 1.75rem;
  color: var(--text-dark);
  margin-bottom: 8px;
  font-weight: 700;
}

.expert-title {
  font-size: 1.0625rem;
  color: var(--primary-text);
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.6;
}

.expert-credentials p {
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 12px;
}

.expert-credentials strong {
  color: var(--text-dark);
}

.expert-website {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary-text);
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: var(--transition);
}

.expert-website:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

/* Kontener z cytatem */
.expert-quote-container {
  background: white;
  padding: 48px;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  position: relative;
}

.quote-mark {
  position: absolute;
  top: 20px;
  left: 30px;
  font-size: 8rem;
  color: var(--primary-text);
  opacity: 0.1;
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
}

.expert-quote-text {
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--text-dark);
  font-weight: 400;
  margin: 0 0 24px 0;
  position: relative;
  padding-left: 40px;
  border-left: 3px solid var(--primary-color);
  font-family: "Merriweather", serif;
}

.expert-quote-text:last-of-type {
  margin-bottom: 32px;
}

.expert-quote-text strong {
  color: var(--primary-text);
  font-weight: 700;
}

/* Highlights */
.expert-highlights {
  display: grid;
  gap: 16px;
  padding-top: 32px;
  border-top: 2px solid #f0f0f0;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.0625rem;
  color: var(--text-dark);
  font-weight: 500;
}

.highlight-icon {
  width: 28px;
  height: 28px;
  background: var(--success-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 968px) {
  .expert-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .expert-photo-container {
    position: static;
  }

  .expert-quote-container {
    padding: 32px 24px;
  }

  .expert-quote-text {
    font-size: 1.0625rem;
    padding-left: 24px;
  }

  .quote-mark {
    font-size: 5rem;
  }
}

@media (max-width: 640px) {
  .expert-info-card {
    padding: 24px;
  }

  .expert-info-card h3 {
    font-size: 1.5rem;
  }

  .expert-highlights {
    gap: 12px;
  }

  .highlight-item {
    font-size: 0.9375rem;
  }
}
/* ==========================================
   IMPORTED FROM new-sections.css
   ========================================== */
/* ==========================================
   SEKCJA: ZDJĘCIA AKCJI LOKALNYCH
   ========================================== */

.community-actions-section {
  background: var(--bg-white);
  padding: 80px 0;
}

.actions-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.actions-mini-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 16px;
  padding-top: 16px;
}

.action-photo-item {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.action-photo-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.action-photo-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.action-photo-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.action-photo-item:hover .action-photo-wrapper img {
  transform: scale(1.1);
}

.action-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
  padding: 24px;
  transform: translateY(10px);
  opacity: 0;
  transition: var(--transition);
}

.action-photo-item:hover .action-overlay {
  transform: translateY(0);
  opacity: 1;
}

.action-overlay h3 {
  color: white;
  font-size: 1.25rem;
  margin-bottom: 4px;
  font-weight: 700;
}

.action-overlay p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9375rem;
  margin: 0;
}

.actions-cta {
  text-align: center;
  background: var(--bg-light);
  padding: 32px;
  border-radius: var(--border-radius-lg);
}

.actions-cta p {
  margin: 0;
  font-size: 1.125rem;
  color: var(--text-dark);
}

.actions-cta strong {
  color: var(--primary-text);
}

/* ==========================================
   SEKCJA: FILMY Z AKCJI
   ========================================== */

.community-videos-section {
  /* background: var(--bg-light); */
  padding: 30px 0;
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-bottom: 40px;
}

.video-item {
  background: white;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.video-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.video-embed {
  position: relative;
  width: 100%;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
}

.video-embed iframe {
  width: 100%;
  height: 600px;
  display: block;
  border: none;
}

.video-caption {
  padding: 16px 20px;
  text-align: center;
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.9375rem;
  margin: 0;
  background: white;
}

.videos-note {
  text-align: center;
  background: white;
  padding: 24px 32px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--secondary-color);
}

.videos-note p {
  margin: 0;
  font-size: 1.0625rem;
  color: var(--text-dark);
}

.videos-note strong {
  color: var(--primary-text);
}

/* ==========================================
   RESPONSIVE
   ========================================== */

@media (max-width: 968px) {
  .actions-gallery {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }

  .videos-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .video-embed,
  .video-embed iframe {
    min-height: 350px;
    height: 350px;
  }
}

@media (max-width: 640px) {
  .actions-gallery {
    grid-template-columns: 1fr;
  }

  .action-overlay {
    opacity: 1;
    transform: translateY(0);
  }

  .videos-note {
    padding: 20px;
  }
}
