/* ================================================
   Stock Academy - Landing Page Styles
   Orange & White Modern Theme
   ================================================ */

.landing-page {
  overflow-x: hidden;
}

/* Hero Animated Text */
.hero-animate {
  display: inline-block;
  background: linear-gradient(135deg, #FF6B00 0%, #E65100 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 8s ease infinite;
  font-weight: 800;
}

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

.hero-cursor {
  display: inline-block;
  animation: blink 1s step-end infinite;
  color: #FF6B00;
  font-weight: 300;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.hero-static {
  color: var(--text);
  font-weight: 600;
}

/* 3D Hero Section */
.hero {
  perspective: 1000px;
}

.hero .blob {
  filter: blur(60px);
  opacity: 0.6;
  animation: blobFloat 8s ease-in-out infinite;
}

.blob-1 {
  background: radial-gradient(circle, rgba(255, 107, 0, 0.4) 0%, transparent 70%);
  width: 500px;
  height: 500px;
}

.blob-2 {
  background: radial-gradient(circle, rgba(0, 212, 170, 0.3) 0%, transparent 70%);
  width: 400px;
  height: 400px;
}

.blob-3 {
  background: radial-gradient(circle, rgba(247, 147, 26, 0.3) 0%, transparent 70%);
  width: 350px;
  height: 350px;
}

@keyframes blobFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-20px) rotate(5deg); }
  66% { transform: translateY(10px) rotate(-5deg); }
}

/* Offer Grid Styles */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.offer-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  transition: var(--transition);
}

.offer-card:hover {
  border-color: var(--primary);
  box-shadow: 0 10px 40px rgba(255, 107, 0, 0.1);
}

.offer-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-btn);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

.offer-icon i {
  font-size: 22px;
  color: white;
}

.offer-info h3 {
  font-size: 18px;
  margin-bottom: 4px;
}

.offer-info p {
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 16px;
}

.offer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.offer-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.offer-list li:last-child {
  border-bottom: none;
}

.offer-list li i {
  color: var(--success);
}

/* Stat Grid Styles */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  transition: var(--transition);
}

.stat-card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
}

.stat-value {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.stat-label {
  color: var(--text-secondary);
  font-size: 14px;
}

/* 3D Card Hover Effects */
.feature-card,
.benefit-item,
.testimonial-card {
  transform-style: preserve-3d;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.feature-card:hover,
.benefit-item:hover,
.testimonial-card:hover {
  transform: translateY(-10px) rotateX(5deg);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.image-card {
  overflow: hidden;
}

.image-card img {
  transition: transform 0.5s ease;
}

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

/* Animated Gradient Background */
.gradient-border {
  position: relative;
}

.gradient-border::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, #FF6B00, #E65100, #CC5500, #FF8533);
  background-size: 300% 300%;
  border-radius: inherit;
  z-index: -1;
  animation: gradientBorder 4s ease infinite;
}

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

/* Floating Animation */
.floating {
  animation: floating 3s ease-in-out infinite;
}

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

/* Glow Effects */
.glow {
  animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
  from { box-shadow: 0 0 20px rgba(255, 107, 0, 0.3); }
  to { box-shadow: 0 0 40px rgba(255, 107, 0, 0.6); }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
  .hero-animate {
    display: block;
    margin-top: 0.5rem;
  }
}

/* Benefits Section */
.benefits-section {
  padding: 80px 0;
  background: #0a0a0a;
  position: relative;
  overflow: hidden;
}

.benefits-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse at 20% 20%, rgba(255, 107, 0, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(230, 81, 0, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(255, 138, 51, 0.08) 0%, transparent 60%);
  z-index: 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
  z-index: 1;
}

.benefit-item {
  text-align: center;
  padding: 40px 30px;
  background: #ffffff;
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 2px solid transparent;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.benefit-item::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 22px;
  background: linear-gradient(135deg, #FF6B00, #E65100, #FF8533, #FF6B00);
  background-size: 300% 300%;
  animation: cardGradientMove 3s ease infinite;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.benefit-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  transform: skewX(-25deg);
  transition: left 0.6s ease;
  z-index: 1;
}

.benefit-item:hover::before {
  opacity: 1;
}

.benefit-item:hover::after {
  left: 150%;
}

.benefit-item:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 60px rgba(255, 107, 0, 0.25);
}

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

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

.benefit-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: relative;
  background: linear-gradient(135deg, #FF6B00, #E65100);
  box-shadow: 0 10px 30px rgba(255, 107, 0, 0.4);
  animation: iconPulse 2s ease-in-out infinite;
}

.benefit-icon::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.3), rgba(255, 107, 0, 0.1));
  animation: iconRingPulse 2s ease-in-out infinite;
  z-index: -1;
}

.benefit-icon::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #FF6B00, #E65100);
}

.benefit-icon i {
  position: relative;
  z-index: 2;
  color: #ffffff;
  font-size: 36px;
}

@keyframes iconPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes iconRingPulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.2); opacity: 0.3; }
}

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

/* CSS-Only Icons */
.css-icon {
  display: inline-block;
  position: relative;
  width: 36px;
  height: 36px;
}

/* Chart Icon - Pure CSS */
.css-icon-chart {
  background: linear-gradient(180deg, var(--accent) 0%, var(--primary) 100%);
  clip-path: polygon(0% 100%, 20% 60%, 40% 80%, 60% 40%, 80% 55%, 100% 20%, 100% 100%);
}

/* Bitcoin Icon - Pure CSS */
.css-icon-bitcoin {
  width: 36px;
  height: 36px;
  background: transparent;
  border: 3px solid var(--primary);
  border-radius: 50%;
  position: relative;
}

.css-icon-bitcoin::before {
  content: 'B';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: Georgia, serif;
  font-size: 20px;
  font-weight: bold;
  color: var(--primary);
}

.css-icon-bitcoin::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: -10px -6px 0 -2px var(--primary), 10px 6px 0 -2px var(--primary);
}

/* Cube/Web3 Icon - Pure CSS */
.css-icon-cube {
  width: 32px;
  height: 32px;
  position: relative;
  transform: rotate(45deg);
  background: linear-gradient(135deg, #E65100, #FF8533);
}

.css-icon-cube::before {
  content: '';
  position: absolute;
  inset: 4px;
  background: #0a0a0a;
}

.css-icon-cube::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background: #A78BFA;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

/* Alternative CSS Icons using pseudo-elements */
.benefit-icon.chart-icon {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
}

.benefit-icon.chart-icon::after {
  content: '';
  position: absolute;
  bottom: 15px;
  left: 15px;
  width: 8px;
  height: 25px;
  background: white;
  border-radius: 2px;
  box-shadow: 
    12px 10px 0 white,
    24px 5px 0 white;
}

.benefit-icon.crypto-icon {
  background: linear-gradient(135deg, #F7931A 0%, #E38210 100%);
}

.benefit-icon.crypto-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  border: 3px solid white;
  border-radius: 50%;
}

.benefit-icon.crypto-icon::before {
  content: 'B';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: Georgia, serif;
  font-size: 18px;
  font-weight: bold;
  color: white;
  z-index: 1;
}

.benefit-icon.web3-icon {
  background: linear-gradient(135deg, var(--accent) 0%, #8B5CF6 100%);
}

.benefit-icon.web3-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 28px;
  height: 28px;
  border: 3px solid white;
}

.benefit-icon.web3-icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  background: white;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.benefit-item:nth-child(2) .benefit-icon {
  background: linear-gradient(135deg, #F7931A 0%, #FFB84D 100%);
}

.benefit-item:nth-child(3) .benefit-icon {
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
}

.benefit-item:nth-child(4) .benefit-icon {
  background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
}

.benefit-item h3 {
  margin-bottom: 12px;
  font-size: 1.3rem;
  font-weight: 700;
  color: #1a1a1a;
}

.benefit-item p {
  color: #555555;
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
}

/* Animated Background Orb */
.benefit-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.4;
  animation: orbFloat 8s ease-in-out infinite;
  pointer-events: none;
}

.benefit-orb-1 {
  width: 300px;
  height: 300px;
  background: var(--primary);
  top: -150px;
  left: 10%;
}

.benefit-orb-2 {
  width: 250px;
  height: 250px;
  background: #8B5CF6;
  bottom: -100px;
  right: 15%;
  animation-delay: -4s;
}

.benefit-orb-3 {
  width: 200px;
  height: 200px;
  background: var(--accent);
  top: 50%;
  right: 30%;
  animation-delay: -2s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -30px) scale(1.1); }
  66% { transform: translate(-10px, 20px) scale(0.9); }
}

@media (max-width: 1024px) and (min-width: 769px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero {
    min-height: auto;
    padding: 120px 0 60px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero p {
    font-size: 17px;
  }

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

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

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

  .benefits-section {
    padding: 60px 0;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .benefit-item {
    padding: 30px 24px;
  }

  .feature-card,
  .testimonial-card {
    padding: 24px;
  }
}

@media (max-width: 834px) and (orientation: portrait) {
  .container {
    padding: 0 16px;
  }

  .hero {
    padding: 100px 0 50px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .features-grid,
  .testimonials-grid,
  .blog-grid,
  .features-grid-four {
    grid-template-columns: 1fr;
  }

  .btn {
    padding: 12px 24px;
    font-size: 14px;
  }

  .btn-lg {
    padding: 14px 28px;
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .benefit-item {
    padding: 30px 20px;
  }
  .benefit-orb {
    display: none;
  }
  .benefit-item h3 {
    font-size: 1.15rem;
  }
  .benefit-item p {
    font-size: 14px;
  }
}

/* Testimonials Slider */
.testimonials-slider {
  position: relative;
  overflow: hidden;
  padding: 0 50px;
}

.testimonial-slide {
  display: none;
  animation: fadeIn 0.5s ease;
}

.testimonial-slide.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Modern Entrance Animations */
@keyframes slideUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes rotateIn {
  from { opacity: 0; transform: rotateY(90deg); }
  to { opacity: 1; transform: rotateY(0); }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* 3D Card Effect */
.card-3d {
  transform-style: preserve-3d;
  transition: all 0.4s ease;
}

.card-3d:hover {
  transform: translateY(-10px) rotateX(5deg) rotateY(-5deg);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

/* Glassmorphism */
.glass {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

[data-theme="dark"] .glass {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Gradient Text */
.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Gradient Border Animation */
.gradient-border-animated {
  position: relative;
}

.gradient-border-animated::after {
  content: '';
  position: absolute;
  inset: -2px;
  background: var(--gradient-primary);
  border-radius: inherit;
  z-index: -1;
  background-size: 300% 300%;
  animation: shimmer 3s linear infinite;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: none;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: var(--transition);
  z-index: 10;
}

.slider-arrow:hover {
  background: var(--primary-dark);
  transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev {
  left: 0;
}

.slider-arrow.next {
  right: 0;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: var(--transition);
}

.slider-dot.active {
  background: var(--primary);
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .testimonials-slider {
    padding: 0 45px;
  }
  .slider-arrow {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }
}

/* Telegram Join Section */
.telegram-join {
  padding: 80px 0;
  background: linear-gradient(135deg, #229ED9 0%, #1A87B5 100%);
  position: relative;
  overflow: hidden;
}

.telegram-join::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: pulseTelegram 4s ease-in-out infinite;
}

.telegram-join::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  animation: pulseTelegram 5s ease-in-out infinite 1s;
}

@keyframes pulseTelegram {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 0.8; }
}

.telegram-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.telegram-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 24px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: white;
  animation: bounce 2s ease-in-out infinite;
}

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

/* Waitlist Section */
.waitlist {
  padding: 80px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.waitlist::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: waitlistPulse 6s ease-in-out infinite;
}

.waitlist::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: waitlistPulse 8s ease-in-out infinite 2s;
}

@keyframes waitlistPulse {
  0%, 100% { transform: scale(1) translateY(0); }
  50% { transform: scale(1.1) translateY(-30px); }
}

.waitlist-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='0.05' d='M0,192L48,197.3C96,203,192,213,288,229.3C384,245,480,267,576,250.7C672,235,768,181,864,181.3C960,181,1056,235,1152,234.7C1248,235,1344,181,1392,154.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/svg%3E");
  background-size: cover;
  pointer-events: none;
}

.waitlist-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.waitlist-card {
  background: #f5f5f5;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 48px;
  text-align: center;
  border: 1px solid #dddddd;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

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

.waitlist-icon-large {
  width: 100px;
  height: 100px;
  margin: 0 auto 24px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: white;
  animation: bounce 2s ease-in-out infinite;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.waitlist-card h2 {
  color: #000000 !important;
  font-size: 32px;
  margin-bottom: 16px;
  font-weight: 800;
}

.waitlist-card p {
  color: #111111 !important;
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.waitlist-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
}

.waitlist-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #e8e8e8;
  padding: 10px 20px;
  border-radius: 50px;
  color: #000000 !important;
  font-size: 14px;
  font-weight: 700;
  border: 1px solid #cccccc;
}

.waitlist-feature i {
  color: #FF6B00 !important;
}

.waitlist-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.waitlist-stat-card {
  background: #e8e8e8;
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  border: 1px solid #cccccc;
  transition: transform 0.3s ease;
}

.waitlist-stat-card:hover {
  transform: translateY(-3px);
  background: #dddddd;
}

.waitlist-stat-card .stat-number {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: #000000 !important;
  margin-bottom: 4px;
}

.waitlist-stat-card .stat-text {
  font-size: 13px;
  color: #111111 !important;
  font-weight: 700;
}

.waitlist-stat-card .stat-icon {
  width: 44px;
  height: 44px;
  background: #FF6B00;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 18px;
  color: #ffffff;
}

.waitlist-content h2 {
  color: white;
  font-size: 36px;
  margin-bottom: 16px;
}

.waitlist-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  margin-bottom: 32px;
}

.btn-telegram {
  background: #FF6B00 !important;
  color: #ffffff !important;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(255, 107, 0, 0.3);
}
.btn-telegram span {
  color: #ffffff !important;
}

.btn-telegram:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 107, 0, 0.4);
  background: #E65100 !important;
}

.btn-telegram i:first-child {
  font-size: 20px;
}

.telegram-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  max-width: 500px;
  margin: 0 auto 32px;
}

.btn-telegram {
  background: white !important;
  color: #229ED9 !important;
  font-weight: 600;
  padding: 16px 40px;
  border-radius: 50px;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
}

.btn-telegram:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .telegram-join {
    padding: 60px 0;
  }
  .telegram-content h2 {
    font-size: 28px;
  }
  .telegram-content p {
    font-size: 16px;
  }
  .telegram-icon {
    width: 80px;
    height: 80px;
    font-size: 36px;
  }
  .btn-telegram {
    width: 100%;
    justify-content: center;
  }
}

/* ================================================
   BUTTONS (Extended)
   ================================================ */

.btn-whatsapp {
  background: #25d366;
  color: white;
  border-color: #25d366;
}

.btn-whatsapp:hover {
  background: #128c7e;
  border-color: #128c7e;
  color: white;
}

/* ================================================
   FEATURE CARDS (Extended)
   ================================================ */

.feature-card {
  position: relative;
}

.feature-card .feature-icon {
  transition: var(--transition);
}

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

/* ================================================
   ANIMATED VIDEO BACKGROUND (CSS-ONLY)
   ================================================ */

.video-bg-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #F7931A 0%, #E38210 100%);
}

.video-bg-animated {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.video-bg-animated::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(255, 107, 0, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(230, 81, 0, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(255, 138, 51, 0.2) 0%, transparent 60%);
    animation: videoGradientMove 15s ease-in-out infinite;
}

.video-bg-animated::after {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 30% 60%, rgba(255, 107, 0, 0.25) 0%, transparent 30%),
        radial-gradient(circle at 70% 40%, rgba(204, 85, 0, 0.2) 0%, transparent 25%),
        radial-gradient(circle at 50% 80%, rgba(255, 138, 51, 0.15) 0%, transparent 35%);
    animation: videoCircleFloat 10s ease-in-out infinite;
}

.video-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.video-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 107, 0, 0.1);
    filter: blur(40px);
    animation: shapeFloat 20s ease-in-out infinite;
}

.video-shape-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    left: 10%;
    animation-delay: 0s;
}

.video-shape-2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    right: 15%;
    animation-delay: -5s;
}

.video-shape-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    animation-delay: -10s;
}

@keyframes videoGradientMove {
    0%, 100% {
        transform: scale(1) translate(0, 0);
        opacity: 1;
    }
    25% {
        transform: scale(1.1) translate(20px, -10px);
        opacity: 0.9;
    }
    50% {
        transform: scale(1.05) translate(-10px, 20px);
        opacity: 1;
    }
    75% {
        transform: scale(1.15) translate(-20px, -15px);
        opacity: 0.85;
    }
}

@keyframes videoCircleFloat {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -20px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 30px) rotate(240deg);
    }
}

@keyframes shapeFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        border-radius: 50%;
    }
    25% {
        transform: translate(40px, -30px) scale(1.1);
        border-radius: 40% 60% 60% 40%;
    }
    50% {
        transform: translate(-20px, 40px) scale(0.95);
        border-radius: 60% 40% 40% 60%;
    }
    75% {
        transform: translate(-40px, -20px) scale(1.05);
        border-radius: 40% 60% 50% 50%;
    }
}

.video-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, transparent 30%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 2;
    pointer-events: none;
}

.video-light-rays {
    position: absolute;
    inset: 0;
    background: 
        conic-gradient(from 0deg at 50% 50%, 
            transparent 0deg, 
            rgba(255, 107, 0, 0.03) 10deg, 
            transparent 20deg,
            transparent 180deg,
            rgba(255, 107, 0, 0.03) 190deg,
            transparent 200deg
        );
    animation: rotateRays 30s linear infinite;
    z-index: 1;
    pointer-events: none;
}

@keyframes rotateRays {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.blog-card:hover .blog-image::before {
  opacity: 0.2;
}

/* ================================================
   TESTIMONIAL CARDS (Extended)
   ================================================ */

.testimonial-card {
  position: relative;
}

.testimonial-card::after {
  content: '"';
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 80px;
  font-family: Georgia, serif;
  color: var(--primary);
  opacity: 0.1;
  line-height: 1;
}

/* ================================================
   PRICING CARD (Extended)
   ================================================ */

.pricing-card {
  position: relative;
}

.pricing-card::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-light) 100%
  );
  border-radius: var(--radius-xl);
  z-index: -1;
  opacity: 0;
  transition: var(--transition);
}

.pricing-card:hover::before {
  opacity: 1;
}

/* ================================================
   CTA SECTION (Extended)
   ================================================ */

.cta {
  position: relative;
  overflow: hidden;
}

.cta::before,
.cta::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.1;
}

.cta::before {
  top: -150px;
  left: -100px;
  animation: float 6s ease-in-out infinite;
}

.cta::after {
  bottom: -150px;
  right: -100px;
  animation: float 6s ease-in-out infinite reverse;
}

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

/* ================================================
   STOCK TICKER (Extended)
   ================================================ */

.stock-prices {
  position: relative;
}

.stock-prices::before,
.stock-prices::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  z-index: 10;
  pointer-events: none;
}

.stock-prices::before {
  left: 0;
  background: linear-gradient(to right, var(--white), transparent);
}

.stock-prices::after {
  right: 0;
  background: linear-gradient(to left, var(--white), transparent);
}

[data-theme="dark"] .stock-prices::before {
  background: linear-gradient(to right, var(--white), transparent);
}

[data-theme="dark"] .stock-prices::after {
  background: linear-gradient(to left, var(--white), transparent);
}

/* ================================================
   CAROUSEL (Extended)
   ================================================ */

.carousel {
  position: relative;
}

.carousel-slide {
  position: relative;
}

.carousel-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 107, 0, 0.1) 0%,
    transparent 50%
  );
  pointer-events: none;
}

/* ================================================
   IMAGE SECTION (Extended)
   ================================================ */

.image-card {
  cursor: pointer;
}

.image-card .image-card-overlay {
  background: linear-gradient(transparent 30%, rgba(255, 107, 0, 0.9) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 30px;
}

.image-card:hover .image-card-overlay h4 {
  animation: fadeInUp 0.3s ease;
}

/* ================================================
   SCROLL ANIMATIONS
   ================================================ */

.scroll-animate {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.scroll-animate.animated {
  opacity: 1;
  transform: translateY(0);
}

.scroll-animate-left {
  opacity: 0;
  transform: translateX(-40px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.scroll-animate-left.animated {
  opacity: 1;
  transform: translateX(0);
}

.scroll-animate-right {
  opacity: 0;
  transform: translateX(40px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.scroll-animate-right.animated {
  opacity: 1;
  transform: translateX(0);
}

.scroll-animate-scale {
  opacity: 0;
  transform: scale(0.9);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.scroll-animate-scale.animated {
  opacity: 1;
  transform: scale(1);
}

/* ================================================
   STAGGERED ANIMATIONS
   ================================================ */

.stagger-item {
  opacity: 0;
  transform: translateY(30px);
}

.stagger-item.visible {
  animation: fadeInUp 0.6s ease forwards;
}

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

/* ================================================
   HOVER EFFECTS
   ================================================ */

.hover-lift {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.hover-scale {
  transition: transform 0.3s ease;
}

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

.hover-glow {
  transition: box-shadow 0.3s ease;
}

.hover-glow:hover {
  box-shadow: 0 0 30px var(--primary-glow);
}

/* ================================================
   GRADIENT TEXT
   ================================================ */

.gradient-text {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-light) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ================================================
   DECORATIVE ELEMENTS
   ================================================ */

.decorative-circle {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-light) 100%
  );
  opacity: 0.1;
  pointer-events: none;
}

.decorative-circle-1 {
  width: 400px;
  height: 400px;
  top: -200px;
  right: -100px;
}

.decorative-circle-2 {
  width: 300px;
  height: 300px;
  bottom: -150px;
  left: -100px;
}

.decorative-dots {
  position: absolute;
  width: 100px;
  height: 100px;
  background-image: radial-gradient(var(--primary) 2px, transparent 2px);
  background-size: 10px 10px;
  opacity: 0.3;
  pointer-events: none;
}

/* ================================================
   RESPONSIVE EXTENSIONS
   ================================================ */

@media (max-width: 768px) {
  .hero {
    padding: 100px 0 60px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero p {
    font-size: 16px;
  }

  .features-header h2,
  .testimonials-header h2,
  .pricing-header h2,
  .cta h2 {
    font-size: 32px;
  }

  .carousel-slide img {
    height: 200px;
  }

  .carousel-content {
    padding: 16px;
  }

  .carousel-content h3 {
    font-size: 16px;
  }

  .carousel-content p {
    display: none;
  }
}

/* ================================================
   LOADING ANIMATION
   ================================================ */

.page-loader {
  position: fixed;
  inset: 0;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition:
    opacity 0.5s ease,
    visibility 0.5s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid var(--gray-200);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ================================================
   SKELETON LOADING
   ================================================ */

.skeleton {
  background: linear-gradient(
    90deg,
    var(--gray-200) 25%,
    var(--gray-100) 50%,
    var(--gray-200) 75%
  );
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
  border-radius: var(--radius);
}

@keyframes skeleton-loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* ================================================
   PARALLAX EFFECT
   ================================================ */

.parallax {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media (max-width: 768px) {
  .parallax {
    background-attachment: scroll;
  }
}

/* ================================================
    CUSTOM SCROLLBAR
    ================================================ */

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}

/* ================================================
    SELECTION
    ================================================ */

::selection {
  background: var(--primary);
  color: var(--white);
}

::-moz-selection {
  background: var(--primary);
  color: var(--white);
}

/* ================================================
    DECORATIVE BLOBS
    ================================================ */

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}

.blob-1 {
  width: 500px;
  height: 500px;
  background: var(--primary);
  top: -200px;
  right: -100px;
  animation: blob-float 8s ease-in-out infinite;
}

.blob-2 {
  width: 400px;
  height: 400px;
  background: var(--primary-light);
  bottom: -150px;
  left: -100px;
  animation: blob-float 10s ease-in-out infinite reverse;
}

.blob-3 {
  width: 300px;
  height: 300px;
  background: var(--warning);
  top: 50%;
  left: 10%;
  animation: blob-float 12s ease-in-out infinite;
}

@keyframes blob-float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(30px, -30px) scale(1.1);
  }
  50% {
    transform: translate(-20px, 20px) scale(0.9);
  }
  75% {
    transform: translate(20px, 10px) scale(1.05);
  }
}

/* ================================================
    IMAGE BACKGROUND SECTIONS
    ================================================ */

.image-bg-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.image-bg-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(13, 13, 13, 0.9) 100%);
  z-index: 1;
}

.image-bg-section .container {
  position: relative;
  z-index: 2;
}

.image-bg-section .features-header h2,
.image-bg-section .features-header p {
  color: var(--white);
}

.image-bg-section .feature-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.image-bg-section .feature-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--primary);
}

.image-bg-section .feature-icon {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
}

.image-bg-section .feature-card h3 {
  color: var(--white);
}

.image-bg-section .feature-card p {
  color: var(--gray-400);
}

/* ================================================
    ANIMATED HERO IMAGE
    ================================================ */

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin-left: auto;
}

.hero-image {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  animation: hero-image-float 6s ease-in-out infinite;
}

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

.hero-image-glow {
  position: absolute;
  inset: -20px -20px -20px 20px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: var(--radius-xl);
  filter: blur(60px);
  opacity: 0.3;
  z-index: -1;
  animation: glow-pulse 4s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%, 100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.05);
  }
}

/* ================================================
    FLOATING ELEMENTS
    ================================================ */

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

.floating-element-1 {
  top: 10%;
  right: 20%;
  width: 60px;
  height: 60px;
  background: var(--primary);
  border-radius: var(--radius);
  opacity: 0.2;
}

.floating-element-2 {
  bottom: 20%;
  left: 15%;
  width: 80px;
  height: 80px;
  background: var(--primary-light);
  border-radius: 50%;
  opacity: 0.2;
  animation-delay: -2s;
}

.floating-element-3 {
  top: 40%;
  right: 10%;
  width: 40px;
  height: 40px;
  background: var(--warning);
  border-radius: var(--radius-sm);
  opacity: 0.3;
  animation-delay: -4s;
}

@keyframes float-element {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-30px) rotate(10deg);
  }
}

/* ================================================
    IMAGE HOVER ZOOM
    ================================================ */

.hover-zoom {
  overflow: hidden;
}

.hover-zoom img {
  transition: transform 0.8s ease;
}

.hover-zoom:hover img {
  transform: scale(1.15);
}

/* ================================================
    GRADIENT BORDER
    ================================================ */

.gradient-border {
  position: relative;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
}

.gradient-border::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light), var(--warning));
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0;
  transition: var(--transition);
}

.gradient-border:hover::before {
  opacity: 1;
}

/* ================================================
    RESPONSIVE IMPROVEMENTS
    ================================================ */

@media (max-width: 768px) and (pointer: fine) {
  .hero {
    padding: 100px 0 60px;
    text-align: center;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero p {
    font-size: 16px;
  }
}

@media (max-width: 768px) and (pointer: coarse) {
  .hero {
    padding: 90px 0 50px;
    text-align: center;
    min-height: auto;
  }

  .hero h1 {
    font-size: 26px;
    line-height: 1.3;
  }

  .hero p {
    font-size: 15px;
    line-height: 1.5;
  }

  * {
    -webkit-tap-highlight-color: transparent;
  }

  a, button {
    min-height: 44px;
  }

  .btn {
    min-height: 48px;
    padding: 14px 28px;
  }

  .btn-lg {
    min-height: 52px;
    padding: 16px 32px;
  }
}
  
  .hero-image-wrapper {
    margin-top: 40px;
    max-width: 100%;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .waitlist-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .waitlist::before,
  .waitlist::after {
    display: none;
  }
  
  .waitlist-card {
    padding: 24px 20px;
  }
  
  .waitlist-icon-large {
    width: 70px;
    height: 70px;
    font-size: 28px;
  }
  
  .waitlist-card h2 {
    font-size: 22px;
  }
  
  .waitlist-card p {
    font-size: 14px;
  }
  
  .waitlist-features {
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .waitlist-feature {
    padding: 8px 12px;
    font-size: 12px;
  }
  
  .waitlist-stats {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .waitlist-stat-card {
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
  }
  
  .waitlist-stat-card .stat-icon {
    width: 36px;
    height: 36px;
    font-size: 16px;
    flex-shrink: 0;
    margin: 0;
  }
  
  .waitlist-stat-card .stat-number {
    font-size: 22px;
  }
  
  .waitlist-stat-card .stat-text {
    font-size: 13px;
  }
  
  .waitlist-stat-card .stat-number {
    font-size: 24px;
  }
  
  .waitlist-stat-card .stat-text {
    font-size: 12px;
  }

  .features-header h2,
  .testimonials-header h2,
  .pricing-header h2,
  .cta h2 {
    font-size: 32px;
  }

  .carousel-slide img {
    height: 200px;
  }

  .carousel-content {
    padding: 16px;
  }

  .carousel-content h3 {
    font-size: 16px;
  }

  .carousel-content p {
    display: none;
  }
  
  .blob {
    display: none;
  }
  
  .image-bg-section {
    background-attachment: scroll;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 24px;
  }
  
  .hero-badge {
    font-size: 12px;
    padding: 6px 12px;
  }
  
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-actions .btn {
    width: 100%;
  }
}

/* ================================================
   ENHANCED 3D EFFECTS
   ================================================ */

.card-3d-enhanced {
    transform: perspective(1000px) rotateX(0deg) rotateY(0deg);
    transform-style: preserve-3d;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.card-3d-enhanced:hover {
    transform: perspective(1000px) rotateX(5deg) rotateY(-5deg) translateZ(15px);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.2),
        0 15px 30px rgba(255, 107, 0, 0.15);
}

.glow-3d {
    position: relative;
}

.glow-3d::before {
    content: '';
    position: absolute;
    inset: -15px;
    background: linear-gradient(135deg, #FF6B00 0%, #E65100 100%);
    border-radius: inherit;
    filter: blur(25px);
    opacity: 0.4;
    z-index: -1;
    animation: glowPulse3d 3s ease-in-out infinite;
}

@keyframes glowPulse3d {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.05); }
}

.float-3d {
    animation: float3d 6s ease-in-out infinite;
}

@keyframes float3d {
    0%, 100% { 
        transform: translateY(0) rotateX(0deg) rotateY(0deg); 
    }
    25% { 
        transform: translateY(-15px) rotateX(5deg) rotateY(5deg); 
    }
    50% { 
        transform: translateY(0) rotateX(0deg) rotateY(0deg); 
    }
    75% { 
        transform: translateY(15px) rotateX(-5deg) rotateY(-5deg); 
    }
}

.glass-3d {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.shine-effect {
    position: relative;
    overflow: hidden;
}

.shine-effect::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to right,
        transparent 0%,
        rgba(255, 255, 255, 0.15) 50%,
        transparent 100%
    );
    transform: rotate(45deg);
    animation: shine 6s ease-in-out infinite;
}

@keyframes shine {
    0%, 100% { transform: translateX(-100%) rotate(45deg); }
    50% { transform: translateX(100%) rotate(45deg); }
}

.gradient-border-3d {
    position: relative;
    background: #FFFFFF;
    border-radius: 20px;
}

.gradient-border-3d::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg, #FF6B00, #E65100, #CC5500, #FF8533);
    border-radius: 23px;
    z-index: -1;
    animation: gradientBorder 4s ease infinite;
}
