/*!******************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].use[1]!./node_modules/@wordpress/scripts/node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[4].use[2]!./node_modules/@wordpress/scripts/node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[4].use[3]!./resources/scss/pages/_front-page.scss ***!
  \******************************************************************************************************************************************************************************************************************************************************************************************************************************/
@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
.promo-banner {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: white;
  text-align: center;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  overflow: hidden;
}

.promo-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  animation: shimmer 3s infinite;
}

.header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: #1f2937;
  text-decoration: none;
}

.logo .accent {
  color: #3b82f6;
}

.primary-menu-button,
button[aria-label="Primary Menu"],
.menu-toggle {
  display: none !important;
}

.nav-cta {
  background: #3b82f6;
  color: white;
  padding: 10px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s ease;
}

.nav-cta:hover {
  background: #2563eb;
  transform: translateY(-1px);
}

.hero {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .hero {
    padding: 24px 0;
  }
}
.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (max-width: 968px) {
  .hero-container {
    display: block;
    gap: 0;
  }
}
@media (max-width: 968px) {
  .hero-content {
    text-align: left;
    order: 1;
  }
}
.hero-content h1, .hero-content .hero-title {
  font-size: 3rem;
  font-weight: 800;
  color: #111827;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

@media (max-width: 1200px) {
  .hero-content h1, .hero-content .hero-title {
    font-size: 2.5rem;
  }
}
@media (max-width: 768px) {
  .hero-content h1, .hero-content .hero-title {
    font-size: 2rem;
    text-align: left;
    margin-bottom: 20px;
  }
}
.hero-content .highlight {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-video {
  position: relative;
}

@media (max-width: 968px) {
  .hero-video {
    order: 2;
    margin-top: -8px;
    margin-bottom: 24px;
  }
}
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  background: #000;
}

.video-wrapper iframe,
.video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 16px;
  -o-object-fit: cover;
  object-fit: cover;
}

.video-wrapper::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.video-wrapper:hover::after {
  opacity: 0;
}

.video-caption {
  text-align: center;
  margin-top: 16px;
}

.video-caption p {
  color: #6b7280;
  font-size: 0.875rem;
  margin: 0;
  font-weight: 500;
}

@media (max-width: 968px) {
  .hero-content .hero-title-section {
    order: 1;
  }
  .hero-content .hero-remaining-content {
    order: 3;
  }
}
.hero-subtitle {
  font-size: 1.125rem;
  color: #6b7280;
  margin-bottom: 32px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .hero-subtitle {
    text-align: left;
    margin-bottom: 24px;
  }
}
.hero-stats {
  display: flex;
  gap: 24px;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .hero-stats {
    justify-content: flex-start;
    gap: 20px;
    margin-bottom: 32px;
  }
}
.stat {
  text-align: center;
}

.stat-number {
  font-size: 1.75rem;
  font-weight: 700;
  color: #3b82f6;
  display: block;
}

@media (max-width: 768px) {
  .stat-number {
    font-size: 1.5rem;
  }
}
.stat-label {
  font-size: 0.875rem;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (max-width: 768px) {
  .hero-cta {
    align-items: stretch;
  }
}
.hero-cta .cta-button {
  width: 100%;
  max-width: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: white;
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
  border: none;
  cursor: pointer;
  display: inline-block;
  line-height: 1.3;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(59, 130, 246, 0.4);
  color: white;
}

.btn-primary br {
  display: block;
  content: "";
  margin: 2px 0;
}

.price-info {
  text-align: center;
  padding: 16px;
  background: rgba(59, 130, 246, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(59, 130, 246, 0.1);
  width: 100%;
}

.price-original {
  text-decoration: line-through;
  color: #9ca3af;
  font-size: 1rem;
}

.price-current {
  font-size: 1.5rem;
  font-weight: 700;
  color: #3b82f6;
  margin: 0 8px;
}

.price-save {
  background: #ef4444;
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  display: inline-block;
  margin-top: 8px;
}

.course-preview-section {
  background: white;
  padding: 60px 0;
  border-top: 1px solid #e5e7eb;
}

.preview-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.preview-content {
  background: #f8fafc;
  border-radius: 20px;
  padding: 48px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
  .preview-content {
    padding: 32px 24px;
  }
}
.preview-header {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 48px;
  text-align: left;
}

@media (max-width: 768px) {
  .preview-header {
    flex-direction: column;
    gap: 16px;
  }
}
.preview-header .preview-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .preview-header .preview-icon {
    margin: 0 0 8px 0;
  }
}
.preview-header .preview-text-content {
  flex: 1;
}

.preview-header .preview-text-content .preview-title {
  font-size: 2rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 8px;
  text-align: left;
}

@media (max-width: 768px) {
  .preview-header .preview-text-content .preview-title {
    font-size: 1.5rem;
  }
}
.preview-header .preview-text-content .preview-subtitle {
  font-size: 1.125rem;
  color: #6b7280;
  margin: 0;
  text-align: left;
}

.modules-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

@media (max-width: 768px) {
  .modules-flex {
    gap: 16px;
  }
}
.module-item {
  flex: 0 1 calc(50% - 20px);
  max-width: calc(50% - 20px);
  min-width: 280px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: white;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .module-item {
    flex: 1 1 100%;
    max-width: 100%;
    min-width: auto;
  }
}
.module-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-color: #3b82f6;
}

.module-item span {
  color: #1f2937;
  font-weight: 500;
  line-height: 1.4;
}

.module-check {
  width: 24px;
  height: 24px;
  background: #10b981;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 14px;
  font-weight: bold;
  flex-shrink: 0;
}

.social-proof {
  padding: 80px 0;
  background: #f8fafc;
}

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

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

@media (max-width: 768px) {
  .section-header {
    text-align: left;
  }
}
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
    text-align: left;
  }
}
.section-subtitle {
  font-size: 1.25rem;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .section-subtitle {
    margin: 0;
    text-align: left;
  }
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
}

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}
.testimonial-card {
  background: white;
  border-radius: 16px;
  padding: 32px;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
  font-size: 1.1rem;
  color: #374151;
  margin-bottom: 24px;
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
}

.author-info h4 {
  font-weight: 600;
  color: #111827;
  margin-bottom: 4px;
}

.author-info p {
  color: #6b7280;
  font-size: 0.875rem;
  margin: 0;
}

.course-content {
  padding: 80px 0;
  background: white;
}

.modules-grid {
  display: grid;
  gap: 24px;
  margin-top: 60px;
}

.module-card {
  background: #f8fafc;
  border-radius: 12px;
  padding: 32px;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: start;
}

@media (max-width: 768px) {
  .module-card {
    grid-template-columns: 1fr;
    text-align: left;
  }
}
.module-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.module-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.25rem;
}

@media (max-width: 768px) {
  .module-icon {
    margin: 0 0 16px 0;
  }
}
.module-info h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 8px;
}

.module-info p {
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

.guarantee {
  padding: 80px 0;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: white;
  text-align: center;
}

.guarantee .section-title {
  color: white;
}

.guarantee .section-subtitle {
  color: rgba(255, 255, 255, 0.9);
}

.guarantee-badge {
  width: 120px;
  height: 120px;
  background: rgba(255, 255, 255, 0.15);
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
  backdrop-filter: blur(10px);
}

.final-cta {
  padding: 80px 0;
  background: #f8fafc;
  text-align: center;
}

@media (max-width: 768px) {
  .final-cta .section-header {
    text-align: left;
  }
}
.cta-card {
  max-width: 600px;
  margin: 0 auto;
  background: white;
  border-radius: 20px;
  padding: 48px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.timer {
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 12px;
  padding: 24px;
  margin: 32px 0;
}

.timer-title {
  font-size: 1rem;
  font-weight: 600;
  color: #dc2626;
  margin-bottom: 12px;
}

.timer-display {
  font-size: 2rem;
  font-weight: 700;
  color: #dc2626;
  font-family: "Monaco", monospace;
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

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

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

.mb-4 {
  margin-bottom: 2rem;
}

.mobile-video {
  display: none;
  margin: 16px 0 20px 0;
}

@media (max-width: 968px) {
  .mobile-video {
    display: block;
  }
}
.desktop-video {
  display: block;
}

@media (max-width: 968px) {
  .desktop-video {
    display: none;
  }
}
.blog-posts-section {
  padding: 80px 0;
  background: white;
  border-top: 1px solid #e5e7eb;
}

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

@media (max-width: 768px) {
  .blog-posts-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 40px;
  }
}
.blog-post-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.blog-post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border-color: #3b82f6;
}

.post-thumbnail {
  position: relative;
  overflow: hidden;
  height: 200px;
  background: #f1f5f9;
}

.post-thumbnail .post-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.post-thumbnail:hover .post-image {
  transform: scale(1.05);
}

.post-thumbnail .post-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.post-thumbnail .post-placeholder .placeholder-icon {
  font-size: 3rem;
  opacity: 0.3;
}

.post-thumbnail .post-date {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #374151;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.post-content {
  padding: 24px;
}

.post-title {
  margin: 0 0 12px 0;
}

.post-title a {
  font-size: 1.25rem;
  font-weight: 600;
  color: #111827;
  text-decoration: none;
  line-height: 1.3;
  transition: color 0.2s ease;
}

.post-title a:hover {
  color: #3b82f6;
}

.post-excerpt {
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.post-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid #f3f4f6;
}

.read-more {
  color: #3b82f6 !important;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.read-more:hover {
  color: #2563eb !important;
  gap: 8px;
}

.read-more .arrow {
  transition: transform 0.2s ease;
}

.read-more:hover .arrow {
  transform: translateX(2px);
}

.post-meta {
  font-size: 0.8rem;
  color: #9ca3af;
}

.no-posts-message {
  grid-column: 1/-1;
  text-align: center;
  padding: 60px 20px;
  color: #6b7280;
}

.no-posts-message p {
  font-size: 1.1rem;
  margin: 0;
}

@media (max-width: 768px) {
  .post-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .post-meta {
    order: -1;
    margin-bottom: 8px;
  }
}

/*# sourceMappingURL=front-page.css.map*/