/* =================
   LAYOUT CONTAINERS
   ================= */
.content-container {
  max-width: 1400px;
  margin: 0 auto;
  background-color: var(--background-light);
  position: relative;
  z-index: 1;
}

.section {
  padding: var(--section-padding) var(--content-padding);
  position: relative;
  overflow-x: hidden;
}

.dark-section {
  background-color: var(--background-dark);
}

.light-section {
  background-color: var(--background-light);
  color: var(--text-dark);
}

.light-section .section-title {
  color: var(--primary-dark);
}

/* =================
   PROCESS SECTION
   ================= */
/* removed .process-container flex/grid layout */

.process-step {
  background: var(--background-light);
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: var(--shadow-medium);
  border: 2px solid transparent;
  transition: var(--transition-smooth);
  position: relative;
  min-width: 180px;
  flex: 1;
  max-width: 200px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s ease forwards;
}

.process-step:nth-child(odd) { animation-delay: 0.2s; }
.process-step:nth-child(3) { animation-delay: 0.4s; }
.process-step:nth-child(5) { animation-delay: 0.6s; }
.process-step:nth-child(7) { animation-delay: 0.8s; }
.process-step:nth-child(9) { animation-delay: 1.0s; }

.process-step:hover {
  transform: translateY(-10px);
  border-color: var(--primary-light);
  box-shadow: 0 15px 40px rgba(138, 121, 168, 0.2);
}

.step-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-lighter) 100%);
  color: var(--text-light);
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 3px 10px rgba(138, 121, 168, 0.4);
}

.step-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-lighter) 100%);
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 5px 15px rgba(138, 121, 168, 0.3);
  transition: var(--transition-fast);
}

.step-icon:hover {
  transform: scale(1.1);
}

.step-icon i {
  color: var(--text-light);
  font-size: 28px;
}

.step-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 15px;
  line-height: 1.3;
}

.step-description {
  font-size: 0.95rem;
  color: var(--text-gray);
  line-height: 1.5;
  margin-bottom: 20px;
  min-height: 40px;
}

.step-duration {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-medium) 100%);
  color: var(--text-light);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* removed .process-arrow */

.total-time {
  background: #ffffff;
  color: var(--text-dark);
  padding: 25px;
  border-radius: var(--radius-medium);
  text-align: center;
  margin-top: clamp(30px, 6vw, 40px);
  box-shadow: 0 10px 30px rgba(0,0,0, 0.15);
  border: 1px solid rgba(0,0,0, 0.1);
}

.total-time-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 10px;
}

.total-time-content i {
  font-size: 2rem;
  color: rgba(0,0,0, 0.7);
}

.total-text {
  font-size: 1.3rem;
  font-weight: 400;
}

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

.total-note {
  font-size: 0.9rem;
  opacity: 0.8;
  font-style: italic;
  margin: 0;
}

/* =================
   CASE STUDY SECTION
   ================= */
.case-study-section {
  background: transparent;
  padding: clamp(60px, 8vw, 100px) 0;
  position: relative;
  overflow: hidden;
}

.case-study-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.case-study-content {
  background: linear-gradient(135deg, #1a0f2e 0%, #2a1435 50%, #1a0f2e 100%);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: clamp(40px, 6vw, 60px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.case-study-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(800px 400px at 30% 20%, rgba(255,79,216,.08), transparent 50%),
              radial-gradient(600px 300px at 80% 80%, rgba(0,212,255,.06), transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.case-study-header {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.case-study-badge {
  display: inline-block;
  background: linear-gradient(135deg, #ff4fd8, #00d4ff);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.case-study-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: #f6f5ff;
  font-weight: 700;
  margin: 0;
  text-align: center;
}

.case-study-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 50px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.case-study-text {
  grid-column: 1;
  grid-row: 1;
}

.case-study-visual {
  grid-column: 2;
  grid-row: 1;
}

.case-study-stats {
  grid-column: 1 / -1;
  grid-row: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.case-study-project-title {
  font-size: clamp(1.3rem, 3vw, 1.6rem);
  color: #ff4fd8;
  font-weight: 600;
  margin-bottom: 20px;
}

.case-study-description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #e0e0e0;
  margin-bottom: 30px;
  text-align: justify;
}

.case-study-description strong {
  color: #00d4ff;
  font-weight: 600;
}

.case-study-visual {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.case-study-image-container {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.case-study-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.case-study-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.case-study-image-container:hover .case-study-overlay {
  opacity: 1;
}

.case-study-image-container:hover .case-study-image {
  transform: scale(1.05);
}

.case-study-play-icon {
  font-size: 3rem;
  color: white;
  cursor: pointer;
}

.case-study-quote {
  background: rgba(255, 255, 255, 0.08);
  padding: 25px;
  border-radius: 15px;
  border-left: 4px solid #ff4fd8;
}

.case-study-quote p {
  font-style: italic;
  font-size: 1rem;
  line-height: 1.5;
  color: #e0e0e0;
  margin: 0 0 10px 0;
}

.case-study-quote cite {
  font-size: 0.9rem;
  color: #00d4ff;
  font-weight: 600;
}

/* =================
   STATS SECTION - POPRAWA CZYTELNOŚCI
   ================= */
.stats-section {
  background: linear-gradient(135deg, #1a0f2e, #2a0f4a);
  padding: 60px 20px;
  text-align: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.stat-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 30px 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(255, 79, 216, 0.4);
}

.stat-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  background: linear-gradient(135deg, var(--sd-magenta), var(--sd-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 18px rgba(255,79,216,.6), 0 0 28px rgba(0,212,255,.4);
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--sd-white);
  text-shadow: 0 0 12px rgba(255,255,255,0.4);
}

.stat-label {
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  margin-top: 8px;
}

/* =================
   STATS SECTION - FULL WIDTH BACKGROUND
   ================= */
.stats-section {
  width: 100%;
  background: linear-gradient(135deg, #1a0f2e, #2a0f4a);
  padding: 80px 0;
  margin: 0;
}

.stats-section .stats-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* =================
   GUARANTEE SECTION
   ================= */
.guarantee-section {
  background: linear-gradient(180deg, #ffffff, #f9f7fb);
  padding: clamp(40px, 6vw, 60px) var(--content-padding);
  border: 3px solid rgba(138, 121, 168, 0.2);
  border-radius: 25px;
  margin: 30px auto;
  max-width: 1200px;
  box-shadow: 0 15px 40px rgba(138, 121, 168, 0.15);
  position: relative;
  overflow: hidden;
}

.guarantee-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.guarantee-section .section-title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin: 0 auto 20px;
  color: #000;
  position: static;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: 1.5px;
  left: auto;
  transform: none;
}

.guarantee-section .section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-light), var(--primary-lighter));
  margin: 12px auto 0;
  border-radius: 2px;
}

.guarantee-section .section-title i {
  margin-right: 0;
  color: #28a745;
}

.guarantee-section .section-text {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-gray);
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.guarantee-module-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 50px 0;
}

.guarantee-module {
  background: white;
  padding: 50px 40px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  border: 2px solid transparent;
  transition: all 0.3s ease;
  position: relative;
  width: 100%;
  max-width: 600px;
  text-align: center;
  margin: 0 auto;
}

.guarantee-module:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.guarantee-icon {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(40, 167, 69, 0.4);
}

.guarantee-icon i {
  color: white;
  font-size: 28px;
}

.guarantee-module-title {
  color: var(--primary-dark);
  font-size: 1.6rem;
  margin: 35px 0 25px 0;
  font-weight: 700;
  text-align: center;
}

.guarantee-module-text {
  color: var(--text-gray);
  line-height: 1.7;
  font-size: 1.1rem;
  margin: 0;
  text-align: center;
}

/* Trust Badge */
.trust-badge {
  margin-top: 50px;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-medium) 100%);
  border-radius: 20px;
  padding: 30px;
  color: white;
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.trust-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.trust-icon {
  font-size: 2.5rem;
  color: var(--primary-lighter);
  opacity: 0.8;
}

.trust-text {
  text-align: left;
  flex: 1;
  min-width: 250px;
}

.trust-text h4 {
  font-size: 1.3rem;
  margin-bottom: 5px;
  color: var(--primary-lighter);
}

.trust-text p {
  margin: 0;
  opacity: 0.9;
  font-size: 1rem;
}

/* =================
   PROMOTION SYSTEM SECTION
   ================= */
#promotion.section.light-section {
  background: linear-gradient(180deg, 
    #ffffff 0%, 
    #f8f9ff 8%,
    #f0f4ff 15%, 
    #e8f1ff 22%,
    #deeeff 30%,
    #e8f1ff 70%,
    #f0f4ff 78%,
    #f8f9ff 85%,
    #ffffff 92%,
    #ffffff 100%);
  position: relative;
}

.promotion-system-module {
  margin-top: 20px;
  background: radial-gradient(1200px 600px at 70% 20%, rgba(255,79,216,.15), transparent 60%),
              radial-gradient(900px 500px at 20% 80%, rgba(0,212,255,.18), transparent 60%),
              linear-gradient(135deg, var(--sd-bg-1), var(--sd-bg-2));
  border-radius: 25px;
  padding: 50px 40px;
  color: white;
  position: relative;
  overflow: hidden;
}

.promotion-system-module::before {
  content:"";
  position:absolute; 
  inset:-200px;
  background: conic-gradient(from 0deg, #0000, rgba(255,79,216,.25), #0000 35%, rgba(0,212,255,.25));
  filter: blur(60px);
  animation: sd-bg-rotate 18s linear infinite;
  z-index: -1;
}

/* Background decorations */
.promotion-bg-decoration-1 {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(177, 156, 217, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.promotion-bg-decoration-2 {
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(138, 121, 168, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

/* Header section */
.promotion-header {
  text-align: center;
  margin-bottom: 10px;
}

.promotion-badge {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: rgba(255,255,255,0.1);
  padding: 15px 30px;
  border-radius: 50px;
  margin-bottom: 25px;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.promotion-badge-icon {
  color: #b19cd9;
  font-size: 1.5rem;
}

.promotion-main-title {
  font-size: 2.2rem;
  font-weight: 800;
  margin: 0 0 20px 0;
  background: linear-gradient(135deg, #b19cd9 0%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.promotion-spacer {
  height: 20px;
}

/* Features grid */
.promotion-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.promotion-feature-card {
  background: rgba(255,255,255,0.08);
  padding: 30px;
  border-radius: 20px;
  border: 1px solid rgba(177, 156, 217, 0.2);
  transition: all 0.3s ease;
}

.promotion-feature-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

/* Feature icons with different colors */
.promotion-feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.promotion-feature-icon.purple {
  background: linear-gradient(135deg, #8a79a8 0%, #b19cd9 100%);
}

.promotion-feature-icon.orange {
  background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
}

.promotion-feature-icon.green {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

.promotion-feature-icon i {
  color: white;
  font-size: 24px;
}

.promotion-feature-title {
  margin: 0;
  font-size: 1.3rem;
  color: white;
  font-weight: 700;
}

.promotion-feature-subtitle {
  margin: 5px 0 0 0;
  font-weight: 600;
  font-size: 0.9rem;
}

.promotion-feature-subtitle.purple { color: #b19cd9; }
.promotion-feature-subtitle.orange { color: #F7931E; }
.promotion-feature-subtitle.green { color: #20c997; }

.promotion-feature-text {
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
  margin: 0;
  font-size: 1rem;
}

/* Call to action section */
.promotion-cta {
  text-align: center;
  margin-top: 40px;
}

.promotion-quote-photo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.promotion-quote-photo img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid #b19cd9;
  object-fit: cover;
}

.promotion-quote-text {
  max-width: 500px;
  text-align: left;
}

.promotion-quote-text p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
  margin: 0;
  font-style: italic;
  line-height: 1.4;
}

.promotion-quote-icon {
  color: #b19cd9;
  margin-right: 10px;
}

.promotion-quote-author {
  margin: 10px 0 0 0;
  font-size: 0.9rem;
  color: #b19cd9;
  font-weight: 600;
}

.promotion-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
  color: white;
  padding: 18px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.promotion-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(255, 107, 53, 0.4);
}

.promotion-cta-button i {
  font-size: 1.2rem;
}

/* =================
   FRIENDS & PARTNERS
   ================= */
#friends {
  margin-bottom: 0;
  padding-bottom: clamp(20px, 4vw, 30px);
}

#friends .section-title {
  margin-bottom: 40px;
}

.friends-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: clamp(30px, 6vw, 40px) auto;
  align-items: center;
}

.friend-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
}

.friend-logo img {
  max-width: 100%;
  max-height: 100%;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.friend-logo:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

/* Specific logo size adjustments */
.friend-logo img[src*="scena.png"] {
  transform: scale(0.9);
}

.friend-logo img[src*="paulina-strona.png"] {
  transform: scale(1.1);
}

.friend-logo img[src*="stereosound-logo2.png"] {
  transform: scale(1.15);
}

.friend-logo:hover img[src*="scena.png"] {
  transform: scale(0.945);
}

.friend-logo:hover img[src*="paulina-strona.png"] {
  transform: scale(1.155);
}

.friend-logo:hover img[src*="stereosound-logo2.png"] {
  transform: scale(1.2075);
}

/* =================
   STICKY ELEMENTS (from index.html)
   ================= */
.sticky-contact-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, #20162D 0%, #2a1f3f 50%, #1a1525 80%, #0C0C0E 100%);
  color: white;
  padding: 11px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 -5px 25px rgba(32, 22, 45, 0.4);
  border-top: 2px solid rgba(255, 255, 255, 0.1);
  animation: slideUp 0.8s ease 2s both;
  transition: all 0.3s ease;
}

.bar-content {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
}

.bar-icon {
  font-size: 24px;
  animation: bounce 2s infinite 3s;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-5px); }
  60% { transform: translateY(-3px); }
}

.bar-text {
  flex: 1;
  font-weight: 600;
  font-size: 16px;
}

.bar-text strong {
  color: #fff;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.bar-btn {
  background: rgba(255, 255, 255, 0.9);
  color: #8a79a8;
  border: 2px solid white;
  padding: 10px 25px;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.bar-btn:hover {
  background: white;
  color: #20162D;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

#close-bar {
  display: none;
}

.bar-close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  cursor: pointer;
  margin-left: 15px;
  transition: all 0.3s ease;
  padding: 5px;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bar-close:hover {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  transform: scale(1.1);
}

#close-bar:checked ~ .sticky-contact-bar {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}

.instagram-widget {
  position: fixed;
  bottom: 90px;
  right: 30px;
  z-index: 1001;
  background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
  width: 60px;
  height: 60px;
  border-radius: var(--radius-pill);
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: var(--transition-fast);
  text-decoration: none;
}

.instagram-widget:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.instagram-icon {
  color: var(--text-light);
  font-size: 1.8rem;
}

/* =================
   PROCESS CONTAINER LAYOUT (from index.html)
   ================= */
/* Process Container - Grid Layout */
/* removed .process-container flex/grid layout */

.process-step {
  background: white;
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 2px solid transparent;
  transition: all 0.4s ease;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s ease forwards;
}

.process-step:nth-child(odd) { animation-delay: 0.2s; }
.process-step:nth-child(3) { animation-delay: 0.4s; }
.process-step:nth-child(5) { animation-delay: 0.6s; }
.process-step:nth-child(7) { animation-delay: 0.8s; }
.process-step:nth-child(9) { animation-delay: 1.0s; }

.process-step:hover {
  transform: translateY(-10px);
  border-color: #8a79a8;
  box-shadow: 0 15px 40px rgba(138, 121, 168, 0.2);
}

.step-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, #8a79a8 0%, #b19cd9 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 3px 10px rgba(138, 121, 168, 0.4);
}

.step-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #8a79a8 0%, #b19cd9 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 5px 15px rgba(138, 121, 168, 0.3);
  transition: all 0.3s ease;
}

.step-icon:hover {
  transform: scale(1.1);
}

.step-icon i {
  color: white;
  font-size: 28px;
}

.step-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #20162D;
  margin-bottom: 15px;
  line-height: 1.3;
}

.step-description {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.5;
  margin-bottom: 20px;
  min-height: 40px;
}

.step-duration {
  display: inline-block;
  background: linear-gradient(135deg, #20162D 0%, #2a1f3f 100%);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* removed .process-arrow */

.total-time {
  background: #ffffff;
  color: #333333;
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  margin-top: 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border: 2px solid #f0f0f0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.total-time-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 10px;
}

.total-time-content i {
  font-size: 2rem;
  color: #666666;
}

.total-text {
  font-size: 1.3rem;
  font-weight: 400;
}

.total-text strong {
  color: #4a4a4a;
  font-weight: 700;
}

.total-note {
  font-size: 0.95rem;
  opacity: 0.9;
  margin: 15px 0 0 0;
  padding: 10px;
  background: #f8f9fa;
  border-radius: 8px;
  border-left: 3px solid #ffd700;
}

.total-time .btn-outline {
  color: #333333;
  border-color: #333333;
  background: transparent;
}

.total-time .btn-outline:hover {
  background: #333333;
  color: #ffffff;
}

/* =================
   STATS SECTION - FULL BLEED FIX (override)
   ================= */
.content-container {
  background-color: transparent !important;
}

.stats-section {
  position: relative;
  padding: 80px 0;
  background: transparent !important; /* tło przeniesione do ::before */
  isolation: isolate; /* nowy stacking context, żeby ::before działał nad białym tłem kontenera */
  overflow: visible;
}

.stats-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;      /* pełna szerokość okna */
  height: 100%;
  background: linear-gradient(135deg, #1a0f2e, #2a0f4a);
  z-index: -1;       /* pod treścią sekcji, ale nad tłem kontenera */
}

/* grid szerokość jak wcześniej */
.stats-section .stats-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
