/** Shopify CDN: Minification failed

Line 3296:0 Unexpected "}"

**/
/* ===============================================
   Custom Sections Styling for A*Vault Theme
   Place this file in: assets/custom-sections.css
   =============================================== */

/* ===== HERO MATRIX SECTION ===== */
.hero-matrix-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 4rem;
  overflow: hidden;
}

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

.hero-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  opacity: 0.95; /* Make background more opaque for better contrast */
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.4) 0%, rgba(15, 23, 42, 0.8) 70%);
}

/* Additional overlay specifically for text contrast */
.hero-text-contrast-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.3);
  z-index: 5;
}

/* ===== MATRIX RAIN EFFECT ===== */
.matrix-rain-container {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

#matrix-canvas {
  width: 100%;
  height: 100%;
  opacity: 1.3; /* Reduced opacity for better text contrast */
}

/* ===== CODE PARTICLES ===== */
.code-particles-container {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

.code-particle {
  position: absolute;
  animation: codeFloat infinite linear;
  opacity: 0;
}

.code-text {
  font-family: 'Courier New', monospace;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(0, 255, 65, 0.6); /* More transparent particles */
  text-shadow: 0 0 8px rgba(0, 255, 65, 0.4); /* Reduced glow */
  white-space: nowrap;
}

/* Different code snippets */
.code-particle:nth-child(4n+1) .code-text::before { content: 'if (grade === "A*")'; }
.code-particle:nth-child(4n+2) .code-text::before { content: 'memory.enhance()'; }
.code-particle:nth-child(4n+3) .code-text::before { content: 'study.optimize()'; }
.code-particle:nth-child(4n+4) .code-text::before { content: 'success.unlock()'; }

/* Additional code variations */
.code-particle:nth-child(5n+1) .code-text::before { content: 'anki.spaced_repetition()'; }
.code-particle:nth-child(5n+2) .code-text::before { content: 'brain.hack_memory()'; }
.code-particle:nth-child(5n+3) .code-text::before { content: 'exam.dominate()'; }
.code-particle:nth-child(5n+4) .code-text::before { content: 'matrix.escape()'; }
.code-particle:nth-child(5n+5) .code-text::before { content: 'elite.join()'; }

@keyframes codeFloat {
  0% { 
    transform: translateY(100vh) translateX(-20px) rotate(0deg); 
    opacity: 0; 
  }
  5% { 
    opacity: 0.8; 
  }
  95% { 
    opacity: 0.8; 
  }
  100% { 
    transform: translateY(-100px) translateX(20px) rotate(5deg); 
    opacity: 0; 
  }
}

.hero-radial-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(600px at 70% 20%, rgba(234, 179, 8, 0.1), transparent 40%);
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
}

.hero-content-inner {
  animation: fadeInUp 1s ease-out;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 2rem;
  padding: 0.75rem 1.5rem;
  margin-bottom: 2rem;
  color: #fbbf24;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
}

.hero-badge:hover {
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 20px rgba(251, 191, 36, 0.3);
}

.hero-badge svg {
  width: 1.25rem;
  height: 1.25rem;
  animation: pulse 2s infinite;
}

.hero-title {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-title-highlight {
  background: linear-gradient(135deg, #fbbf24, #f59e0b, #d97706);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  background-size: 200% 200%;
  animation: gradientShift 3s ease-in-out infinite;
  text-shadow: 0 0 30px rgba(251, 191, 36, 0.5);
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-description {
  font-size: clamp(1.125rem, 3vw, 1.5rem);
  color: #cbd5e1;
  margin-bottom: 2rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 4rem;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
    justify-content: center;
    gap: 1.5rem;
  }
}

.btn-hero {
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 2rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #0f172a;
  border: none;
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.4);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(245, 158, 11, 0.6);
}

.btn-secondary {
  background: transparent;
  color: #fbbf24;
  border: 2px solid #fbbf24;
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: #fbbf24;
  color: #0f172a;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(251, 191, 36, 0.4);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 24rem;
  margin: 0 auto 4rem;
}

.hero-stat {
  text-align: center;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.hero-stat:hover {
  transform: scale(1.1);
}

.hero-stat-number {
  font-size: 1.875rem;
  font-weight: 700;
  color: #fbbf24;
  margin-bottom: 0.25rem;
  animation: pulse 2s infinite;
}

.hero-stat-label {
  font-size: 0.875rem;
  color: #94a3b8;
  transition: color 0.3s ease;
}

.hero-stat:hover .hero-stat-label {
  color: #cbd5e1;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

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

.scroll-mouse {
  width: 1.5rem;
  height: 2.5rem;
  border: 2px solid rgba(251, 191, 36, 0.5);
  border-radius: 1rem;
  display: flex;
  justify-content: center;
  padding-top: 0.5rem;
}

.scroll-dot {
  width: 0.25rem;
  height: 0.75rem;
  background: #fbbf24;
  border-radius: 0.125rem;
  animation: pulse 2s infinite;
}

/* ===== FEATURES SECTION ===== */
.features-section {
  padding: 7rem 0;
  background: linear-gradient(135deg, #fffbeb, #ffffff);
}

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

.features-title {
  font-size: clamp(1.875rem, 5vw, 2.5rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}

.features-description {
  font-size: 1.125rem;
  color: #6b7280;
  max-width: 48rem;
  margin: 0 auto;
  line-height: 1.6;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.feature-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid #f3f4f6;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #fbbf24, #d97706);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, #fbbf24, #d97706);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

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

.feature-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: white;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.75rem;
}

.feature-description {
  color: #6b7280;
  line-height: 1.6;
}

.features-warning {
  text-align: center;
  background: #fef3c7;
  border: 1px solid #fbbf24;
  border-radius: 2rem;
  padding: 1rem 2rem;
  display: inline-block;
  margin: 0 auto;
  color: #92400e;
  font-weight: 500;
}

/* ===== PREMIUM PRODUCTS SECTION ===== */
.premium-products-section {
  position: relative;
  padding: 5rem 0;
  background: #0f172a;
  overflow: hidden;
}

.premium-background {
  position: absolute;
  inset: 0;
}

.premium-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0f172a, #1e293b, #0f172a);
}

.premium-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  animation: pulse 4s infinite;
}

.premium-glow-1 {
  top: 0;
  left: 25%;
  width: 24rem;
  height: 24rem;
  background: rgba(251, 191, 36, 0.05);
}

.premium-glow-2 {
  bottom: 0;
  right: 25%;
  width: 32rem;
  height: 32rem;
  background: rgba(59, 130, 246, 0.05);
  animation-delay: 2s;
}

.premium-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 10;
}

.premium-title {
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
  text-shadow: 0 0 20px rgba(251, 191, 36, 0.3);
}

.premium-description {
  font-size: 1.25rem;
  color: #94a3b8;
  max-width: 32rem;
  margin: 0 auto 2rem;
}

.premium-sale-banner {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #ef4444, #ec4899);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 2rem;
  font-weight: 600;
  animation: pulse 2s infinite;
}

.premium-sale-banner svg {
  width: 1rem;
  height: 1rem;
}

.premium-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 10;
}

.premium-product-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(71, 85, 105, 0.5);
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.5s ease;
  position: relative;
}

.premium-product-card:hover {
  transform: scale(1.05);
  border-color: rgba(251, 191, 36, 0.5);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.premium-product-image {
  position: relative;
  height: 18rem;
  overflow: hidden;
}

.premium-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.premium-product-card:hover .premium-product-image img {
  transform: scale(1.1);
}

.premium-product-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.9), transparent);
}

.premium-product-badges {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
}

.badge-sale {
  background: #ef4444;
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
}

.premium-product-details {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.premium-product-card:hover .premium-product-details {
  opacity: 1;
}

.premium-product-details-inner {
  text-align: center;
  padding: 1rem;
}

.premium-product-details h4 {
  color: white;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.premium-product-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.premium-product-features li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: #fbbf24;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.premium-product-features svg {
  width: 0.75rem;
  height: 0.75rem;
  fill: currentColor;
}

.premium-product-info {
  padding: 1.5rem;
}

.premium-product-title a {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.premium-product-title a:hover {
  color: #fbbf24;
}

.premium-product-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1rem 0;
  font-size: 0.875rem;
  color: #94a3b8;
}

.premium-product-rating,
.premium-product-students {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.premium-product-rating svg {
  width: 1rem;
  height: 1rem;
  color: #fbbf24;
  fill: currentColor;
}

.premium-product-students svg {
  width: 1rem;
  height: 1rem;
}

.premium-product-pricing {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.premium-product-price {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fbbf24;
}

.compare-price {
  color: #64748b;
  text-decoration: line-through;
  font-size: 0.875rem;
}

.btn-premium {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #0f172a;
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-premium:hover {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  transform: scale(1.05);
  box-shadow: 0 4px 20px rgba(251, 191, 36, 0.4);
}

.premium-view-all {
  text-align: center;
  position: relative;
  z-index: 10;
}

.btn-outline {
  background: transparent;
  color: #fbbf24;
  border: 2px solid #fbbf24;
  padding: 0.75rem 2rem;
  border-radius: 2rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: #fbbf24;
  color: #0f172a;
  transform: scale(1.05);
  box-shadow: 0 4px 20px rgba(251, 191, 36, 0.4);
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #fffbeb, #ffffff, #fffbeb);
}

.testimonials-header {
  text-align: center;
  margin-bottom: 4rem;
}

.testimonials-title {
  font-size: clamp(4rem, 5vw, 2.5rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}

.testimonials-description {
  font-size: 1.8rem;
  color: #6b7280;
  max-width: 82rem;
  margin: 0 auto;
  line-height: 1.6;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.testimonial-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid #f3f4f6;
  position: relative;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-quote-icon {
  position: absolute;
  top: -1rem;
  left: 2rem;
  width: 2rem;
  height: 2rem;
  background: linear-gradient(135deg, #fbbf24, #d97706);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-quote-icon svg {
  width: 1rem;
  height: 1rem;
  color: white;
}

.testimonial-rating {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
  margin-top: 0.5rem;
}

.testimonial-rating svg {
  width: 1rem;
  height: 1rem;
  color: #fbbf24;
  fill: currentColor;
}

.testimonial-content {
  font-style: italic;
  color: #374151;
  line-height: 1.5;
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.testimonial-divider {
  height: 1px;
  background: #f3f4f6;
  margin-bottom: 1rem;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.testimonial-author-name {
  font-weight: 700;
  color: #111827;
}

.testimonial-author-grade,
.testimonial-author-subject {
  font-size: 1.1rem;
  color: #6b7280;
}

.grade-badge {
  background: #d1fae5;
  color: #065f46;
  padding: 0.25rem 0.75rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.testimonials-cta {
  text-align: center;
}
.btn-testimonials {
  display: inline-block;
  background: linear-gradient(135deg, #f59e0b, #fbbf24, #f59e0b);
  background-size: 200% 200%;
  color: #0f172a;
  padding: 1rem 3rem;
  border-radius: 2rem;
  font-weight: 700;
  font-size: 1.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(251, 191, 36, 0.4);
  animation: gradientShift 3s ease-in-out infinite;
  margin-bottom: 1rem;
}

.btn-testimonials:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(251, 191, 36, 0.6);
}

.btn-testimonials-content {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-testimonials svg {
  width: 1.25rem;
  height: 1.25rem;
}
.testimonials-stat {
  background: #d1fae5;
  border: 1px solid #10b981;
  border-radius: 2rem;
  padding: 1rem 1.5rem;
  display: inline-block;
  margin-bottom: 2rem;
  color: #065f46;
  font-weight: 500;
}

/* ===== NEWSLETTER SECTION ===== */
.newsletter-section {
  position: relative;
  padding: 5rem 0;
  background: linear-gradient(135deg, #1f2937, #000000, #1f2937);
  overflow: hidden;
}

.newsletter-background {
  position: absolute;
  inset: 0;
}

.newsletter-image-overlay {
  position: absolute;
  inset: 0;
  background-image: url('https://images.pexels.com/photos/4041392/pexels-photo-4041392.jpeg');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
}

.newsletter-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.1), transparent, rgba(251, 191, 36, 0.1));
}

.newsletter-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 64rem;
  margin: 0 auto;
}

.newsletter-icon {
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}

.newsletter-icon svg {
  width: 2rem;
  height: 2rem;
  color: white;
}

.newsletter-title {
  font-size: clamp(2.6rem, 6vw, 3rem);
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.newsletter-title-highlight {
  background: linear-gradient(135deg, #fbbf24, #d97706);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.newsletter-description {
  font-size: clamp(1.5rem, 3vw, 1.25rem);
  color: #d1d5db;
  margin-bottom: 3rem;
  line-height: 1.6;
}

.newsletter-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.newsletter-benefit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 0.75rem;
  padding: 1rem;
  color: white;
  font-weight: 500;
}

.newsletter-benefit svg {
  width: 1.5rem;
  height: 1.5rem;
  color: #fbbf24;
}

.newsletter-form {
  max-width: 28rem;
  margin: 0 auto 2rem;
}

.newsletter-form-fields {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .newsletter-form-fields {
    flex-direction: row;
  }
}

.newsletter-input-wrapper {
  flex: 1;
}

.newsletter-input {
  width: 100%;
  padding: 1.4rem 0.2rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 2rem;
  color: white;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.newsletter-input::placeholder {
  color: #d1d5db;
}

.newsletter-input:focus {
  outline: none;
  border-color: #fbbf24;
  box-shadow: 0 0 0 2px rgba(251, 191, 36, 0.2);
}

.btn-newsletter {
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #000;
  border: none;
  border-radius: 2rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-newsletter:hover {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  transform: scale(1.05);
  box-shadow: 0 4px 20px rgba(251, 191, 36, 0.4);
}

.newsletter-success {
  background: #d1fae5;
  border: 1px solid #10b981;
  border-radius: 0.75rem;
  padding: 1rem;
  color: #065f46;
  font-weight: 500;
}

.newsletter-errors {
  background: #fee2e2;
  border: 1px solid #ef4444;
  border-radius: 0.75rem;
  padding: 1rem;
  color: #991b1b;
  margin-top: 1rem;
}

.newsletter-guarantees {
  margin-bottom: 4rem;
}

.newsletter-guarantee-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
  font-size: 1rem;
  color: #d1d5db;
}

.newsletter-social-proof {
  background: rgba(16, 185, 129, 0.2);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 2rem;
  padding: 0.5rem 1rem;
  display: inline-block;
  color: #10b981;
  font-weight: 500;
  font-size: 1rem;
}

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

.newsletter-universities-label {
  color: #9ca3af;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.newsletter-universities-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  color: #6b7280;
  font-weight: 500;
  opacity: 0.6;
}

/* ===== A*VAULT HEADER STYLES ===== */
.av-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #e5e7eb;
}

.av-header .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

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

.av-header .logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.av-header .logo-icon {
  width: 2rem;
  height: 2rem;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.av-header .logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
}

.av-header .nav-menu {
  display: none;
  align-items: center;
  gap: 2rem;
}

.av-header .nav-link {
  font-weight: 500;
  color: #374151;
  text-decoration: none;
  transition: color 0.3s ease;
}

.av-header .nav-link:hover,
.av-header .nav-link.active {
  color: #d97706;
}

.av-header .actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.av-header .action-btn {
  padding: 0.5rem;
  color: #374151;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s ease;
  position: relative;
}

.av-header .action-btn:hover {
  color: #d97706;
}

.av-header .cart-count {
  position: absolute;
  top: -0.25rem;
  right: -0.25rem;
  background: #eab308;
  color: white;
  font-size: 0.75rem;
  border-radius: 50%;
  width: 1.25rem;
  height: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.av-header .mobile-menu-btn {
  display: block;
}

@media (min-width: 768px) {
  .av-header .nav-menu {
    display: flex;
  }
  
  .av-header .mobile-menu-btn {
    display: none;
  }
  
  .av-header .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .av-header .container {
    padding: 0 2rem;
  }
}

/* ===== A*VAULT BLOG FAQ STYLES ===== */
.av-blog-faq {
  padding: 5rem 0;
  background: #f9fafb;
}

.av-blog-faq .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.av-blog-faq .section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.av-blog-faq .section-title {
  font-size: 3.2rem;
  font-weight: 750;
  color: #111827;
  margin-bottom: 1rem;
}

.av-blog-faq .section-subtitle {
  font-size: 1.5rem;
  color: #6b7280;
  max-width: 48rem;
  margin: 0 auto;
}

.av-blog-faq .content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.av-blog-faq .faq-section h3,
.av-blog-faq .blog-section h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
}

.av-blog-faq .section-icon {
  width: 2rem;
  height: 2rem;
  background: #eab308;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.75rem;
}

.av-blog-faq .faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.av-blog-faq .faq-item {
  background: white;
  border-radius: 0.75rem;
  border: 1px solid #e5e7eb;
  overflow: hidden;
}

.av-blog-faq .faq-question {
  width: 100%;
  padding: 1.5rem;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.av-blog-faq .faq-question:hover {
  background: #f9fafb;
}

.av-blog-faq .faq-question-text {
  font-weight: 501;
  font-size: 1.75rem;
  color: #111827;
  padding-right: 1rem;
}

.av-blog-faq .faq-icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.av-blog-faq .faq-answer {
  padding: 0 1.5rem 1.5rem;
  color: #6b7280;
  line-height: 1.6;
}

.av-blog-faq .faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: #eab308;
}

.av-blog-faq .blog-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.av-blog-faq .blog-item {
  background: white;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.av-blog-faq .blog-item:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.av-blog-faq .blog-content {
  display: flex;
}

.av-blog-faq .blog-image {
  width: 8rem;
  height: 6rem;
  flex-shrink: 0;
  overflow: hidden;
}

.av-blog-faq .blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.av-blog-faq .blog-item:hover .blog-image img {
  transform: scale(1.1);
}

.av-blog-faq .blog-text {
  padding: 1rem;
  flex: 1;
}

.av-blog-faq .blog-meta {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

.av-blog-faq .blog-category {
  padding: 0.25rem 0.5rem;
  background: #fef3c7;
  color: #92400e;
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 9999px;
}

.av-blog-faq .blog-reading-time {
  color: #6b7280;
  font-size: 0.75rem;
  margin-left: 0.5rem;
}

.av-blog-faq .blog-title {
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.av-blog-faq .blog-item:hover .blog-title {
  color: #d97706;
}

.av-blog-faq .blog-excerpt {
  color: #6b7280;
  font-size: 0.875rem;
}

.av-blog-faq .section-cta {
  margin-top: 2rem;
}

.av-blog-faq .cta-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  border: 2px solid #eab308;
  color: #d97706;
  font-weight: 500;
  border-radius: 9999px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.av-blog-faq .cta-btn:hover {
  background: #eab308;
  color: white;
}

.av-blog-faq .cta-icon {
  margin-left: 0.5rem;
  width: 1rem;
  height: 1rem;
}

@media (min-width: 768px) {
  .av-blog-faq .section-title {
    font-size: 2.25rem;
  }
  
  .av-blog-faq .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .av-blog-faq .content-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .av-blog-faq .container {
    padding: 0 2rem;
  }
}

/* ===== A*VAULT FOOTER STYLES ===== */
.av-footer {
  background: #0f172a;
  border-top: 1px solid #1e293b;
}

.av-footer .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 3rem 1rem;
}

.av-footer .footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.av-footer .footer-brand {
  margin-bottom: 2rem;
}

.av-footer .brand-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.av-footer .brand-icon {
  width: 2rem;
  height: 2rem;
  color: #eab308;
}

.av-footer .brand-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #eab308;
}

.av-footer .brand-description {
  color: #94a3b8;
  line-height: 1.6;
  width: 212px;
  margin-bottom: 3rem;
}

.av-footer .social-links {
  display: flex;
  gap: 2rem;
}

.av-footer .social-link {
  color: #94a3b8;
  transition: color 0.3s ease;
}

.av-footer .social-link:hover {
  color: #eab308;
}

.av-footer .social-icon {
  width: 2rem;
  height: 2rem;
}

.av-footer .footer-column h3 {
  color: white;
  font-weight: 600;
  margin-bottom: 1rem;
}

.av-footer .footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.av-footer .footer-link {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.av-footer .footer-link:hover {
  color: #eab308;
}

.av-footer .footer-bottom {
  border-top: 1px solid #1e293b;
  padding-top: 2rem;
}

.av-footer .footer-bottom-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.av-footer .copyright {
  color: #94a3b8;
  font-size: 1.2rem;
}

.av-footer .footer-features {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 1.2rem;
}

.av-footer .feature-item {
  color: #64748b;
}

@media (min-width: 768px) {
  .av-footer .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .av-footer .footer-bottom-content {
    flex-direction: row;
  }
  
  .av-footer .container {
    padding: 3rem 1.5rem;
  }
}

@media (min-width: 1024px) {
  .av-footer .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .av-footer .container {
    padding: 3rem 2rem;
  }
}

/* ===== A*VAULT ABOUT PAGE STYLES ===== */
.av-about-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.av-about-hero .hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #111827, #000000, #111827);
}

.av-about-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background-image: url('https://images.pexels.com/photos/4041392/pexels-photo-4041392.jpeg?auto=compress&cs=tinysrgb&w=1920&h=1080&fit=crop');
  background-size: cover;
  background-position: center;
  opacity: 0.2;
}

.av-about-hero .hero-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}

.av-about-hero .hero-content {
  position: relative;
  z-index: 10;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
}

.av-about-hero .hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.7rem 1rem;
  border-radius: 9999px;
  background: rgba(234, 179, 8, 0.2);
  border: 1px solid rgba(234, 179, 8, 0.3);
  color: #fbbf24;
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 2rem;
}

.av-about-hero .hero-title {
  font-size: 3rem;
  max-width: 40px;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.av-about-hero .hero-highlight {
  background: linear-gradient(to right, #fbbf24, #f59e0b);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.av-about-hero .hero-subtitle {
  font-size: 1.125rem;
  color: #d1d5db;
  margin-bottom: 3rem;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.av-about-hero .hero-cta {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2rem;
  background: linear-gradient(to right, #eab308, #f59e0b);
  color: black;
  font-weight: 700;
  border-radius: 9999px;
  text-decoration: none;
  transition: all 0.3s ease;
  transform: translateY(0);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.av-about-hero .hero-cta:hover {
  background: linear-gradient(to right, #fbbf24, #eab308);
  transform: translateY(-2px) scale(1.05);
}

@media (min-width: 640px) {
  .av-about-hero .hero-title {
    font-size: 7rem;
  }
  
  .av-about-hero .hero-subtitle {
    font-size: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .av-about-hero .hero-title {
    font-size: 3.75rem;
  }
  
  .av-about-hero .container {
    padding: 0 2rem;
  }
}

/* ===== UTILITY CLASSES ===== */
.page-width {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .page-width {
    padding: 0 2rem;
  }
}

/* ===== ANIMATIONS ===== */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

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

/* Add animation classes */
.animate-slide-up {
  animation: slideInUp 0.6s ease-out forwards;
}

.animate-fade-in {
  animation: fadeInUp 1s ease-out;
}

.animate-pulse-glow {
  animation: pulse 2s infinite;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .features-grid,
  .premium-products-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .newsletter-benefits {
    grid-template-columns: 1fr;
  }
  
  .newsletter-universities-list {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* HERO SECTION TEXT SIZE ADJUSTMENTS */

.hero-content {
  font-size: -3rem;
}
/* Adjust hero title size */
.hero-title {
  font-size: 7rem; /* Adjust as needed, e.g. 4rem for larger */
}

/* Adjust highlighted line size */
.hero-title-highlight {
  font-size: 5.5rem; /* Adjust as needed */
}

/* Adjust description paragraph size */
.hero-description {
  font-size: 1.8rem; /* Adjust as needed, e.g. 1rem for smaller */
  line-height: 1.5;
}

/* Adjust stats numbers size */
.hero-stat-number {
  font-size: 2rem; /* Adjust as needed */
  font-weight: bold;
}

/* Adjust stats labels size */
.hero-stat-label {
  font-size: 1rem; /* Adjust as needed */
}

/* Adjust Padding / Spacing */
.hero-title {
  margin-top: 0rem;
  margin-bottom: 1rem; /* Adjust as needed for spacing below the title */
}

.hero-title-highlight {
  margin-top: -10rem;
  margin-bottom: 1rem;
}
.hero-title {
  line-height: 1.1; /* default might be larger */
}


.hero-description {
  margin-top: 1.5rem; /* Adjust as needed for spacing above description */
  margin-bottom: 2.5rem; /* Adjust as needed for spacing below description */
}
.hero-buttons {
  display: flex;
  gap: 2rem; /* space between buttons */
  justify-content: center; /* center buttons horizontally */
  flex-wrap: nowrap; /* keep buttons on one line */
}


.btn,
.btn-primary,
.btn-hero {
  text-decoration: none;
}
.btn-hero {
  font-size: 1.45rem;
  font-weight: 700;
  /* You can add padding adjustments if needed */
  padding: 1.1rem 2.5rem;
}
/* FEATURES SECTION */
.features-title {
  font-size: 3.5rem; /* increase the main section title */
  font-weight: 700;
}

.features-description {
  max-width: 650px;
  font-size: 1.6rem; /* increase the section description */
  line-height: 1.4;
}

.feature-title {
  font-size: 1.9rem; /* increase individual feature titles */
  font-weight: 600;
}

.feature-description {
  font-size: 1.4rem; /* increase individual feature descriptions */
  line-height: 1.4;
}

.features-section .page-width {
  margin-top: -30px; /* Adjust this value to move everything up */
}


/* ===============================================
   FOMO Urgency Section Styling
   Add this to your custom-sections.css file
   =============================================== */

/* ===== FOMO URGENCY SECTION ===== */
.fomo-urgency-section {
  position: relative;
  padding: 5rem 0;
  background: linear-gradient(135deg, rgba(127, 29, 29, 0.9), #0f172a, rgba(161, 98, 7, 0.9));
  overflow: hidden;
}

.fomo-background {
  position: absolute;
  inset: 0;
}

.fomo-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(127, 29, 29, 0.5), transparent, rgba(161, 98, 7, 0.5));
}

.fomo-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  animation: pulse 4s infinite;
}

.fomo-glow-1 {
  top: 2.5rem;
  left: 2.5rem;
  width: 8rem;
  height: 8rem;
  background: rgba(239, 68, 68, 0.1);
}

.fomo-glow-2 {
  bottom: 2.5rem;
  right: 2.5rem;
  width: 10rem;
  height: 10rem;
  background: rgba(251, 191, 36, 0.1);
  animation-delay: 1s;
}

.fomo-glow-3 {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 15rem;
  height: 15rem;
  background: rgba(249, 115, 22, 0.05);
  animation-delay: 2s;
}

.fomo-floating-icons {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.fomo-float-icon {
  position: absolute;
  animation: float 6s ease-in-out infinite;
}

.fomo-float-1 {
  top: 5rem;
  left: 25%;
  color: rgba(248, 113, 113, 0.5);
}

.fomo-float-1 svg {
  width: 1.5rem;
  height: 1.5rem;
}

.fomo-float-2 {
  bottom: 5rem;
  right: 25%;
  color: rgba(251, 191, 36, 0.5);
  animation-delay: 2s;
}

.fomo-float-2 svg {
  width: 2rem;
  height: 2rem;
}

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

.fomo-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 64rem;
  margin: 0 auto;
}

.fomo-alert-icon {
  width: 5rem;
  height: 5rem;
  background: rgba(239, 68, 68, 0.2);
  border: 2px solid rgba(239, 68, 68, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  animation: pulse 2s infinite;
}

.fomo-alert-icon svg {
  width: 2.5rem;
  height: 2.5rem;
  color: #f87171;
}

.fomo-title {
  font-size: clamp(4rem, 6vw, 3rem);
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
  text-shadow: 0 0 20px rgba(251, 191, 36, 0.3);
}

.fomo-description {
  font-size: clamp(2rem, 3vw, 1.25rem);
  color: #cbd5e1;
  margin-bottom: 2rem;
  max-width: 60rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

.fomo-countdown-container {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(251, 191, 36, 0.3);
  border-radius: 1.5rem;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 0 30px rgba(251, 191, 36, 0.2);
}

.fomo-countdown-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  color: #fbbf24;
  font-weight: 600;
}

.fomo-countdown-header svg {
  width: 1.5rem;
  height: 1.5rem;
  animation: pulse 2s infinite;
}

.fomo-countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .fomo-countdown {
    gap: 2rem;
  }
}

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

.countdown-number {
  position: relative;
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 700;
  color: white;
  background: linear-gradient(135deg, #1e293b, #0f172a);
  border: 1px solid rgba(251, 191, 36, 0.2);
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  min-width: 5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.countdown-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.1), transparent);
  border-radius: 0.75rem;
  animation: pulse 2s infinite;
}

.countdown-label {
  color: #94a3b8;
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: 0.5rem;
}

.countdown-separator {
  color: #fbbf24;
  font-size: 1.875rem;
  font-weight: 700;
  animation: pulse 1s infinite;
}

.fomo-stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .fomo-stats-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.fomo-stat-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 0.75rem;
  padding: 1.5rem;
  border: 1px solid rgba(71, 85, 105, 0.5);
  transition: all 0.3s ease;
  cursor: pointer;
}

.fomo-stat-card:hover {
  transform: scale(1.02);
}

.fomo-stat-danger {
  border-color: rgba(239, 68, 68, 0.5);
}

.fomo-stat-danger:hover {
  border-color: rgba(239, 68, 68, 0.7);
}

.fomo-stat-warning {
  border-color: rgba(251, 191, 36, 0.5);
}

.fomo-stat-warning:hover {
  border-color: rgba(251, 191, 36, 0.7);
}

.fomo-stat-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.fomo-stat-danger .fomo-stat-header {
  color: #f87171;
}

.fomo-stat-warning .fomo-stat-header {
  color: #fbbf24;
}

.fomo-stat-header svg {
  width: 1.25rem;
  height: 1.25rem;
  transition: transform 0.3s ease;
}

.fomo-stat-card:hover .fomo-stat-header svg {
  transform: scale(1.1);
}

.fomo-stat-label {
  color: #94a3b8;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
  text-align: center;
}

.fomo-progress-bar {
  width: 100%;
  height: 0.5rem;
  background: rgba(71, 85, 105, 0.3);
  border-radius: 0.25rem;
  overflow: visible;
  position: relative;
}

.fomo-progress-fill {
  height: 100%;
  border-radius: 0.25rem;
  transition: width 0.5s ease;
  position: relative;
  overflow: hidden;
}

.fomo-progress-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.fomo-progress-danger {
  background: linear-gradient(90deg, #dc2626, #ef4444);
}

.fomo-progress-warning {
  background: linear-gradient(90deg, #d97706, #fbbf24);
}

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

.btn-fomo {
  display: inline-block;
  background: linear-gradient(135deg, #f59e0b, #fbbf24, #f59e0b);
  background-size: 200% 200%;
  color: #0f172a;
  padding: 1rem 3rem;
  border-radius: 2rem;
  font-weight: 700;
  font-size: 1.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(251, 191, 36, 0.4);
  animation: gradientShift 3s ease-in-out infinite;
  margin-bottom: 1rem;
}

.btn-fomo:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(251, 191, 36, 0.6);
}

.btn-fomo-content {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-fomo svg {
  width: 1.25rem;
  height: 1.25rem;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.fomo-guarantees {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  color: #94a3b8;
  font-size: 1rem;
}

@media (min-width: 640px) {
  .fomo-guarantees {
    flex-direction: row;
    justify-content: center;
    gap: 2rem;
  }
}

.fomo-guarantee {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.fomo-guarantee svg {
  width: 1rem;
  height: 1rem;
  color: #fbbf24;
}
.fomo-progress-bar {
  width: 100%;
  height: 0.5rem;
  background: rgba(71, 85, 105, 0.3);
  border-radius: 0.25rem;
  overflow: hidden;
  position: relative;
  margin-top: 0.5rem;
}

.fomo-progress-fill {
  height: 100%;
  border-radius: 0.25rem;
  transition: width 0.5s ease;
  position: relative;
  overflow: hidden;
}

.fomo-progress-danger {
  background: linear-gradient(90deg, #dc2626, #ef4444);
}

.fomo-progress-warning {
  background: linear-gradient(90deg, #d97706, #fbbf24);
}

/* ===== ANIMATIONS ===== */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  .fomo-countdown {
    gap: 0.5rem;
  }
  
  .countdown-number {
    min-width: 4rem;
    padding: 0.5rem 0.75rem;
  }
  
  .fomo-stats-grid {
    grid-template-columns: 1fr;
  }
}


/* ===============================================
   Custom Sections Styling for A*Vault Theme
   Place this file in: assets/custom-sections.css
   =============================================== */

/* ===== HERO MATRIX SECTION ===== */
.hero-matrix-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 4rem;
  overflow: hidden;
}

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

.hero-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background-image: url('https://images.pexels.com/photos/159844/matrix-communication-software-pc-159844.jpeg');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
}

.particles-container {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: #fbbf24;
  border-radius: 50%;
  animation: float 20s infinite linear;
}

@keyframes float {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100vh) rotate(360deg); opacity: 0; }
}

.hero-radial-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(600px at 70% 20%, rgba(234, 179, 8, 0.1), transparent 40%);
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
}

.hero-content-inner {
  animation: fadeInUp 1s ease-out;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 2rem;
  padding: 0.75rem 1.5rem;
  margin-bottom: 2rem;
  color: #fbbf24;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
}

.hero-badge:hover {
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 20px rgba(251, 191, 36, 0.3);
}

.hero-badge svg {
  width: 1.25rem;
  height: 1.25rem;
  animation: pulse 2s infinite;
}

.hero-title {
  font-size: clamp(5rem, 8vw, 4.5rem);
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-title-highlight {
  background: linear-gradient(135deg, #fbbf24, #f59e0b, #d97706);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  background-size: 200% 200%;
  animation: gradientShift 3s ease-in-out infinite;
  text-shadow: 0 0 30px rgba(251, 191, 36, 0.5);
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-description {
  font-size: clamp(1.125rem, 3vw, 1.5rem);
  color: #cbd5e1;
  margin-bottom: 2rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 4rem;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
    justify-content: center;
    gap: 1.5rem;
  }
}

.btn-hero {
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 2rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #0f172a;
  border: none;
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.4);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(245, 158, 11, 0.6);
}

.btn-secondary {
  background: transparent;
  color: #fbbf24;
  border: 2px solid #fbbf24;
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: #fbbf24;
  color: #0f172a;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(251, 191, 36, 0.4);
}

/* ===== STATS SECTION ===== */
.stats-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #fffbeb, #ffffff);
  position: relative;
  z-index: 1;
}

.stats-header {
  text-align: center;
  margin-bottom: 4rem;
}

.stats-title {
  font-size: clamp(1.875rem, 5vw, 2.5rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}

.stats-description {
  font-size: 1.125rem;
  color: #6b7280;
  max-width: 48rem;
  margin: 0 auto;
  line-height: 1.6;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.stat-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid #f3f4f6;
  transition: all 0.3s ease;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  animation: slideInUp 0.6s ease-out forwards;
}

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

.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.stat-icon {
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, #fbbf24, #d97706);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.stat-icon svg {
  width: 2rem;
  height: 2rem;
  color: white;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: #6b7280;
  line-height: 1.6;
}

/* ===== TIMELINE SECTION ===== */
.timeline-section {
  padding: 5rem 0;
  background: white;
  position: relative;
  z-index: 1;
}

.timeline-header {
  text-align: center;
  margin-bottom: 4rem;
}

.timeline-title {
  font-size: clamp(1.875rem, 5vw, 2.5rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}

.timeline-description {
  font-size: 1.125rem;
  color: #6b7280;
  line-height: 1.6;
}

.timeline-container {
  position: relative;
  max-width: 4xl;
  margin: 0 auto;
  max-width: 1000px;
}

.timeline-line {
  position: absolute;
  overflow: visible;
  left: 2rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, #fbbf24, #d97706);
}

.timeline-item {
  position: relative;
  display: flex;
  align-items: start;
  margin-bottom: 3rem;
  opacity: 0;
  transform: translateY(30px);
  animation: slideInUp 0.6s ease-out forwards;
}

.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.2s; }
.timeline-item:nth-child(3) { animation-delay: 0.3s; }
.timeline-item:nth-child(4) { animation-delay: 0.4s; }
.timeline-item:nth-child(5) { animation-delay: 0.5s; }

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: 1.5rem;
  width: 1rem;
  height: 1rem;
  background: linear-gradient(135deg, #fbbf24, #d97706);
  border-radius: 50%;
  border: 4px solid white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.timeline-content {
  margin-left: 5rem;
  background: #f9fafb;
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.3s ease;
  width: 100%;
}

.timeline-content:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.timeline-year {
  display: inline-flex;
  align-items: center;
  background: #fbbf24;
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.timeline-content-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.75rem;
}

.timeline-content-text {
  color: #6b7280;
  line-height: 1.6;
}
/* ===== TIMELINE SECTION ===== */
.timeline-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8fafc, #ffffff);
}

.timeline-header {
  text-align: center;
  margin-bottom: 4rem;
}

.timeline-title {
  font-size: clamp(1.875rem, 5vw, 2.5rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}

.timeline-description {
  font-size: 1.125rem;
  color: #6b7280;
  max-width: 48rem;
  margin: 0 auto;
  line-height: 1.6;
}

.timeline-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding-left: 3rem;
  overflow: visible;
}
.timeline-line {
  position: absolute;
  overflow: visible;
  left: 1.5rem;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #fbbf24, #f59e0b, #d97706);
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(251, 191, 36, 0.3);
}


.timeline-item {
  position: relative;
  margin-bottom: 3rem;
  padding-left: 2rem;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: 0.95rem;
  top: 0.5rem;
  width: 1.5rem;
  height: 1.5rem;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  border: 4px solid white;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(251, 191, 36, 0.2), 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 10;
}

.timeline-content {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid #f3f4f6;
  position: relative;
  max-width: 500px;
  transition: all 0.3s ease;
}

.timeline-content:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.timeline-content::before {
  content: '';
  position: absolute;
  left: -12px;
  top: 1.5rem;
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-right: 12px solid white;
  filter: drop-shadow(-2px 0 4px rgba(0, 0, 0, 0.1));
}

.timeline-year {
  display: inline-block;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #0f172a;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(251, 191, 36, 0.3);
}

.timeline-content-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.timeline-content-text {
  color: #6b7280;
  line-height: 1.6;
  font-size: 1rem;
}
/* ===== TIMELINE SECTION ===== */
.timeline-section {
  padding: 5rem 0;
  background: white;
}

.timeline-header {
  text-align: center;
  margin-bottom: 4rem;
}

.timeline-title {
  font-size: clamp(1.875rem, 5vw, 2.5rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}

.timeline-description {
  font-size: 1.125rem;
  color: #6b7280;
  line-height: 1.6;
}

.timeline-container {
  position: relative;
  max-width: 64rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.timeline-line {
  position: absolute;
  left: 2rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, #fbbf24, #f59e0b);
}

.timeline-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  margin-bottom: 3rem;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.timeline-item:nth-child(1) { transition-delay: 0.1s; }
.timeline-item:nth-child(2) { transition-delay: 0.2s; }
.timeline-item:nth-child(3) { transition-delay: 0.3s; }
.timeline-item:nth-child(4) { transition-delay: 0.4s; }
.timeline-item:nth-child(5) { transition-delay: 0.5s; }
.timeline-item:nth-child(6) { transition-delay: 0.6s; }

.timeline-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: 1.5rem;
  top: 0.5rem;
  width: 1rem;
  height: 1rem;
  background: linear-gradient(to bottom right, #fbbf24, #f59e0b);
  border-radius: 50%;
  border: 4px solid white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  z-index: 10;
}

.timeline-content {
  margin-left: 5rem;
  background: #f9fafb;
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  width: 100%;
}

.timeline-content:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.timeline-year {
  display: inline-flex;
  align-items: center;
  background: #eab308;
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.timeline-content-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.75rem;
}

.timeline-content-text {
  color: #6b7280;
  line-height: 1.6;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  .timeline-container {
    padding: 0 1rem;
  }
  
  .timeline-line {
    left: 1rem;
  }
  
  .timeline-dot {
    left: 0.5rem;
    width: 0.75rem;
    height: 0.75rem;
  }
  
  .timeline-content {
    margin-left: 3rem;
    padding: 1.5rem;
  }
  
  .timeline-content-title {
    font-size: 1.125rem;
  }
}
/* ===== MINDSET SECTION ===== */
.mindset-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f9fafb, #ffffff);
  position: relative;
  z-index: 1;
}

.mindset-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .mindset-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.mindset-content h2 {
  font-size: clamp(1.875rem, 5vw, 2.5rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.5rem;
}

.mindset-points {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mindset-point {
  display: flex;
  align-items: start;
  gap: 1rem;
  opacity: 0;
  transform: translateY(30px);
  animation: slideInUp 0.6s ease-out forwards;
}

.mindset-point:nth-child(1) { animation-delay: 0.1s; }
.mindset-point:nth-child(2) { animation-delay: 0.2s; }
.mindset-point:nth-child(3) { animation-delay: 0.3s; }

.mindset-point-icon {
  width: 2rem;
  height: 2rem;
  background: #fbbf24;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.mindset-point-icon svg {
  width: 1rem;
  height: 1rem;
  color: white;
}

.mindset-point-content h3 {
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.5rem;
}

.mindset-point-content p {
  color: #6b7280;
  line-height: 1.6;
}

.mindset-quote {
  position: relative;
  background: linear-gradient(135deg, #fbbf24, #d97706);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  animation: slideInUp 0.6s ease-out forwards;
  animation-delay: 0.4s;
}

.mindset-quote-inner {
  background: white;
  border-radius: 0.75rem;
  padding: 2rem;
}

.mindset-quote blockquote {
  font-size: 1.25rem;
  font-weight: 500;
  color: #111827;
  margin-bottom: 1rem;
  font-style: italic;
}

.mindset-quote-author {
  color: #d97706;
  font-weight: 700;
}

/* ===== MISSION SECTION ===== */
.mission-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #1f2937, #000000, #1f2937);
  color: white;
  text-align: center;
  position: relative;
  z-index: 1;
}

.mission-content {
  max-width: 4xl;
  margin: 0 auto;
  max-width: 1000px;
}

.mission-title {
  font-size: clamp(1.875rem, 6vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.mission-description {
  font-size: clamp(1rem, 3vw, 1.25rem);
  color: #d1d5db;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.mission-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #000;
  border: none;
  padding: 1rem 2rem;
  border-radius: 2rem;
  font-weight: 700;
  transition: all 0.3s ease;
  text-decoration: none;
  margin-bottom: 1rem;
}

.mission-button:hover {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  transform: scale(1.05);
  box-shadow: 0 4px 20px rgba(251, 191, 36, 0.4);
}

.mission-guarantees {
  font-size: 0.875rem;
  color: #9ca3af;
}

/* ===== UTILITY CLASSES ===== */
.page-width {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .page-width {
    padding: 0 2rem;
  }
}

/* ===== ANIMATIONS ===== */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

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

/* Add animation classes */
.animate-slide-up {
  animation: slideInUp 0.6s ease-out forwards;
}

.animate-fade-in {
  animation: fadeInUp 1s ease-out;
}

.animate-pulse-glow {
  animation: pulse 2s infinite;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
 
  
  .timeline-content {
    margin-left: 3rem;
  }
  
  .mindset-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== SECTION SPACING ===== */
.shopify-section {
  position: relative;
  z-index: 1;
}

/* Ensure sections don't overlap */
.about-page .shopify-section {
  clear: both;
  display: block;
}

  .timeline-content {
    max-width: 100%;
  }
  
  .timeline-content::before {
    left: -8px;
    border-right-width: 8px;
    border-top-width: 8px;
    border-bottom-width: 8px;
  }
}
/* MOBILE */
/* ===============================================
   Mobile/Desktop Element Visibility Control
   Add this to your existing custom-sections.css file
   =============================================== */

/* ===== FEATURES GRID MOBILE CONTROL ===== */
.features-grid .feature-card:nth-child(n+4) {
  display: none;
}

@media (min-width: 768px) {
  .features-grid .feature-card:nth-child(n+4) {
    display: block;
  }
}

/* Show only first 3 on mobile, all on desktop */
@media (max-width: 767px) {
  .features-grid .feature-card:nth-child(n+3) {
    display: none;
  }
}

/* ===== PREMIUM PRODUCTS MOBILE CONTROL ===== */
.premium-products-grid .premium-product-card:nth-child(n+3) {
  display: none;
}

@media (min-width: 768px) {
  .premium-products-grid .premium-product-card:nth-child(n+3) {
    display: block;
  }
}

/* Show only first 2 on mobile, all on desktop */
@media (max-width: 767px) {
  .premium-products-grid .premium-product-card:nth-child(n+2) {
    display: none;
  }
}

/* ===== TESTIMONIALS MOBILE CONTROL ===== */
.testimonials-grid .testimonial-card:nth-child(n+3) {
  display: none;
}

@media (min-width: 768px) {
  .testimonials-grid .testimonial-card:nth-child(n+3) {
    display: block;
  }
}

/* Show only first 2 on mobile, all on desktop */
@media (max-width: 767px) {
  .testimonials-grid .testimonial-card:nth-child(n+2) {
    display: none;
  }
}

/* ===== ALTERNATIVE: CONFIGURABLE APPROACH ===== */
/* Add these classes to your sections for more control */

/* Features: Show 2 on mobile, 6 on desktop */
.features-mobile-limit-2 .feature-card:nth-child(n+3) {
  display: none;
}

@media (min-width: 768px) {
  .features-mobile-limit-2 .feature-card:nth-child(n+3) {
    display: block;
  }
}

/* Features: Show 3 on mobile, all on desktop */
.features-mobile-limit-3 .feature-card:nth-child(n+4) {
  display: none;
}

@media (min-width: 768px) {
  .features-mobile-limit-3 .feature-card:nth-child(n+4) {
    display: block;
  }
}

/* Products: Show 1 on mobile, all on desktop */
.products-mobile-limit-1 .premium-product-card:nth-child(n+2) {
  display: none;
}

@media (min-width: 768px) {
  .products-mobile-limit-1 .premium-product-card:nth-child(n+2) {
    display: block;
  }
}

/* Products: Show 2 on mobile, all on desktop */
.products-mobile-limit-2 .premium-product-card:nth-child(n+3) {
  display: none;
}

@media (min-width: 768px) {
  .products-mobile-limit-2 .premium-product-card:nth-child(n+3) {
    display: block;
  }
}

/* Testimonials: Show 1 on mobile, all on desktop */
.testimonials-mobile-limit-1 .testimonial-card:nth-child(n+2) {
  display: none;
}

@media (min-width: 768px) {
  .testimonials-mobile-limit-1 .testimonial-card:nth-child(n+2) {
    display: block;
  }
}

/* ===== SHOW MORE BUTTON (OPTIONAL) ===== */
.show-more-btn {
  display: block;
  margin: 2rem auto 0;
  padding: 0.75rem 2rem;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #0f172a;
  border: none;
  border-radius: 2rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.show-more-btn:hover {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  transform: scale(1.05);
}

@media (min-width: 768px) {
  .show-more-btn {
    display: none;
  }
}

/* Hidden elements that show when "Show More" is clicked */
.show-more-hidden {
  display: none;
}

.show-more-active .show-more-hidden {
  display: block;
}