











.hero-section .btn {
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  min-height: 50px;
  position: relative;
  overflow: hidden;
}

.hero-section .btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.hero-section .btn:hover::before {
  left: 100%;
}

/* .hero-section .btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
  pointer-events: none;
} */

.hero-section .btn:hover::after {
  width: 300px;
  height: 300px;
}



.hero-section .btn svg {
  transition: transform 0.3s ease;
}

.hero-section .btn:hover svg {
  transform: scale(1.1);
}

.mobile-hero-logo {
  display: none;
}

/* Base Styles */
:root {
  --primary: #3b82f6;
  --primary-dark: #2563EB;
  --primary-light: #60a5fa;
  --secondary: #155696;
  --accent: #0ea5e9;
  --text: #1f2937;
  --text-light: #6b7280;
  --white: #ffffff;
  --black: #000000;
  --bg-light: #f9fafb;
  --bg-dark: #111d2c;
  --border: #e5e7eb;
  --radius: 0.5rem;
  --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  line-height: 1.5;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

ul {
  list-style-type: none;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  font-size: 0.9rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}



.btn-outline {
  background-color: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
  box-shadow: 0 4px 8px rgba(59, 130, 246, 0.15);
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background-color: var(--primary-light);
  color: var(--white);
  box-shadow: 0 6px 12px rgba(59, 130, 246, 0.25);
  transform: translateY(-2px);
}





/* Header Styles */
.header {
  position: fixed;
  top: 0;
  z-index: 50;
  width: 100%;
  border-bottom: 1px solid transparent;
  background-color: transparent;
  backdrop-filter: none;
  transition: all 0.3s ease;
}

.header.scrolled {
  border-bottom: 1px solid var(--border);
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header-container {
  display: flex;
  height: 4rem;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary);
  transition: all 0.3s ease;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  transition: all 0.3s ease;
}

/* Removed - no longer needed as default colors are already correct */

.nav {
  display: flex;
  gap: 2rem;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  transition: all 0.3s ease;
}

/* Removed - no longer needed as default colors are already correct */

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

/* Removed - no longer needed as default hover color is already correct */

.app-buttons {
  display: flex;
  gap: 0.5rem;
}

.app-store-btn, .google-play-btn {
  display: none;
}

.app-buttons .google-play-btn {
  position: relative;
}

.app-buttons .google-play-btn::after {
  content: "dostępne wkrótce";
  position: absolute;
  top: -6px;
  right: -6px;
  background: #64748b;
  color: white;
  font-size: 0.55rem;
  font-weight: 500;
  padding: 0.15rem 0.35rem;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  box-shadow: 0 1px 3px rgba(100, 116, 139, 0.3);
  z-index: 2;
}

/* Hamburger Menu Button Style */
.menu-toggle {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background-color: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.menu-toggle:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transform: translateY(-1px);
}

/* Hero Section */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 50%, #4f46e5 100%);
  padding: 5rem 0;
  color: var(--white);
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-shapes {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-container {
  position: relative;
  z-index: 10;
  display: grid;
  gap: 2rem;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
}

.hero-title {
  /* Uses the modern h1 fluid typography from the hierarchy above */
  font-size: clamp(2.2rem, 4.5vw + 1rem, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
}

/* Modern Typography Hierarchy 2025 - Explicit font-sizes for all heading levels */
/* Base typography scale using fluid typography */
h1, section h1 {
  font-size: clamp(2rem, 4vw + 1rem, 3rem);
  font-weight: 700;
  line-height: 1.2;
}

h2, section h2 {
  font-size: clamp(1.5rem, 3vw + 0.75rem, 2.25rem);
  font-weight: 600;
  line-height: 1.3;
}

h3, section h3 {
  font-size: clamp(1.25rem, 2.5vw + 0.5rem, 1.75rem);
  font-weight: 600;
  line-height: 1.4;
}

h4, section h4 {
  font-size: clamp(1.125rem, 2vw + 0.25rem, 1.5rem);
  font-weight: 500;
  line-height: 1.4;
}

h5, section h5 {
  font-size: clamp(1rem, 1.5vw + 0.125rem, 1.25rem);
  font-weight: 500;
  line-height: 1.5;
}

h6, section h6 {
  font-size: clamp(0.875rem, 1vw + 0.125rem, 1.125rem);
  font-weight: 500;
  line-height: 1.5;
}

.hero-description {
  max-width: 600px;
  font-size: 1.125rem;
  opacity: 0.9;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
  backdrop-filter: blur(4px);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-image img {
  position: relative;
  z-index: 20;
  object-fit: contain;
}

.hero-qr-codes {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  justify-content: center;
}

.qr-code-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.qr-code-wrapper {
  position: relative;
  width: 140px;
  height: 140px;
  background-color: white;
  border-radius: 1rem;
  padding: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.qr-code-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.qr-code-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.qr-code-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: white;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.qr-code-overlay svg {
  color: var(--primary);
}

.qr-code-label {
  font-weight: 600;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* How to Use Section */
.how-to-use {
  background-color: var(--white);
  padding: 5rem 0;
}

.section-title {
  /* Uses the modern h2 fluid typography from the hierarchy above */
  font-size: clamp(1.75rem, 3.5vw + 0.75rem, 2.2rem);
  font-weight: 600;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  text-align: center;
  color: #1e293b;
}

.left-align {
  text-align: left;
}

.steps-container {
  display: grid;
  gap: 2rem;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  margin-bottom: 1rem;
  border-radius: 50%;
  background-color: rgba(59, 130, 246, 0.1);
  color: var(--primary);
  box-shadow: 0 6px 15px rgba(59, 130, 246, 0.2);
}

.step-title {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.step-description {
  color: var(--text-light);
}



/* Testimonials Section - moved to css/testimonials.css */



/* Footer */
.footer {
  border-top: 1px solid var(--border);
  background-color: var(--bg-light);
  padding: 3rem 0;
}

.footer-container {
  display: grid;
  gap: 2rem;
}

.footer-item {
  margin-bottom: 1.5rem;
}

.footer-description {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--text-light);
}

.footer-title {
  font-weight: 500;
  margin-bottom: 1rem;
}

.footer-links, .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-light);
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-light);
}



















/* Responsive Styles */
@media (min-width: 768px) {
  .nav {
    display: flex;
    gap: 1.5rem;
  }
  
  .app-store-btn, .google-play-btn {
    display: flex;
  }
  
  .hero-container {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  
  /* Testimonials responsive styles moved to css/testimonials.css */
  
  .footer-container {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }

  .hero-qr-codes {
    justify-content: center;
  }
}

/* FAQ Section */
.faq {
  padding: 4rem 0;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  position: relative;
  overflow: hidden;
}

.faq .container {
  position: relative;
  z-index: 1;
}

.faq-container {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.faq-item {
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  overflow: hidden;
  transition: all 0.2s ease;
  backdrop-filter: blur(8px);
}

.faq-item:hover {
  background-color: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 1);
}

.faq-details {
  cursor: pointer;
}

/* Removed .faq-details[open] border color change for minimalism */

.faq-details[open] .faq-question svg {
  transform: rotate(180deg);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem;
  margin: 0;
  list-style: none;
  cursor: pointer;
  transition: all 0.2s ease;
  border-bottom: 1px solid transparent;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question:hover {
  background-color: rgba(59, 130, 246, 0.04);
}

.faq-details[open] .faq-question {
  border-bottom-color: rgba(59, 130, 246, 0.1);
  background-color: rgba(59, 130, 246, 0.04);
}

.faq-question h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #1e293b;
  margin: 0;
  flex: 1;
  text-align: left;
}

.faq-question svg {
  color: #64748b;
  transition: transform 0.2s ease;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-answer {
  padding: 0 1.25rem 1.25rem 1.25rem;
}

.faq-answer p {
  margin: 0;
  color: #64748b;
  line-height: 1.6;
  font-size: 0.95rem;
}

.faq-answer a {
  color: #3b82f6;
  text-decoration: none;
  font-weight: 500;
}

.faq-answer a:hover {
  text-decoration: underline;
}

/* FAQ Tablet Responsive */
@media (max-width: 1024px) {
  .faq-container {
    grid-template-columns: 1fr;
    max-width: 700px;
    gap: 0.8rem;
  }
  
  .faq-question {
    padding: 1rem;
  }
  
  .faq-answer {
    padding: 0 1rem 1rem 1rem;
  }
}

/* Hero Section Animations - Keyframes */
@keyframes logoFloat {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  25% {
    transform: translateY(-10px) rotate(2deg);
  }
  50% {
    transform: translateY(-5px) rotate(0deg);
  }
  75% {
    transform: translateY(-15px) rotate(-2deg);
  }
}

@keyframes logoGlow {
  0% {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
  }
  100% {
    filter: drop-shadow(0 8px 20px rgba(59, 130, 246, 0.4));
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes parallaxFloat {
  0%, 100% {
    transform: translateY(0px) translateX(0px);
  }
  25% {
    transform: translateY(-20px) translateX(10px);
  }
  50% {
    transform: translateY(-10px) translateX(-5px);
  }
  75% {
    transform: translateY(-30px) translateX(15px);
  }
}

@keyframes particlesFloat {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-200px);
  }
}

/* Pulse animation for elements */
@keyframes heroElementPulse {
  0%, 100% {
    opacity: 0.1;
    transform: scale(1);
  }
  50% {
    opacity: 0.3;
    transform: scale(1.05);
  }
}

/* Wszystkie style mobilne zostały przeniesione do pliku mobile.css */

/* --- NEW HERO SECTION WITH PHOTO CARDS FAN LAYOUT --- */
/* Globalne Ustawienia i Czcionki */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f8f8;
    margin: 0;
    color: #333;
    overflow-x: hidden;
}

.container {
    width: 100%;
}

/* --- Sekcja Hero --- */
.hero {
    text-align: center;
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}


/* Add wave divider to top of app-intro */
.app-intro::before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0;
  width: 100%;
  height: 100px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity=".25" fill="%2360a5fa"/><path d="M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z" opacity=".5" fill="%233b82f6"/></svg>') no-repeat;
  background-size: 100% 100%;
  z-index: 2;
}


@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.hero-container {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 100vw;
    margin: 0 auto;
    padding: 80px 20px 100px;
    position: relative;
    z-index: 5;
    min-height: 70vh;
}

.hero-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 10;
    padding: 3rem 1.5rem;
    width: 100%;
    max-width: 95vw;
}

/* Hero CTA text moved to download section */

.hero h1 {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #1e293b;
    text-align: center;
    width: 100%;
    max-width: none;
}

.hero p {
    font-size: clamp(1.2rem, 2.8vw, 1.4rem);
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 0;
    font-weight: 400;
    text-align: center;
    max-width: 550px;
}

/* QR codes moved to download section */

/* --- Karty ze zdjęciami - wachlarz na całą szerokość --- */
.photo-cards {
    position: absolute;
    bottom: -300px;
    left: 0;
    width: 100vw;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    perspective: 1000px;
    z-index: 1;
}

.card {
    position: absolute;
    width: 220px;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.25),
        0 12px 24px rgba(0, 0, 0, 0.12),
        0 6px 12px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.8);
    background: white;
    padding: 8px;
    transform-origin: bottom center;
    transition: all 0.3s ease;
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
    display: block;
    image-rendering: auto;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    box-shadow: 
        inset 0 0 0 1px rgba(255, 255, 255, 0.1),
        0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Wachlarz 8 kart w wyraźny półokrąg z unikalnymi cieniami */
.card-1 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) translateX(-700px) rotate(-28deg);
    z-index: 1;
    box-shadow: 
        0 25px 50px rgba(59, 130, 246, 0.15),
        0 12px 24px rgba(0, 0, 0, 0.12),
        0 6px 12px rgba(59, 130, 246, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.8);
}

.card-2 {
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%) translateX(-500px) rotate(-20deg);
    z-index: 2;
    box-shadow: 
        0 25px 50px rgba(16, 185, 129, 0.15),
        0 12px 24px rgba(0, 0, 0, 0.12),
        0 6px 12px rgba(16, 185, 129, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.8);
}

.card-3 {
    bottom: 140px;
    left: 50%;
    transform: translateX(-50%) translateX(-300px) rotate(-12deg);
    z-index: 3;
    box-shadow: 
        0 25px 50px rgba(245, 158, 11, 0.15),
        0 12px 24px rgba(0, 0, 0, 0.12),
        0 6px 12px rgba(245, 158, 11, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.8);
}

.card-4 {
    bottom: 170px;
    left: 50%;
    transform: translateX(-50%) translateX(-100px) rotate(-4deg);
    z-index: 4;
    box-shadow: 
        0 25px 50px rgba(239, 68, 68, 0.15),
        0 12px 24px rgba(0, 0, 0, 0.12),
        0 6px 12px rgba(239, 68, 68, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.8);
}

.card-5 {
    bottom: 170px;
    left: 50%;
    transform: translateX(-50%) translateX(100px) rotate(4deg);
    z-index: 5;
    box-shadow: 
        0 25px 50px rgba(168, 85, 247, 0.15),
        0 12px 24px rgba(0, 0, 0, 0.12),
        0 6px 12px rgba(168, 85, 247, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.8);
}

.card-6 {
    bottom: 140px;
    left: 50%;
    transform: translateX(-50%) translateX(300px) rotate(12deg);
    z-index: 6;
    box-shadow: 
        0 25px 50px rgba(236, 72, 153, 0.15),
        0 12px 24px rgba(0, 0, 0, 0.12),
        0 6px 12px rgba(236, 72, 153, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.8);
}

.card-7 {
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%) translateX(500px) rotate(20deg);
    z-index: 7;
    box-shadow: 
        0 25px 50px rgba(14, 165, 233, 0.15),
        0 12px 24px rgba(0, 0, 0, 0.12),
        0 6px 12px rgba(14, 165, 233, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.8);
}

.card-8 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) translateX(700px) rotate(28deg);
    z-index: 8;
    box-shadow: 
        0 25px 50px rgba(34, 197, 94, 0.15),
        0 12px 24px rgba(0, 0, 0, 0.12),
        0 6px 12px rgba(34, 197, 94, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.8);
}

/* Tablet - 6 kart */
@media (max-width: 1024px) and (min-width: 769px) {
    .card {
        width: 180px;
        height: 340px;
    }
    
    .card-1, .card-8 {
        display: none;
    }
    
    .card-2 {
        transform: translateX(-50%) translateX(-450px) rotate(-24deg);
    }
    
    .card-3 {
        transform: translateX(-50%) translateX(-270px) rotate(-14deg);
    }
    
    .card-4 {
        transform: translateX(-50%) translateX(-90px) rotate(-5deg);
    }
    
    .card-5 {
        transform: translateX(-50%) translateX(90px) rotate(5deg);
    }
    
    .card-6 {
        transform: translateX(-50%) translateX(270px) rotate(14deg);
    }
    
    .card-7 {
        transform: translateX(-50%) translateX(450px) rotate(24deg);
    }
}

/* Mobile - 4 karty */
@media (max-width: 768px) {
    .photo-cards {
        height: 500px;
        bottom: -200px;
    }
    
    .card {
        width: 90px;
        height: 160px;
    }
    
    .card-1, .card-2, .card-7, .card-8 {
        display: none;
    }
    
    .card-3 {
        bottom: 60px;
        transform: translateX(-50%) translateX(-180px) rotate(-18deg);
    }
    
    .card-4 {
        bottom: 80px;
        transform: translateX(-50%) translateX(-60px) rotate(-6deg);
    }
    
    .card-5 {
        bottom: 80px;
        transform: translateX(-50%) translateX(60px) rotate(6deg);
    }
    
    .card-6 {
        bottom: 60px;
        transform: translateX(-50%) translateX(180px) rotate(18deg);
    }
}

/* Small mobile - 2 karty */
@media (max-width: 480px) {
    .photo-cards {
        height: 450px;
        bottom: -150px;
    }
    
    .card {
        width: 80px;
        height: 140px;
    }
    
    .card-1, .card-2, .card-3, .card-6, .card-7, .card-8 {
        display: none;
    }
    
    .card-4 {
        bottom: 60px;
        transform: translateX(-50%) translateX(-80px) rotate(-8deg);
    }
    
    .card-5 {
        bottom: 60px;
        transform: translateX(-50%) translateX(80px) rotate(8deg);
    }
}

/* --- Responsywność Hero Container --- */
@media (max-width: 768px) {
    .hero-container {
        padding: 4rem 1.5rem;
        min-height: 60vh;
    }
    
    .hero-content {
        padding: 2.5rem 1.2rem;
        max-width: 95vw;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    /* Hero QR styles removed */
}

@media (max-width: 480px) {
    .hero-container {
        padding: 3rem 1rem;
        min-height: 50vh;
    }
    
    .hero-content {
        padding: 2rem 1rem;
        max-width: 95vw;
    }
    
    .hero h1 {
        font-size: 2rem;
        line-height: 1.2;
    }
    /* Hero QR styles removed */
    
}

/* Download Section */
.download-section {
    padding: 4rem 0;
    background: #ffffff;
    position: relative;
}

.download-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.download-content h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.download-content p {
    font-size: clamp(1.1rem, 2.5vw, 1.25rem);
    color: #64748b;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.download-qr-codes {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.download-section .qr-code-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.download-section .qr-code-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: rgba(59, 130, 246, 0.06);
    padding: 8px;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.download-section .qr-code-wrapper:hover {
    transform: translateY(-2px);
    background: rgba(59, 130, 246, 0.08);
    border-color: rgba(59, 130, 246, 0.2);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
}

.download-section .qr-code-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.download-section .qr-code-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.download-section .qr-code-wrapper:hover .qr-code-overlay {
    opacity: 1;
}

.download-section .qr-code-overlay svg {
    color: #3b82f6;
}

.download-section .qr-code-label {
    font-weight: 600;
    color: #1e293b;
    font-size: 0.95rem;
}

/* Badge dla Google Play QR kodu */
.download-section .qr-code-container:nth-child(2) .qr-code-wrapper {
    position: relative;
}

.download-section .qr-code-container:nth-child(2) .qr-code-wrapper::after {
    content: "dostępne wkrótce";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(71, 85, 105, 0.9);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 10px rgba(71, 85, 105, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    z-index: 3;
}

@media (max-width: 768px) {
    .download-section {
        padding: 3rem 0;
    }
    
    .download-qr-codes {
        gap: 1.5rem;
    }
    
    .download-section .qr-code-wrapper {
        width: 100px;
        height: 100px;
    }
    
    .download-section .qr-code-overlay {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 480px) {
    .download-section {
        padding: 2.5rem 0;
    }
    
    .download-qr-codes {
        gap: 1.25rem;
    }
    
    .download-section .qr-code-wrapper {
        width: 90px;
        height: 90px;
    }
    
    .download-section .qr-code-overlay {
        width: 30px;
        height: 30px;
    }
    
    .download-section .qr-code-overlay svg {
        width: 18px;
        height: 18px;
    }
}

/* --- NOWE SEKCJE ZGODNE Z INSPIRACJĄ --- */



/* Features Section */
.features-section {
    background: #f7f5ff;
    padding: 6rem 0;
}

.features-section .section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.features-section .section-header h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #3f3d56;
    margin-bottom: 1rem;
}

.features-section .section-header p {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.125rem;
    color: #696871;
    line-height: 1.6;
}

.features-wrapper {
    background: #ffffff;
    border-radius: 20px;
    padding: 5rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    max-width: 1100px;
    margin: 0 auto;
}

.features-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.features-column {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    gap: 5rem;
    flex-basis: 25%;
}

.features-column-center {
    flex-basis: 40%;
    text-align: center;
}

.phone-image {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0px 15px 30px rgba(0, 0, 0, 0.15));
}

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

.features-column-left .feature-item {
    text-align: right;
}

.features-column-right .feature-item {
    text-align: left;
}

.feature-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    background: #f1f0ff;
    border-radius: 50%;
    margin-bottom: 1.25rem;
    box-shadow: 0 5px 15px rgba(108, 99, 255, 0.1);
}

.feature-icon svg {
    color: #6c63ff;
}

.feature-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #3f3d56;
    margin: 0 0 0.75rem;
}

.feature-item p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #696871;
    margin: 0;
}



/* Responsive dla nowych sekcji */
@media (max-width: 768px) {
    .section-header h2 {
        font-size: 1.75rem;
    }


    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
    }
    
    .features-section {
        padding: 4rem 0;
    }
    
    /* Mobile App Intro responsive */
    .intro-content h2 {
        font-size: 2rem;
    }
    
    .intro-features {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    
    /* New Features Section responsive */
    .features-wrapper {
        padding: 3rem 1.5rem;
    }
    
    .features-grid {
        flex-direction: column;
    }
    
    .features-column-left, .features-column-right {
        order: 2;
        flex-direction: column;
        align-items: center;
        gap: 3rem;
        margin-top: 3rem;
    }
    
    .features-column-center {
        order: 1;
    }
    
    .feature-item {
        max-width: 300px;
        text-align: center !important;
    }
    
    .mobile-app-intro {
        padding: 3rem 0;
    }
}

/* Tablet responsive for features */
@media (max-width: 992px) and (min-width: 769px) {
    .features-grid {
        flex-direction: column;
    }
    
    .features-column-left, .features-column-right {
        order: 2;
        flex-direction: row;
        gap: 2rem;
        width: 100%;
        justify-content: space-around;
        margin-top: 3rem;
    }
    
    .features-column-left .feature-item,
    .features-column-right .feature-item {
        text-align: center;
        flex-basis: 45%;
    }

    .features-column-center {
        order: 1;
    }

    .features-wrapper {
        padding: 4rem 3rem;
    }
}




