/* Styles for CoolKolonie - W Krainie Fantazji */
/* Spójne ze stylem Eager Beaver, z dodatkową magią! */

/* ----- NAVIGATION HIGHLIGHTS ----- */
.nav-coolkolonie a {
  background: linear-gradient(135deg, #ff6b9d 0%, #ffa06c 100%) !important;
  color: white !important;
  padding: 0.8rem 1.5rem !important;
  border-radius: var(--radius-md) !important;
  font-weight: 600 !important;
  transition: all var(--transition-fast) !important;
  display: inline-block !important;
}

.nav-coolkolonie a:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 12px rgba(255, 107, 157, 0.3) !important;
}

/* Mobile menu - wyróżnienie CoolKolonie */
@media (max-width: 768px) {
  .nav-coolkolonie a {
    text-align: center !important;
    margin: 0.5rem 0 !important;
  }
}

/* ----- HERO SECTION ----- */
.hero-coolkolonie {
  background: linear-gradient(135deg, #ffeef8 0%, #fff5e6 50%, #f0f8ff 100%);
  padding: 12rem 0 8rem;
  position: relative;
  overflow: hidden;
}

.hero-coolkolonie::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 60%;
  height: 150%;
  background: radial-gradient(circle, rgba(255, 182, 193, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-20px, 20px); }
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: white;
  padding: 0.8rem 1.6rem;
  border-radius: 5rem;
  box-shadow: var(--shadow-md);
  margin-bottom: 2rem;
  font-weight: 600;
  color: var(--primary);
}

.badge-icon {
  font-size: 2rem;
  animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.2) rotate(15deg); }
}

.hero-text h1 {
  font-size: 5.6rem;
  line-height: 1.1;
  margin-bottom: 2rem;
}

.highlight-gradient {
  background: linear-gradient(135deg, #ff6b9d 0%, #ffa06c 50%, #ffcd4b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.hero-description {
  font-size: 1.8rem;
  color: var(--medium);
  margin-bottom: 3rem;
  line-height: 1.7;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 3rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.feature-item i {
  color: var(--primary);
  font-size: 2rem;
}

.feature-item span {
  font-weight: 600;
  font-size: 1.5rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

/* Hero CTA Button - wyraźniejszy i większy */
.btn-hero-cta {
  background: linear-gradient(135deg, #52b788 0%, #40916c 100%) !important;
  color: white !important;
  font-size: 2rem !important;
  padding: 1.8rem 4rem !important;
  font-weight: 700 !important;
  box-shadow: 0 8px 20px rgba(82, 183, 136, 0.4) !important;
  border: none !important;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease !important;
}

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

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

.btn-hero-cta:hover {
  transform: translateY(-3px) scale(1.05) !important;
  box-shadow: 0 12px 30px rgba(82, 183, 136, 0.5) !important;
}

.btn-hero-cta i {
  margin-right: 1rem;
  font-size: 1.8rem;
}

/* Secondary button - wyśrodkowanie tekstu */
.hero-buttons .btn-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-buttons .btn-secondary i {
  margin-right: 0.8rem;
}

.hero-image {
  position: relative;
}

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

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

.hero-badge-float {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  background: white;
  padding: 1.5rem;
  border-radius: 50%;
  box-shadow: var(--shadow-lg);
  animation: bounce 3s ease-in-out infinite;
}

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

.badge-logo {
  width: 8rem;
  height: auto;
}

/* ----- FEATURES GRID ----- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 3rem;
  margin-top: 4rem;
}

/* Domyślnie każdy element zajmuje 2 kolumny (3 elementy w rzędzie) */
@media (min-width: 993px) {
  .features-grid .feature-card {
    grid-column: span 2;
  }
  
  /* Wyśrodkowanie ostatnich 2 elementów */
  .features-grid .feature-card:nth-child(4) {
    grid-column: 2 / 4;
  }
  
  .features-grid .feature-card:nth-child(5) {
    grid-column: 4 / 6;
  }
}

.feature-card {
  background: white;
  padding: 3rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 8rem;
  height: 8rem;
  margin: 0 auto 2rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: white;
}

.feature-card h3 {
  margin-bottom: 1rem;
  color: var(--dark);
}

.feature-card p {
  color: var(--medium);
  margin-bottom: 0;
}

/* ----- TIMELINE ----- */
.program-dnia {
  background: linear-gradient(to bottom, #f8f9fa 0%, white 100%);
}

/* Benefits Checklist - używana w "Ramowy plan dnia" */
.benefits-checklist {
  list-style: none;
  padding-left: 0;
  margin: 2rem auto 0;
  max-width: 700px;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.benefits-checklist li {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 2rem;
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  font-size: 1.7rem;
  color: var(--dark);
  font-weight: 500;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.benefits-checklist li:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-md);
}

.benefits-checklist li::before {
  content: "✓";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.8rem;
  flex-shrink: 0;
}

.timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 15rem;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--primary), var(--secondary));
}

.timeline-item {
  display: grid;
  grid-template-columns: 14rem 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
}

.timeline-item::after {
  content: "";
  position: absolute;
  left: 14.85rem;
  top: 0.5rem;
  width: 1.5rem;
  height: 1.5rem;
  background: var(--primary);
  border: 3px solid white;
  border-radius: 50%;
  box-shadow: 0 0 0 3px var(--primary);
}

.timeline-time {
  font-weight: 700;
  color: var(--primary);
  font-size: 1.6rem;
  text-align: right;
  padding-top: 0.3rem;
}

.timeline-content {
  background: white;
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.timeline-content h4 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.timeline-content p {
  color: var(--medium);
  margin-bottom: 0;
  font-size: 1.5rem;
}

/* ----- DAYS PROGRAM ----- */
.days-program {
  display: grid;
  gap: 4rem;
  margin-top: 4rem;
}

.day-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition-medium);
}

.day-card:hover {
  transform: translateY(-8px);
}

.day-header {
  padding: 3rem;
  color: white;
  position: relative;
  overflow: hidden;
}

.day-header::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 150%;
  height: 200%;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.day-fairytales .day-header {
  background: linear-gradient(135deg, #ff6b9d 0%, #ff8fab 100%);
}

.day-harry .day-header {
  background: linear-gradient(135deg, #7b68ee 0%, #9b8fd9 100%);
}

.day-trip .day-header {
  background: linear-gradient(135deg, #4facfe 0%, #6dc5f7 100%);
}

.day-kleks .day-header {
  background: linear-gradient(135deg, #ffa06c 0%, #ffb88c 100%);
}

.day-forest .day-header {
  background: linear-gradient(135deg, #52b788 0%, #74c69d 100%);
}

.day-number {
  display: inline-block;
  background: rgba(255, 255, 255, 0.3);
  padding: 0.5rem 1.5rem;
  border-radius: 5rem;
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.day-header h3 {
  font-size: 3.2rem;
  margin-bottom: 1rem;
}

.day-subtitle {
  font-size: 1.6rem;
  opacity: 0.95;
  margin-bottom: 0;
}

.day-content {
  padding: 3rem;
}

.workshop {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid #e9ecef;
}

.workshop:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.workshop h4 {
  font-size: 1.8rem;
  color: var(--dark);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.workshop h4 i {
  color: var(--primary);
  font-size: 2rem;
}

.workshop p {
  color: var(--medium);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.workshop-list {
  list-style: none;
  padding-left: 0;
}

.workshop-list li {
  padding-left: 2.5rem;
  position: relative;
  margin-bottom: 0.8rem;
  color: var(--medium);
}

.workshop-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
  font-size: 1.6rem;
}

.outdoor-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(135deg, #fff7e6 0%, #ffe4b3 100%);
  border-left: 4px solid #ffa500;
  padding: 1.5rem 2rem;
  margin-top: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.outdoor-badge i {
  color: #ff8c00;
  font-size: 2.4rem;
  flex-shrink: 0;
}

.outdoor-badge span {
  color: var(--dark);
  font-size: 1.5rem;
  line-height: 1.6;
  font-weight: 500;
}

.outdoor-badge-full {
  background: linear-gradient(135deg, #e6f7ff 0%, #b3e0ff 100%);
  border-left-color: #00a8e8;
}

.outdoor-badge-full i {
  color: #0077b6;
}

.outdoor-badge strong {
  color: var(--primary);
  font-weight: 700;
}

.program-cta {
  text-align: center;
  margin-top: 5rem;
}

/* ----- STREFY SECTION ----- */
.strefy-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.strefy-section .section-header h2,
.strefy-section .section-header p {
  color: white;
}

.strefy-section .section-header h2::after {
  background-color: white;
}

.strefy-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 3rem;
  margin-top: 4rem;
}

/* Domyślnie każdy element zajmuje 2 kolumny (3 elementy w rzędzie) */
@media (min-width: 993px) {
  .strefy-grid .strefa-card {
    grid-column: span 2;
  }
  
  /* Wyśrodkowanie ostatnich 2 elementów */
  .strefy-grid .strefa-card:nth-child(4) {
    grid-column: 2 / 4;
  }
  
  .strefy-grid .strefa-card:nth-child(5) {
    grid-column: 4 / 6;
  }
}

.strefa-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.strefa-icon {
  padding: 3rem;
  text-align: center;
  font-size: 4rem;
  color: white;
}

.strefa-kreatywna {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.strefa-plastyczna {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.strefa-chillout {
  background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.strefa-przyroda {
  background: linear-gradient(135deg, #52b788 0%, #74c69d 100%);
}

.strefa-outdoor {
  background: linear-gradient(135deg, #4cc9f0 0%, #4895ef 100%);
}

.strefa-card h3 {
  padding: 2rem 3rem 0 3rem;
  color: var(--dark);
  text-align: center;
  margin-bottom: 2rem;
}

.strefa-content {
  padding: 0 3rem 3rem;
  color: var(--medium);
}

.strefa-content ul {
  list-style: none;
  padding-left: 0;
}

.strefa-content ul li {
  padding-left: 2.5rem;
  position: relative;
  margin-bottom: 1rem;
}

.strefa-content ul li::before {
  content: "●";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-size: 1.2rem;
}

/* ----- POLEC SECTION ----- */
.polec-section {
  background: linear-gradient(to bottom, white 0%, #ffeef8 100%);
}

.polec-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 4rem;
}

.polec-image {
  text-align: center;
}

.polec-image img {
  max-width: 300px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
  display: block;
  margin: 0 auto;
}

.polec-text h2 {
  color: var(--dark);
  margin-bottom: 1.5rem;
}

.lead {
  font-size: 1.9rem;
  color: var(--medium);
  margin-bottom: 3rem;
  line-height: 1.6;
}

.polec-benefits {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.benefit-item {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.benefit-item i {
  font-size: 3rem;
  color: var(--primary);
  margin-top: 0.5rem;
}

.benefit-item h4 {
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.benefit-item p {
  color: var(--medium);
  margin-bottom: 0;
}

/* ----- FAQ SECTION ----- */
.faq-section {
  background: linear-gradient(to bottom, white 0%, #f8f9fa 100%);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-top: 4rem;
}

.faq-item {
  background: white;
  padding: 3rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  border-left: 4px solid var(--primary);
}

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

.faq-question {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.faq-question i {
  font-size: 2.5rem;
  color: var(--primary);
  margin-top: 0.3rem;
  flex-shrink: 0;
}

.faq-question h3 {
  font-size: 1.9rem;
  color: var(--dark);
  margin: 0;
  line-height: 1.4;
}

.faq-answer {
  color: var(--medium);
  font-size: 1.6rem;
  line-height: 1.7;
  margin: 0;
  padding-left: 4rem;
}

.faq-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 2px solid transparent;
  transition: border-color var(--transition-fast);
}

.faq-link:hover {
  border-bottom-color: var(--primary);
}

/* ----- ZAPISY SECTION ----- */
.zapisy-section {
  background: linear-gradient(135deg, #f8f9fa 0%, white 50%, #f8f9fa 100%);
}

.zapisy-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin-top: 4rem;
}

.info-card {
  background: white;
  padding: 3rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.info-card i {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.info-card h3 {
  color: var(--dark);
  margin-bottom: 1.5rem;
}

.info-card ul {
  list-style: none;
  padding-left: 0;
}

.info-card ul li {
  padding-left: 2.5rem;
  position: relative;
  margin-bottom: 1rem;
  color: var(--medium);
  line-height: 1.6;
}

.info-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

.info-card ul li strong {
  color: var(--dark);
}

.info-card ul li a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

.info-card ul li a:hover {
  text-decoration: underline;
}

/* Price Card Styles */
.info-card-price {
  background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
  border: 2px solid var(--primary);
}

.price-options {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.price-option {
  background: white;
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid transparent;
}

.price-option:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.price-early {
  border-color: #52b788;
  position: relative;
  overflow: hidden;
}

.price-early::before {
  content: "PROMOCJA";
  position: absolute;
  top: 10px;
  right: -30px;
  background: linear-gradient(135deg, #52b788 0%, #40916c 100%);
  color: white;
  padding: 5px 40px;
  font-size: 0.75rem;
  font-weight: 700;
  transform: rotate(45deg);
  box-shadow: 0 2px 10px rgba(82, 183, 136, 0.3);
}

.price-label {
  font-size: 0.95rem;
  color: var(--medium);
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.price-amount {
  font-size: 2.5rem;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, var(--primary) 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.price-early .price-amount {
  background: linear-gradient(135deg, #52b788 0%, #40916c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.price-savings {
  font-size: 0.9rem;
  color: #52b788;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.price-savings::before {
  content: "🎉";
}

.price-note {
  background: white;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  color: var(--medium);
  font-size: 0.9rem;
  text-align: center;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.price-note i {
  color: var(--primary);
  font-size: 1rem;
  margin: 0;
}

.zapisy-cta {
  margin-top: 5rem;
  display: flex;
  justify-content: center;
}

.cta-box {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 5rem 4rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  text-align: center;
  max-width: 700px;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 150%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 15s ease-in-out infinite;
}

.cta-icon {
  font-size: 5rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-box h3 {
  color: white;
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.cta-box p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.7rem;
  margin-bottom: 3rem;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.btn-pulse {
  animation: pulse 2s ease-in-out infinite;
  position: relative;
  z-index: 1;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  }
}

.cta-note {
  font-size: 1.4rem;
  margin-top: 2rem;
  margin-bottom: 0;
  opacity: 0.85;
  position: relative;
  z-index: 1;
}

.cta-note i {
  margin-right: 0.5rem;
}

/* ----- FOOTER EXTRAS ----- */
.footer-logo {
  height: 2.5rem;
  width: auto;
  vertical-align: middle;
  margin-left: 0.5rem;
}

/* ----- SUMMARY SECTION ----- */
.summary-section {
  background: linear-gradient(135deg, #ffeef8 0%, #fff5e6 50%, #f0f8ff 100%);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.summary-section::before {
  content: "";
  position: absolute;
  top: -30%;
  left: -10%;
  width: 50%;
  height: 150%;
  background: radial-gradient(circle, rgba(255, 107, 157, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.summary-box {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 5rem 4rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  text-align: center;
  position: relative;
  z-index: 1;
}

.summary-box h2 {
  color: var(--dark);
  font-size: 3.2rem;
  margin-bottom: 3rem;
  line-height: 1.3;
}

.summary-checklist {
  list-style: none;
  padding-left: 0;
  margin: 0 auto 3rem;
  text-align: left;
  display: inline-block;
  width: 100%;
  max-width: 600px;
}

.summary-checklist li {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.2rem 0;
  font-size: 1.8rem;
  color: var(--dark);
  font-weight: 500;
  border-bottom: 1px solid #f0f0f0;
}

.summary-checklist li:last-child {
  border-bottom: none;
}

.summary-checklist li::before {
  content: "✓";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  background: linear-gradient(135deg, #52b788 0%, #40916c 100%);
  color: white;
  border-radius: 50%;
  font-weight: 700;
  font-size: 2rem;
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(82, 183, 136, 0.3);
}

.summary-cta {
  font-size: 2rem;
  color: var(--primary);
  font-weight: 600;
  margin: 0;
  line-height: 1.5;
}

.powered-by {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

/* ----- RESPONSIVE ----- */
@media (min-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr 1fr;
  }

  .form-row {
    grid-template-columns: 1fr 1fr;
  }

  .timeline::before {
    left: 16rem;
  }

  .timeline-item {
    grid-template-columns: 15rem 1fr;
  }

  .timeline-item::after {
    left: 15.85rem;
  }
}

@media (min-width: 1024px) {
  .polec-content {
    grid-template-columns: 1fr 1.5fr;
  }

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

@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .features-grid .feature-card {
    grid-column: span 1 !important;
  }
  
  .strefy-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .strefy-grid .strefa-card {
    grid-column: span 1 !important;
  }

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

@media (max-width: 768px) {
  .hero-coolkolonie {
    padding: 13rem 0 6rem;
  }

  .hero-text h1 {
    font-size: 4rem;
  }

  .hero-description {
    font-size: 1.6rem;
  }

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

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

  /* Hero CTA responsive */
  .btn-hero-cta {
    font-size: 1.8rem !important;
    padding: 1.5rem 3rem !important;
  }

  /* Benefits checklist responsive */
  .benefits-checklist li {
    padding: 1.2rem 1.5rem;
    font-size: 1.5rem;
    gap: 1rem;
  }

  .benefits-checklist li::before {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.5rem;
  }

  .timeline::before {
    left: 2rem;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    padding-left: 4rem;
  }

  .timeline-item::after {
    left: 1.55rem;
  }

  .timeline-time {
    text-align: left;
    padding-top: 0;
    margin-bottom: 0.5rem;
  }

  .day-header h3 {
    font-size: 2.6rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .features-grid .feature-card {
    grid-column: span 1 !important;
  }

  .strefy-grid {
    grid-template-columns: 1fr;
  }
  
  .strefy-grid .strefa-card {
    grid-column: span 1 !important;
  }

  .zapisy-info-grid {
    grid-template-columns: 1fr;
  }

  .cta-box {
    padding: 3rem 2rem;
  }

  .cta-box h3 {
    font-size: 2.2rem;
  }

  .cta-box p {
    font-size: 1.5rem;
  }

  .price-amount {
    font-size: 2rem;
  }

  .price-option {
    padding: 1.5rem;
  }

  .price-early::before {
    font-size: 0.65rem;
    padding: 4px 35px;
  }

  .polec-text {
    text-align: center;
  }

  .polec-benefits {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .benefit-item {
    flex-direction: column;
    text-align: center;
    align-items: center;
    max-width: 400px;
  }

  .benefit-item i {
    margin-top: 0;
  }

  /* Summary section responsive */
  .summary-box {
    padding: 3rem 2rem;
  }

  .summary-box h2 {
    font-size: 2.4rem;
  }

  .summary-checklist li {
    font-size: 1.6rem;
    padding: 1rem 0;
    gap: 1rem;
  }

  .summary-checklist li::before {
    width: 3rem;
    height: 3rem;
    font-size: 1.8rem;
  }

  .summary-cta {
    font-size: 1.7rem;
  }

  /* FAQ responsive */
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .faq-item {
    padding: 2rem;
  }

  .faq-question h3 {
    font-size: 1.7rem;
  }

  .faq-answer {
    font-size: 1.5rem;
    padding-left: 0;
  }

  .faq-question {
    flex-direction: column;
    gap: 1rem;
  }

  .faq-question i {
    margin-top: 0;
  }
}

/* ----- ANIMATIONS ----- */
@media (prefers-reduced-motion: no-preference) {
  .feature-card,
  .day-card,
  .strefa-card,
  .info-card {
    animation: fadeInUp 0.6s ease-out backwards;
  }

  .feature-card:nth-child(1) { animation-delay: 0.1s; }
  .feature-card:nth-child(2) { animation-delay: 0.2s; }
  .feature-card:nth-child(3) { animation-delay: 0.3s; }
  .feature-card:nth-child(4) { animation-delay: 0.4s; }

  .day-card:nth-child(1) { animation-delay: 0.1s; }
  .day-card:nth-child(2) { animation-delay: 0.2s; }
  .day-card:nth-child(3) { animation-delay: 0.3s; }
  .day-card:nth-child(4) { animation-delay: 0.4s; }
}

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

/* ----- PRINT STYLES ----- */
@media print {
  .header,
  .footer,
  .hero-buttons,
  .program-cta,
  .zapisy-section {
    display: none;
  }

  .day-card,
  .feature-card {
    page-break-inside: avoid;
  }
}

