/* Complete redesign matching Feedback careers page style */

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background-color: #f8f9fa;
  color: #1a1a1a;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container-69ab2 {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Header */
.site-header-69ab2 {
  background-color: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow 0.3s ease;
}

.header-inner-69ab2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
}

.logo-69ab2 {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: -0.5px;
}

.logo-accent-69ab2 {
  color: #4a90e2;
}

.burger-btn-69ab2 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: #1a1a1a;
}

.main-nav-69ab2 {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-link-69ab2 {
  color: #1a1a1a;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s ease;
  position: relative;
}

.nav-link-69ab2:hover {
  color: #4a90e2;
}

.mobile-nav-69ab2 {
  display: none;
  background-color: #ffffff;
  border-top: 1px solid #e5e7eb;
  padding: 20px 40px;
  flex-direction: column;
  gap: 16px;
}

.mobile-nav-link-69ab2 {
  color: #1a1a1a;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 0;
  transition: color 0.2s ease;
}

.mobile-nav-link-69ab2:hover {
  color: #4a90e2;
}

/* Hero Section */
.hero-section-69ab2 {
  background-color: #ffffff;
  padding: 80px 0 60px;
}

.hero-content-69ab2 {
  display: flex;
  justify-content: space-between;
  gap: 80px;
  margin-bottom: 60px;
}

.hero-left-69ab2 {
  flex: 0 0 auto;
  max-width: 400px;
}

.hero-label-69ab2 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #4a90e2;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.hero-label-69ab2::before {
  content: '';
  width: 20px;
  height: 20px;
  background-color: #4a90e2;
  border-radius: 2px;
  flex-shrink: 0;
}

.hero-title-69ab2 {
  font-size: 56px;
  font-weight: 400;
  line-height: 1.1;
  color: #1a1a1a;
  letter-spacing: -1px;
}

.hero-right-69ab2 {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 40px;
}

.hero-description-69ab2 {
  font-size: 16px;
  line-height: 1.7;
  color: #4a5568;
  font-weight: 400;
}

.hero-image-69ab2 {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}

.hero-image-69ab2 img {
  width: 100%;
  height: auto;
  display: block;
}

/* Why Section */
.why-section-69ab2 {
  background-color: #f8f9fa;
  padding: 100px 0;
}

.section-title-69ab2 {
  font-size: 40px;
  font-weight: 400;
  line-height: 1.2;
  color: #1a1a1a;
  margin-bottom: 60px;
  letter-spacing: -0.5px;
}

.cards-grid-69ab2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.feature-card-69ab2 {
  perspective: 1000px;
  cursor: pointer;
  height: 600px;
}

.card-inner-69ab2 {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.feature-card-69ab2.flipped-69ab2 .card-inner-69ab2 {
  transform: rotateY(180deg);
}

.card-front-69ab2,
.card-back-69ab2 {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 8px;
  overflow: hidden;
  background-color: #ffffff;
}

.card-back-69ab2 {
  transform: rotateY(180deg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-image-69ab2 {
  width: 100%;
  height: 320px;
  overflow: hidden;
}

.card-image-69ab2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-content-69ab2 {
  padding: 32px;
  background-color: #d4e8f7;
}

.card-title-69ab2 {
  font-size: 22px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 16px;
  line-height: 1.3;
}

.card-description-69ab2 {
  font-size: 15px;
  line-height: 1.6;
  color: #4a5568;
  font-weight: 400;
}

.card-back-content-69ab2 {
  padding: 40px;
  background-color: #c2def5;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.features-list-69ab2 {
  list-style: none;
  margin: 24px 0;
}

.features-list-69ab2 li {
  padding: 12px 0;
  font-size: 15px;
  color: #1a1a1a;
  font-weight: 500;
  border-bottom: 1px solid rgba(74, 144, 226, 0.2);
}

.features-list-69ab2 li:last-child {
  border-bottom: none;
}

/* Stats Section */
.stats-section-69ab2 {
  background-color: #ffffff;
  padding: 80px 0;
}

.stats-grid-69ab2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.stat-item-69ab2 {
  text-align: center;
}

.stat-number-69ab2 {
  font-size: 48px;
  font-weight: 700;
  color: #4a90e2;
  margin-bottom: 8px;
  line-height: 1;
}

.stat-label-69ab2 {
  font-size: 14px;
  color: #4a5568;
  font-weight: 500;
}

/* Courses Section */
.courses-section-69ab2 {
  background-color: #1a1d29;
  color: #ffffff;
  padding: 100px 0;
}

.courses-section-69ab2 .section-title-69ab2 {
  color: #ffffff;
}

.section-subtitle-69ab2 {
  font-size: 16px;
  line-height: 1.7;
  color: #a0aec0;
  margin-bottom: 60px;
  max-width: 800px;
}

.courses-list-69ab2 {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.course-item-69ab2 {
  background-color: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background-color 0.2s ease;
}

.course-item-69ab2:hover {
  background-color: rgba(255, 255, 255, 0.03);
}

.course-header-69ab2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
}

.course-info-69ab2 {
  flex: 1;
}

.course-name-69ab2 {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 4px;
}

.course-location-69ab2 {
  font-size: 14px;
  color: #a0aec0;
  font-weight: 400;
}

.course-btn-69ab2 {
  color: #ffffff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 12px 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  transition: all 0.2s ease;
}

.course-btn-69ab2:hover {
  background-color: #ffffff;
  color: #1a1d29;
}

/* Footer */
.site-footer-69ab2 {
  background-color: #c2def5;
  color: #1a1a1a;
  padding: 60px 0 0;
}

.footer-content-69ab2 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 60px;
}

.footer-left-69ab2 {
  flex: 1;
}

.footer-logo-69ab2 {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 24px;
}

.footer-nav-69ab2 {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-link-69ab2 {
  color: #1a1a1a;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-link-69ab2:hover {
  color: #4a90e2;
}

.footer-right-69ab2 {
  text-align: right;
}

.footer-text-69ab2 {
  font-size: 12px;
  color: #4a5568;
}

.footer-bottom-69ab2 {
  border-top: 1px solid rgba(26, 26, 26, 0.1);
  padding: 24px 0;
}

.footer-bottom-inner-69ab2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-legal-69ab2 {
  display: flex;
  gap: 24px;
}

.footer-legal-link-69ab2 {
  color: #4a5568;
  text-decoration: none;
  font-size: 12px;
  font-weight: 400;
  transition: color 0.2s ease;
}

.footer-legal-link-69ab2:hover {
  color: #1a1a1a;
}

.footer-team-69ab2 {
  font-size: 11px;
  color: #4a5568;
}

/* Cookie Popup */
.cookie-popup-69ab2 {
  position: fixed;
  bottom: -400px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  padding: 32px;
  max-width: 500px;
  width: 90%;
  z-index: 9999;
  transition: bottom 0.5s ease-in-out;
}

.cookie-popup-69ab2.show-69ab2 {
  bottom: 32px;
}

.cookie-text-69ab2 {
  font-size: 14px;
  line-height: 1.6;
  color: #4a5568;
  margin-bottom: 20px;
}

.cookie-link-69ab2 {
  color: #4a90e2;
  text-decoration: none;
  font-weight: 600;
}

.cookie-link-69ab2:hover {
  text-decoration: underline;
}

.cookie-buttons-69ab2 {
  display: flex;
  gap: 12px;
}

.cookie-btn-69ab2 {
  flex: 1;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.cookie-btn-accept-69ab2 {
  background-color: #4a90e2;
  color: #ffffff;
}

.cookie-btn-accept-69ab2:hover {
  background-color: #3a7bc8;
}

.cookie-btn-decline-69ab2 {
  background-color: #e5e7eb;
  color: #1a1a1a;
}

.cookie-btn-decline-69ab2:hover {
  background-color: #d1d5db;
}

/* Responsive */
@media (max-width: 1024px) {
  .container-69ab2 {
      padding: 0 24px;
  }
  
  .hero-content-69ab2 {
      flex-direction: column;
      gap: 40px;
  }
  
  .hero-left-69ab2 {
      max-width: 100%;
  }
  
  .hero-title-69ab2 {
      font-size: 40px;
  }
  
  .hero-right-69ab2 {
      padding-top: 0;
  }
  
  .cards-grid-69ab2 {
      grid-template-columns: 1fr;
  }
  
  .stats-grid-69ab2 {
      grid-template-columns: repeat(2, 1fr);
      gap: 32px;
  }
  
  .footer-content-69ab2 {
      flex-direction: column;
      gap: 32px;
  }
  
  .footer-right-69ab2 {
      text-align: left;
  }
  
  .footer-bottom-inner-69ab2 {
      flex-direction: column;
      gap: 20px;
      align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .burger-btn-69ab2 {
      display: block;
  }
  
  .main-nav-69ab2 {
      display: none;
  }
  
  .mobile-nav-69ab2.show-69ab2 {
      display: flex;
  }
  
  .hero-section-69ab2 {
      padding: 40px 0 30px;
  }
  
  .hero-title-69ab2 {
      font-size: 32px;
  }
  
  .section-title-69ab2 {
      font-size: 32px;
      margin-bottom: 40px;
  }
  
  .why-section-69ab2 {
      padding: 60px 0;
  }
  
  .courses-section-69ab2 {
      padding: 60px 0;
  }
  
  .stats-grid-69ab2 {
      grid-template-columns: 1fr;
  }
  
  .course-header-69ab2 {
      flex-direction: column;
      align-items: flex-start;
      gap: 16px;
  }
  
  .course-btn-69ab2 {
      width: 100%;
      text-align: center;
  }
  
  .footer-nav-69ab2 {
      flex-direction: column;
      gap: 16px;
  }
  
  .footer-legal-69ab2 {
      flex-direction: column;
      gap: 12px;
  }
}
