/* Custom CSS for Tactical Landing Page */

/* Animations */
@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.4);
  }
  50% {
    box-shadow: 0 0 30px rgba(34, 197, 94, 0.7);
  }
}

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

/* Animation Classes */
.animate-fade-in-up {
  animation: fade-in-up 0.6s ease-out;
}

.animate-scale-in {
  animation: scale-in 0.5s ease-out;
}

.animate-blob {
  animation: blob 7s infinite;
}

.animation-delay-2000 {
  animation-delay: 2s;
}

.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }
.stagger-5 { animation-delay: 0.5s; }

/* Scroll Animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out;
}

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

/* CTA Pulse Effect */
.cta-pulse {
  animation: pulse-glow 2s infinite;
}

/* Button Hover Effects */
.cta-primary {
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.cta-primary:active {
  transform: translateY(0);
}

/* Module Cards */
.module-card {
  transition: all 0.3s ease;
}

.module-card:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

[dir="rtl"] .module-card:hover {
  transform: translateX(-10px);
}

/* Enhanced Testimonial Cards */
.testimonial-card {
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.testimonial-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.testimonial-card:hover .absolute.inset-0 {
  background: rgba(255, 255, 255, 0.95);
}

/* Glassmorphism Effect */
.testimonial-card .absolute.inset-0 {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.3s ease;
}

/* Staggered Animation for Testimonials */
.testimonial-card.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px) scale(0.95);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Quote Icon Animation */
.testimonial-card .group-hover\\:scale-110 {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Floating Animation for Background Elements */
@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(1deg); }
}

.testimonial-card:nth-child(1) { animation-delay: 0ms; }
.testimonial-card:nth-child(2) { animation-delay: 200ms; }
.testimonial-card:nth-child(3) { animation-delay: 400ms; }
.testimonial-card:nth-child(4) { animation-delay: 600ms; }

/* Background Pattern Animation */
@keyframes gradient-shift {
  0%, 100% { 
    background-position: 0% 50%; 
  }
  50% { 
    background-position: 100% 50%; 
  }
}

/* Enhanced Background Blur Animation */
@keyframes blur-move {
  0%, 100% { 
    transform: translate(0, 0) scale(1);
    opacity: 0.05;
  }
  25% { 
    transform: translate(20px, -20px) scale(1.1);
    opacity: 0.08;
  }
  50% { 
    transform: translate(-20px, 20px) scale(0.9);
    opacity: 0.05;
  }
  75% { 
    transform: translate(30px, 10px) scale(1.05);
    opacity: 0.07;
  }
}

#testimonials .absolute.inset-0 > div {
  animation: blur-move 12s ease-in-out infinite;
}

#testimonials .absolute.inset-0 > div:nth-child(1) {
  animation-delay: 0s;
}

#testimonials .absolute.inset-0 > div:nth-child(2) {
  animation-delay: -4s;
}

#testimonials .absolute.inset-0 > div:nth-child(3) {
  animation-delay: -8s;
}

/* Trust Badges */
.trust-badge {
  transition: transform 0.3s ease;
}

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

/* Urgency Elements */
.urgency-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #ef4444;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
  margin-right: 8px;
}

[dir="rtl"] .urgency-dot {
  margin-right: 0;
  margin-left: 8px;
}

/* Live Counter */
.live-counter {
  transition: all 0.5s ease;
}

/* Price Badge */
.price-badge {
  animation: scale-in 0.5s ease-out 0.3s both;
}

.price-strikethrough {
  position: relative;
}

.price-strikethrough::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: #ef4444;
  transform: scaleX(0);
  transform-origin: left;
  animation: draw-line 0.5s ease-out 0.8s forwards;
}

@keyframes draw-line {
  to {
    transform: scaleX(1);
  }
}

/* Seats Progress */
.seats-remaining {
  animation: fade-in-up 0.6s ease-out 1s both;
}

.seats-progress {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  overflow: hidden;
}

.seats-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #ef4444, #f97316);
  border-radius: 4px;
  transition: width 2s ease-out;
  animation: fill-progress 2s ease-out 0.5s forwards;
}

@keyframes fill-progress {
  from {
    width: 0%;
  }
  to {
    width: 87%;
  }
}

/* Benefit Checks */
.benefit-check {
  opacity: 0;
  transform: translateX(-20px);
  animation: slide-in 0.4s ease-out forwards;
}

[dir="rtl"] .benefit-check {
  transform: translateX(20px);
}

@keyframes slide-in {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ===== HERO SECTION REDESIGN ===== */

.hero-section {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  color: white;
  overflow-x: hidden;
  overflow-y: visible;
}

/* Responsive container fixes */
.container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .container {
    max-width: 640px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}

@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}

@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}

/* Hero Background */
.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(135deg, rgba(15, 23, 42, 0.8) 0%, rgba(30, 41, 59, 0.85) 25%, rgba(51, 65, 85, 0.8) 50%, rgba(30, 41, 59, 0.85) 75%, rgba(15, 23, 42, 0.8) 100%),
    url('https://static.capabiliaserver.com/frontend/clients/barcanew/wp_prod/wp-content/uploads/2019/10/88cb266a-certificado-en-analista-tactico-de-futbol.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
}

/* Fix for mobile background attachment */
@media (max-width: 768px) {
  .hero-gradient {
    background-attachment: scroll;
    background-size: cover;
    background-position: center top;
  }
  
  .hero-social-proof {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 10px 0;
  }
  
  .social-proof-banner {
    padding: 0 0.75rem;
  }
  
  .social-proof-indicator {
    font-size: 12px;
    padding: 6px 12px;
    gap: 6px;
  }
}

/* Ultra-narrow screen social proof adjustments */
@media (max-width: 400px) {
  .social-proof-indicator {
    font-size: 11px;
    padding: 4px 8px;
    gap: 4px;
  }
  
  .live-counter-number {
    font-weight: 600;
  }
}

@media (max-width: 340px) {
  .social-proof-indicator {
    font-size: 10px;
    padding: 3px 6px;
    gap: 3px;
  }
}

@media (max-width: 280px) {
  .hero-social-proof {
    padding: 6px 0;
  }
  
  .social-proof-indicator {
    font-size: 9px;
    padding: 2px 4px;
    gap: 2px;
  }
  
  .live-dot {
    width: 6px;
    height: 6px;
  }
}

.hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.05);
  pointer-events: none;
}

/* Social Proof Banner */
.hero-social-proof {
  position: relative;
  z-index: 10;
  padding: 12px 0;
  background: linear-gradient(90deg, 
    rgba(0, 0, 0, 0.4) 0%, 
    rgba(0, 0, 0, 0.3) 15%, 
    rgba(0, 0, 0, 0.3) 85%, 
    rgba(0, 0, 0, 0.4) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  left: 0;
  right: 0;
}

/* Add backdrop filter only for supported browsers */
@supports (backdrop-filter: blur(10px)) {
  .hero-social-proof {
    backdrop-filter: blur(10px);
  }
}

.social-proof-banner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.social-proof-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(15px);
}

.live-dot {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.6);
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.2); }
}

.live-counter-number {
  font-weight: 700;
  color: #10b981;
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 10;
  flex: 1;
  display: flex;
  align-items: center;
  padding: 60px 0;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.hero-content .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  box-sizing: border-box;
}

@media (min-width: 1280px) {
  .hero-content .container {
    max-width: 1280px;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (max-width: 900px) {
  .hero-content .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

@media (max-width: 768px) {
  .hero-content .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-content .container {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 40px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  min-width: 0;
  overflow: hidden;
  padding: 0;
  box-sizing: border-box;
}

@media (max-width: 1280px) {
  .hero-layout {
    grid-template-columns: 1fr 350px;
    gap: 30px;
    max-width: 1024px;
    padding: 0;
  }
}

@media (max-width: 1024px) {
  .hero-layout {
    grid-template-columns: 1fr 320px;
    gap: 25px;
    max-width: 768px;
    padding: 0;
  }
}

/* Medium tablet screens - fix alignment issues */
@media (max-width: 900px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 35px;
    max-width: 100%;
    padding: 0;
    margin: 0;
    width: 100%;
  }
  
  .hero-main {
    width: 100%;
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
    margin: 0 auto;
    text-align: center;
  }
  
  .hero-title {
    text-align: center;
    width: 100%;
    max-width: 100%;
  }
  
  .hero-subtitle {
    text-align: center;
    width: 100%;
    max-width: 100%;
  }
  
  .hero-description {
    text-align: center;
    width: 100%;
    max-width: 100%;
  }
  
  .hero-cta-section {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
  }
}

/* Hero Main Content */
.hero-main {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
  word-wrap: break-word;
  padding-left: 0;
  padding-right: 0;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .hero-main {
    padding-left: 0;
    padding-right: 0;
    width: 100%;
    max-width: 100%;
  }
}

.hero-badge {
  display: flex;
  justify-content: flex-start;
  padding: 0;
  margin: 0;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(90deg, 
    rgba(255, 255, 255, 0.15) 0%, 
    rgba(255, 255, 255, 0.1) 50%, 
    rgba(255, 255, 255, 0.15) 100%);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 25px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  max-width: 100%;
  box-shadow: 
    0 0 20px rgba(255, 255, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  animation: badge-glow 3s ease-in-out infinite;
}

/* Add backdrop filter only for supported browsers */
@supports (backdrop-filter: blur(10px)) {
  .trust-badge {
    backdrop-filter: blur(10px);
  }
}

.badge-icon {
  font-size: 16px;
}

@keyframes badge-glow {
  0%, 100% { 
    box-shadow: 
      0 0 20px rgba(255, 255, 255, 0.1),
      0 0 40px rgba(255, 255, 255, 0.05),
      inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.25);
  }
  50% { 
    box-shadow: 
      0 0 30px rgba(255, 255, 255, 0.2),
      0 0 60px rgba(255, 255, 255, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
  }
}

.hero-headlines {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 600px;
  min-width: 0;
  overflow: hidden;
  box-sizing: border-box;
}

@media (max-width: 1280px) {
  .hero-headlines {
    max-width: 550px;
  }
}

@media (max-width: 1024px) {
  .hero-headlines {
    max-width: 500px;
  }
}

@media (max-width: 768px) {
  .hero-headlines {
    max-width: 100%;
  }
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  color: #ffffff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 2px 10px rgba(0, 0, 0, 0.3);
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
  max-width: 100%;
  width: 100%;
  min-width: 0;
  position: relative;
  z-index: 10;
  text-align: left;
  letter-spacing: -0.02em;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .hero-title {
    text-align: center;
  }
}

/* Optional gradient text for modern browsers that support it well */
@supports (background-clip: text) and (-webkit-background-clip: text) {
  .hero-title.gradient-text {
    background: linear-gradient(135deg, #ffffff 0%, #e5e7eb 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    /* Fallback for text shadow */
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3));
  }
}

@media (max-width: 1280px) {
  .hero-title {
    font-size: 3.25rem;
    line-height: 1.15;
  }
}

@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.75rem;
    line-height: 1.2;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.25rem;
    line-height: 1.25;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.875rem;
    line-height: 1.3;
  }
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.4;
  word-wrap: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
  width: 100%;
  min-width: 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 10;
  text-align: left;
  letter-spacing: -0.01em;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .hero-subtitle {
    text-align: center;
  }
}

@media (max-width: 1280px) {
  .hero-subtitle {
    font-size: 1.375rem;
    line-height: 1.35;
  }
}

@media (max-width: 1024px) {
  .hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.4;
  }
}

@media (max-width: 768px) {
  .hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.4;
  }
}

@media (max-width: 480px) {
  .hero-subtitle {
    font-size: 1.125rem;
    line-height: 1.4;
  }
}

.hero-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  max-width: 100%;
  width: 100%;
  min-width: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 10;
  text-align: left;
  text-justify: inter-word;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .hero-description {
    text-align: center;
  }
}

@media (max-width: 1280px) {
  .hero-description {
    font-size: 1.0625rem;
  }
}

@media (max-width: 1024px) {
  .hero-description {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .hero-description {
    font-size: 0.95rem;
    line-height: 1.5;
  }
}

@media (max-width: 480px) {
  .hero-description {
    font-size: 0.9rem;
    line-height: 1.5;
  }
}

/* Hero Benefits */
.hero-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  width: 100%;
  max-width: 500px;
  min-width: 0;
  overflow: hidden;
  box-sizing: border-box;
  justify-content: flex-start;
  align-items: flex-start;
}

@media (max-width: 1024px) {
  .hero-benefits {
    max-width: 450px;
  }
}

@media (max-width: 768px) {
  .hero-benefits {
    gap: 8px;
    justify-content: center;
    max-width: 100%;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .hero-benefits {
    gap: 8px;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }
}

.benefit-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 20px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
  transition: all 0.3s ease;
  white-space: nowrap;
  overflow: hidden;
  box-sizing: border-box;
  flex-shrink: 0;
  max-width: 100%;
}

@media (max-width: 768px) {
  .benefit-pill {
    font-size: 12px;
    padding: 6px 12px;
    gap: 6px;
  }
}

@media (max-width: 480px) {
  .benefit-pill {
    font-size: 12px;
    padding: 6px 12px;
    width: auto;
    justify-content: flex-start;
  }
}

.benefit-pill:hover {
  background: rgba(16, 185, 129, 0.25);
  transform: translateY(-2px);
}

.benefit-icon {
  width: 16px;
  height: 16px;
  color: #10b981;
}

/* Pricing Card */
.hero-cta-section {
  position: sticky;
  top: 20px;
  width: 100%;
  max-width: 400px;
  min-width: 0;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow: hidden;
}

@media (max-width: 1280px) {
  .hero-cta-section {
    max-width: 350px;
    padding: 0;
  }
}

@media (max-width: 1024px) {
  .hero-cta-section {
    max-width: 320px;
    padding: 0;
  }
}

.pricing-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.1);
  color: #1f2937;
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  margin: 0;
}

@media (max-width: 1280px) {
  .pricing-card {
    padding: 24px;
  }
}

@media (max-width: 1024px) {
  .pricing-card {
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .pricing-card {
    padding: 18px;
    border-radius: 20px;
  }
}

@media (max-width: 480px) {
  .pricing-card {
    padding: 16px;
    border-radius: 16px;
  }
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #f59e0b, #ef4444, #8b5cf6);
  animation: price-shimmer 3s ease-in-out infinite;
}

@keyframes price-shimmer {
  0%, 100% { opacity: 0.8; }
  50% { opacity: 1; }
}

.pricing-header {
  text-align: center;
  margin-bottom: 24px;
}

.offer-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: white;
  border-radius: 15px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  animation: offer-pulse 2s ease-in-out infinite;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
  text-align: center;
  line-height: 1.2;
}

@media (max-width: 480px) {
  .offer-badge {
    font-size: 12px;
    padding: 6px 10px;
    gap: 4px;
    letter-spacing: 0.3px;
  }
}

@media (max-width: 360px) {
  .offer-badge {
    font-size: 11px;
    padding: 5px 8px;
    gap: 3px;
    letter-spacing: 0.2px;
    flex-wrap: wrap;
    justify-content: center;
    min-height: 30px;
    align-items: center;
  }
}

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

.pricing-main {
  text-align: center;
  margin-bottom: 24px;
}

.price-comparison {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 12px;
}

.original-price {
  display: flex;
  align-items: baseline;
  gap: 2px;
  color: #6b7280;
  text-decoration: line-through;
  font-size: 1.25rem;
}

.current-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  color: #059669;
  font-weight: 800;
  font-size: 2.5rem;
}

.savings-badge {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  border-radius: 12px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-countdown {
  margin: 24px 0;
}

.pricing-cta {
  margin: 24px 0;
}

.hero-cta-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  background: linear-gradient(135deg, #059669, #10b981);
  color: white;
  border: none;
  border-radius: 16px;
  padding: 16px 24px;
  font-size: 1.125rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  box-shadow: 0 10px 25px rgba(5, 150, 105, 0.3);
}

.hero-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(5, 150, 105, 0.4);
}

.hero-cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.hero-cta-button:hover::before {
  left: 100%;
}

.cta-arrow {
  transition: transform 0.3s ease;
}

.hero-cta-button:hover .cta-arrow {
  transform: translateX(4px);
}

.pricing-security {
  text-align: center;
  margin: 20px 0;
  padding: 16px;
  background: rgba(16, 185, 129, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(16, 185, 129, 0.1);
}

.security-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #059669;
  margin-bottom: 4px;
}

.security-icon {
  width: 16px;
  height: 16px;
}

.guarantee-text {
  font-size: 12px;
  color: #6b7280;
}

.scarcity-indicator {
  margin-top: 20px;
  text-align: center;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  overflow: hidden;
}

.scarcity-text {
  font-size: 14px;
  font-weight: 600;
  color: #dc2626;
  margin-bottom: 8px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.scarcity-progress {
  height: 6px;
  background: #f3f4f6;
  border-radius: 3px;
  overflow: hidden;
  position: relative;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.seats-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #f59e0b, #dc2626);
  border-radius: 3px;
  transition: width 2s ease-out;
  position: relative;
}

.seats-progress-bar::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: progress-shine 2s infinite;
}

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

/* Hero Details */
.hero-details {
  position: relative;
  z-index: 10;
  padding: 20px 0;
  background: rgba(0, 0, 0, 0.2);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Add backdrop filter only for supported browsers */
@supports (backdrop-filter: blur(10px)) {
  .hero-details {
    backdrop-filter: blur(10px);
  }
}

.details-text {
  text-align: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 100%;
    padding: 0;
    margin: 0;
    width: 100%;
    min-width: 0;
    overflow: hidden;
  }
  
  .hero-main {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
    padding-left: 0;
    padding-right: 0;
    margin: 0;
  }
  
  .hero-title {
    font-size: 2.25rem;
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    width: 100%;
    max-width: 100%;
    text-align: center;
    letter-spacing: -0.015em;
  }
  
  .hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.4;
    word-wrap: break-word;
    overflow-wrap: break-word;
    width: 100%;
    max-width: 100%;
    text-align: center;
  }
  
  .hero-description {
    font-size: 1rem;
    line-height: 1.5;
    word-wrap: break-word;
    overflow-wrap: break-word;
    width: 100%;
    max-width: 100%;
    text-align: center;
  }
  
  .hero-cta-section {
    position: static;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin: 0 auto;
    padding: 0;
    overflow: hidden;
  }
  
  .pricing-card {
    padding: 18px;
    margin: 0;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    border-radius: 20px;
    overflow: hidden;
  }
  
  .current-price {
    font-size: 1.8rem;
  }
  
  .hero-content {
    padding: 40px 0;
  }
}

/* Extra Small Mobile */
@media (max-width: 480px) {
  .hero-layout {
    padding: 0;
    gap: 30px;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
  }
  
  .hero-cta-section {
    padding: 0;
    margin: 0 auto;
  }
}

/* Ultra-Narrow Screens (Foldable phones like Galaxy Z Fold 4) */
@media (max-width: 400px) and (min-aspect-ratio: 20/9) {
  .hero-content {
    padding: 40px 0;
  }
  
  .hero-layout {
    gap: 20px;
  }
  
  .hero-headlines {
    gap: 12px;
  }
  
  .hero-title {
    font-size: 1.625rem;
    line-height: 1.25;
    letter-spacing: -0.005em;
  }
  
  .hero-subtitle {
    font-size: 1rem;
    line-height: 1.4;
  }
  
  .hero-description {
    font-size: 0.9rem;
    line-height: 1.45;
  }
  
  .hero-benefits {
    gap: 6px;
    margin-top: 16px;
  }
  
  .benefit-pill {
    font-size: 0.75rem;
    padding: 4px 8px;
    gap: 4px;
  }
  
  .benefit-icon {
    width: 12px;
    height: 12px;
  }
  
  .pricing-card {
    padding: 12px;
    border-radius: 12px;
  }
  
  .countdown-timer {
    padding: 10px;
    border-radius: 12px;
  }
  
  .countdown-display {
    gap: 3px;
    margin: 10px 0;
  }
  
  .countdown-unit {
    min-width: 32px;
    max-width: 36px;
    padding: 4px 2px;
  }
  
  .countdown-number {
    font-size: 12px;
  }
  
  .countdown-label {
    font-size: 6px;
  }
  
  .countdown-separator {
    font-size: 12px;
    margin: 0 1px;
  }
}

/* Very Narrow Portrait Screens (Cover screens of foldables) */
@media (max-width: 340px) {
  .hero-content .container {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  
  .hero-title {
    font-size: 1.5rem;
    line-height: 1.2;
  }
  
  .hero-subtitle {
    font-size: 0.95rem;
  }
  
  .hero-description {
    font-size: 0.85rem;
    line-height: 1.4;
  }
  
  .benefit-pill {
    font-size: 0.7rem;
    padding: 3px 6px;
  }
  
  .pricing-card {
    padding: 10px;
  }
  
  .offer-badge {
    font-size: 10px;
    padding: 4px 6px;
    gap: 2px;
    letter-spacing: 0.1px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .current-price {
    font-size: 1.25rem;
  }
  
  .countdown-timer {
    padding: 8px;
    border-radius: 10px;
  }
  
  .countdown-display {
    gap: 2px;
    margin: 8px 0;
  }
  
  .countdown-unit {
    min-width: 28px;
    max-width: 32px;
    padding: 3px 1px;
  }
  
  .countdown-number {
    font-size: 11px;
  }
  
  .countdown-label {
    font-size: 5px;
  }
  
  .countdown-separator {
    font-size: 10px;
    margin: 0;
  }
  
  .countdown-number {
    font-size: 12px;
  }
  
  .countdown-label {
    font-size: 6px;
  }
}

/* Landscape on Ultra-Narrow Screens (Fold phones in landscape) */
@media (max-height: 480px) and (orientation: landscape) and (max-width: 900px) {
  .hero-section {
    min-height: 100vh;
  }
  
  .hero-content {
    padding: 20px 0;
  }
  
  .hero-layout {
    gap: 20px;
  }
  
  .hero-title {
    font-size: 1.75rem;
    line-height: 1.2;
  }
  
  .hero-subtitle {
    font-size: 1rem;
    line-height: 1.3;
  }
  
  .hero-description {
    font-size: 0.9rem;
    line-height: 1.4;
  }
  
  .hero-headlines {
    gap: 10px;
  }
  
  .hero-benefits {
    gap: 6px;
    margin-top: 12px;
  }
  
  .benefit-pill {
    font-size: 0.75rem;
    padding: 4px 8px;
  }
  
  .pricing-card {
    padding: 12px;
  }
  
  .countdown-timer {
    padding: 10px;
  }
  
  .countdown-unit {
    min-width: 35px;
    max-width: 40px;
    padding: 4px 2px;
  }
  
  .countdown-number {
    font-size: 12px;
  }
  
  .countdown-label {
    font-size: 6px;
  }
}

/* Cover Screen (Very small secondary screens on foldables) */
@media (max-width: 280px) {
  .hero-content .container {
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }
  
  .hero-title {
    font-size: 1.25rem;
    line-height: 1.15;
  }
  
  .hero-subtitle {
    font-size: 0.85rem;
    line-height: 1.3;
  }
  
  .hero-description {
    font-size: 0.75rem;
    line-height: 1.35;
  }
  
  .hero-headlines {
    gap: 8px;
  }
  
  .hero-benefits {
    flex-direction: column;
    align-items: center;
    gap: 4px;
  }
  
  .benefit-pill {
    font-size: 0.65rem;
    padding: 2px 4px;
    width: fit-content;
  }
  
  .pricing-card {
    padding: 8px;
    border-radius: 8px;
  }
  
  .offer-badge {
    font-size: 9px;
    padding: 3px 5px;
    gap: 2px;
    letter-spacing: 0px;
    flex-wrap: wrap;
    justify-content: center;
    line-height: 1.1;
  }
  
  .current-price {
    font-size: 1rem;
  }
  
  .countdown-timer {
    padding: 6px;
    border-radius: 8px;
  }
  
  .countdown-display {
    gap: 1px;
    margin: 6px 0;
  }
  
  .countdown-unit {
    min-width: 24px;
    max-width: 28px;
    padding: 2px 1px;
  }
  
  .countdown-number {
    font-size: 9px;
  }
  
  .countdown-label {
    font-size: 4px;
  }
  
  .countdown-separator {
    font-size: 8px;
    margin: 0;
  }
}
  
  .hero-title {
    font-size: 1.875rem;
    line-height: 1.25;
    letter-spacing: -0.01em;
    text-align: center;
  }
  
  .hero-subtitle {
    font-size: 1.125rem;
    line-height: 1.4;
    text-align: center;
  }
  
  .hero-description {
    font-size: 0.975rem;
    line-height: 1.5;
    text-align: center;
  }
  
  .pricing-card {
    padding: 16px;
    margin: 0;
  }
  
  .current-price {
    font-size: 1.6rem;
  }
  
  .benefit-pill {
    font-size: 0.8rem;
    padding: 6px 12px;
  }
  
  .hero-benefits {
    gap: 8px;
  }
  
  .hero-content {
    padding: 30px 0;
  }
}

/* ===== SALES-FOCUSED COUNTDOWN TIMER ===== */

/* Main Countdown Container */
#countdown {
  animation: fade-in-up 0.6s ease-out 0.2s both;
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

.countdown-timer {
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #1e40af 100%);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 15px 30px rgba(30, 64, 175, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  margin: 0;
}

.countdown-timer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  animation: shine 3s infinite;
  clip-path: inset(0);
  overflow: hidden;
}

@keyframes shine {
  0% { 
    transform: translateX(-100%); 
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% { 
    transform: translateX(100%); 
    opacity: 0;
  }
}

/* Urgency States */
.countdown-timer.urgent {
  background: linear-gradient(135deg, #dc2626 0%, #ef4444 50%, #dc2626 100%);
  box-shadow: 0 20px 40px rgba(220, 38, 38, 0.4);
  animation: urgent-pulse 2s infinite;
}

.countdown-timer.critical {
  background: linear-gradient(135deg, #991b1b 0%, #dc2626 50%, #991b1b 100%);
  box-shadow: 0 20px 40px rgba(153, 27, 27, 0.5);
  animation: critical-pulse 1s infinite;
}

@keyframes urgent-pulse {
  0%, 100% { 
    transform: scale(1);
    box-shadow: 0 20px 40px rgba(220, 38, 38, 0.4);
  }
  50% { 
    transform: scale(1.02);
    box-shadow: 0 25px 50px rgba(220, 38, 38, 0.6);
  }
}

@keyframes critical-pulse {
  0%, 100% { 
    transform: scale(1);
    box-shadow: 0 20px 40px rgba(153, 27, 27, 0.5);
  }
  50% { 
    transform: scale(1.03);
    box-shadow: 0 30px 60px rgba(153, 27, 27, 0.8);
  }
}

.critical-pulse {
  animation: critical-flash 0.5s ease-out;
}

@keyframes critical-flash {
  0%, 100% { background-color: inherit; }
  50% { background-color: rgba(255, 255, 255, 0.1); }
}

/* Header Section */
.countdown-header {
  text-align: center;
  margin-bottom: 20px;
}

.urgency-indicator {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  font-size: 14px;
  font-weight: 600;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.urgency-indicator.urgent {
  background: rgba(255, 255, 255, 0.2);
  animation: indicator-urgent 2s infinite;
}

.urgency-indicator.critical {
  background: rgba(255, 255, 255, 0.25);
  animation: indicator-critical 1s infinite;
}

@keyframes indicator-urgent {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}

@keyframes indicator-critical {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

/* Countdown Boxes */
.countdown-boxes {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin: 16px 0;
  flex-wrap: nowrap;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.countdown-box {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 12px 8px;
  text-align: center;
  position: relative;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  min-width: 60px;
  max-width: 70px;
  flex: 1;
  box-sizing: border-box;
}

.countdown-box:hover {
  transform: translateY(-5px) scale(1.05);
  background: rgba(255, 255, 255, 0.15);
}

.countdown-box.urgent {
  animation: box-urgent 2s infinite;
}

.countdown-box.critical {
  animation: box-critical 1s infinite;
}

.countdown-box.flashing {
  animation: flash-critical 0.5s infinite;
}

@keyframes box-urgent {
  0%, 100% { 
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
  }
  50% { 
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.4);
  }
}

@keyframes box-critical {
  0%, 100% { 
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
  }
  50% { 
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.6);
    border-color: rgba(255, 255, 255, 0.7);
  }
}

@keyframes flash-critical {
  0%, 100% { background: rgba(255, 255, 255, 0.1); }
  50% { background: rgba(255, 255, 255, 0.3); }
}

.countdown-number {
  display: block;
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  margin-bottom: 4px;
}

.countdown-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.countdown-separator {
  font-size: 24px;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 4px;
  animation: blink 2s infinite;
}

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

/* Footer Section */
.countdown-footer {
  text-align: center;
  margin-top: 16px;
}

.offer-expires-text {
  color: rgba(255, 255, 255, 0.95);
  font-size: 14px;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  animation: glow-text 3s infinite;
}

@keyframes glow-text {
  0%, 100% { 
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  }
  50% { 
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3), 0 0 10px rgba(255, 255, 255, 0.3);
  }
}

/* Expired State */
.countdown-expired {
  text-align: center;
  padding: 30px;
  background: linear-gradient(135deg, #7f1d1d 0%, #991b1b 50%, #7f1d1d 100%);
  border-radius: 20px;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.expired-icon {
  font-size: 48px;
  margin-bottom: 16px;
  animation: shake 0.5s infinite;
}

.expired-text {
  color: white;
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  75% { transform: translateX(5px); }
}

/* Desktop Responsive - Enhanced for larger screens */

/* Large Desktop and 4K Screens - Enhanced Hero Content */
@media (min-width: 1440px) {
  .hero-content {
    padding: 80px 0;
  }
  
  .hero-content .container {
    max-width: 1400px;
    padding-left: 2rem;
    padding-right: 2rem;
  }
  
  .hero-layout {
    grid-template-columns: 1fr 420px;
    gap: 60px;
    max-width: 1400px;
  }
  
  .hero-main {
    gap: 40px;
    padding-left: 0;
    padding-right: 0;
  }
  
  .hero-title {
    font-size: 4.5rem;
    line-height: 1.05;
    letter-spacing: -0.025em;
    text-align: left;
  }
  
  .hero-subtitle {
    font-size: 1.75rem;
    line-height: 1.3;
    letter-spacing: -0.015em;
    text-align: left;
  }
  
  .hero-description {
    font-size: 1.25rem;
    line-height: 1.7;
    max-width: 90%;
    text-align: left;
  }
  
  .hero-benefits {
    margin-top: 20px;
  }
  
  .hero-cta-section {
    margin-top: 40px;
  }
  
  .hero-cta-button {
    padding: 20px 32px;
    font-size: 1.25rem;
    border-radius: 20px;
    max-width: 400px;
  }
}

/* Very Large Screens (1920px+) */
@media (min-width: 1920px) {
  .hero-content {
    padding: 100px 0;
  }
  
  .hero-content .container {
    max-width: 1600px;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
  
  .hero-layout {
    grid-template-columns: 1fr 480px;
    gap: 80px;
    max-width: 1600px;
  }
  
  .hero-main {
    gap: 48px;
    padding-left: 0;
    padding-right: 0;
  }
  
  .hero-title {
    font-size: 5.5rem;
    line-height: 1.0;
    letter-spacing: -0.03em;
    text-align: left;
  }
  
  .hero-subtitle {
    font-size: 2rem;
    line-height: 1.25;
    letter-spacing: -0.02em;
    text-align: left;
  }
  
  .hero-description {
    font-size: 1.375rem;
    line-height: 1.8;
    max-width: 85%;
    text-align: left;
  }
  
  .hero-benefits {
    margin-top: 24px;
  }
  
  .hero-cta-section {
    margin-top: 48px;
  }
  
  .hero-cta-button {
    padding: 24px 40px;
    font-size: 1.375rem;
    border-radius: 24px;
    max-width: 450px;
  }
}

/* Standard Desktop Enhancement (1280px - 1439px) */
@media (min-width: 1280px) and (max-width: 1439px) {
  .hero-title {
    font-size: 4rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-align: left;
  }
  
  .hero-subtitle {
    font-size: 1.625rem;
    line-height: 1.35;
    letter-spacing: -0.01em;
    text-align: left;
  }
  
  .hero-description {
    font-size: 1.1875rem;
    line-height: 1.65;
    max-width: 95%;
    text-align: left;
  }
  
  .hero-main {
    gap: 36px;
    padding-left: 0;
    padding-right: 0;
  }
  
  .hero-layout {
    gap: 50px;
  }
  
  .hero-cta-button {
    padding: 18px 28px;
    font-size: 1.1875rem;
    border-radius: 18px;
    max-width: 380px;
  }
}

@media (min-width: 769px) {
  .countdown-timer {
    padding: 20px 24px;
    border-radius: 16px;
    max-width: 100%;
    margin: 0 auto;
  }
  
  .countdown-display {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin: 12px 0;
  }
  
  .countdown-unit {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    padding: 8px 6px;
    text-align: center;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: all 0.3s ease;
    min-width: 50px;
    position: relative;
  }
  
  .countdown-unit:hover {
    transform: translateY(-2px) scale(1.01);
    background: rgba(255, 255, 255, 0.18);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }
  
  .countdown-number {
    font-size: 20px;
    font-weight: 800;
    line-height: 1;
    color: white;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    margin-bottom: 2px;
    display: block;
  }
  
  .countdown-label {
    font-size: 8px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    display: block;
  }
  
  .countdown-separator {
    font-size: 14px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    animation: blink 2s infinite;
    line-height: 1;
  }
  
  .urgency-message {
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
    margin-bottom: 12px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    backdrop-filter: blur(10px);
  }
  
  .action-hint {
    font-size: 10px;
    font-weight: 600;
    text-align: center;
    color: rgba(255, 255, 255, 0.95);
    margin-top: 12px;
    padding: 6px 8px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.15);
  }
  
  /* Enhanced animations for desktop */
  .countdown-timer.urgent .countdown-unit {
    animation: unit-urgent 2s infinite;
  }
  
  .countdown-timer.critical .countdown-unit {
    animation: unit-critical 1s infinite;
  }
  
  @keyframes unit-urgent {
    0%, 100% { 
      transform: scale(1);
      box-shadow: 0 0 0 rgba(255, 255, 255, 0.4);
    }
    50% { 
      transform: scale(1.02);
      box-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
    }
  }
  
  @keyframes unit-critical {
    0%, 100% { 
      transform: scale(1);
      box-shadow: 0 0 0 rgba(255, 255, 255, 0.5);
    }
    50% { 
      transform: scale(1.05);
      box-shadow: 0 0 30px rgba(255, 255, 255, 0.8);
    }
  }
  
  .pulse-critical {
    animation: critical-number-pulse 0.5s ease-out infinite;
  }
  
  @keyframes critical-number-pulse {
    0%, 100% { 
      transform: scale(1);
      color: white;
    }
    50% { 
      transform: scale(1.1);
      color: #fbbf24;
      text-shadow: 0 0 15px rgba(251, 191, 36, 0.8);
    }
  }
  
  .final-seconds .countdown-timer {
    animation: final-flash 0.3s ease-out infinite;
  }
  
  @keyframes final-flash {
    0%, 100% { 
      background: linear-gradient(135deg, #991b1b 0%, #dc2626 50%, #991b1b 100%);
    }
    50% { 
      background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #fbbf24 100%);
    }
  }
}

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

/* Mobile Responsive */
@media (max-width: 768px) {
  .countdown-timer {
    padding: 20px 16px;
    margin: 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  
  .countdown-display {
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 4px;
    margin: 16px 0;
    flex-wrap: nowrap;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
  }
  
  .countdown-unit {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    padding: 8px 4px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 42px;
    max-width: 48px;
    flex: 1;
    box-sizing: border-box;
  }
  
  .countdown-number {
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 2px;
    display: block;
  }
  
  .countdown-label {
    font-size: 7px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    display: block;
    word-wrap: break-word;
  }
  
  .countdown-separator {
    font-size: 12px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1;
    flex-shrink: 0;
    margin: 0 1px;
  }
  
  .urgency-message {
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    margin-bottom: 12px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  .action-hint {
    font-size: 11px;
    font-weight: 600;
    text-align: center;
    color: rgba(255, 255, 255, 0.95);
    margin-top: 12px;
    padding: 6px 8px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
}

/* Accessibility - Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .countdown-timer,
  .countdown-timer.urgent,
  .countdown-timer.critical {
    animation: none;
  }
  
  .countdown-box,
  .countdown-box.urgent,
  .countdown-box.critical,
  .countdown-box.flashing {
    animation: none;
  }
  
  .countdown-separator {
    animation: none;
    opacity: 0.7;
  }
  
  .offer-expires-text {
    animation: none;
  }
  
  .countdown-timer::before {
    animation: none;
  }
}

/* ===== EXPERTS SECTION ===== */

.expert-card {
  position: relative;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.expert-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.expert-image-container {
  position: relative;
  transition: all 0.3s ease;
}

.expert-image-container:hover {
  transform: scale(1.05);
  border-color: rgba(59, 130, 246, 0.3);
}

.expert-image-container img {
  transition: all 0.3s ease;
}

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

.expert-placeholder {
  position: relative;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.expert-placeholder:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.expert-card h3 {
  position: relative;
}

.expert-card h3::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #3b82f6, #1d4ed8);
  transition: width 0.3s ease;
}

.expert-card:hover h3::after {
  width: 60px;
}

/* Mobile responsive for experts */
@media (max-width: 768px) {
  .expert-card {
    margin-bottom: 20px;
  }
  
  .expert-image-container,
  .expert-placeholder {
    width: 80px;
    height: 80px;
  }
  
  .expert-placeholder {
    font-size: 18px;
  }
}

/* Testimonials Grid Layout - No slider needed */

/* FAQ Styling */
.faq-icon {
  transition: transform 0.3s ease;
}

.faq-icon.open {
  transform: rotate(45deg);
}

/* Mobile Optimizations */
@media (max-width: 768px) {
  .cta-primary {
    padding: 1rem 1.5rem;
    font-size: 1rem;
    word-wrap: break-word;
  }
  
  .module-card:hover {
    transform: none;
  }
  
  .testimonial-card:hover {
    transform: none;
  }
  
  /* Text content fixes */
  .module-card h3 {
    font-size: 1.125rem;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  .module-card p {
    font-size: 0.9rem;
    line-height: 1.4;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  .testimonial-card blockquote {
    font-size: 1rem;
    line-height: 1.5;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  .testimonial-card .font-bold {
    font-size: 1rem;
    word-wrap: break-word;
  }
  
  .testimonial-card .text-sm {
    font-size: 0.85rem;
    word-wrap: break-word;
  }
  
  /* Disable complex animations on mobile for performance */
  .testimonial-card .absolute.inset-0 {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(255, 255, 255, 0.95);
  }
  
  #testimonials .absolute.inset-0 > div {
    animation: none;
  }
}

/* Additional responsive text fixes */
@media (max-width: 480px) {
  .module-card {
    padding: 1rem;
  }
  
  .module-card h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
  
  .module-card p {
    font-size: 0.85rem;
    line-height: 1.4;
  }
  
  .testimonial-card {
    padding: 1rem;
  }
  
  .testimonial-card blockquote {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }
  
  .expert-card h3 {
    font-size: 1rem;
    word-wrap: break-word;
  }
  
  .expert-card p {
    font-size: 0.8rem;
    line-height: 1.4;
    word-wrap: break-word;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .animate-blob {
    animation: none;
  }
  
  .cta-pulse {
    animation: none;
  }
  
  .urgency-dot {
    animation: none;
  }
  
  /* Disable testimonials animations for accessibility */
  .testimonial-card .absolute.inset-0 {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(255, 255, 255, 0.95);
  }
  
  #testimonials .absolute.inset-0 > div {
    animation: none;
  }
}

/* Sticky CTA */
#sticky-cta {
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

#sticky-cta.show {
  transform: translateY(0);
}

/* ===== GLOBAL RESPONSIVE TEXT UTILITIES ===== */

/* Prevent horizontal overflow */
* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Text responsiveness utilities */
.text-responsive {
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
  max-width: 100%;
}

/* Section padding adjustments for mobile */
@media (max-width: 768px) {
  section {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .py-12 {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  
  .py-16 {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
  
  .py-20 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  
  .py-24 {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }
  
  /* Text size adjustments */
  .text-2xl {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .text-3xl {
    font-size: 1.75rem;
    line-height: 1.25;
  }
  
  .text-4xl {
    font-size: 2rem;
    line-height: 1.2;
  }
  
  .text-lg {
    font-size: 1rem;
    line-height: 1.5;
  }
  
  .text-xl {
    font-size: 1.125rem;
    line-height: 1.4;
  }
  
  /* Margin and padding fixes */
  .mb-4 {
    margin-bottom: 0.75rem;
  }
  
  .mb-6 {
    margin-bottom: 1rem;
  }
  
  .mb-8 {
    margin-bottom: 1.5rem;
  }
  
  .mb-12 {
    margin-bottom: 2rem;
  }
  
  /* Grid adjustments */
  .grid {
    width: 100%;
  }
  
  .md\\:grid-cols-2 {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .md\\:grid-cols-3 {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .md\\:grid-cols-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  /* Flex adjustments */
  .space-y-3 > * + * {
    margin-top: 0.75rem;
  }
  
  .space-y-4 > * + * {
    margin-top: 1rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
  
  .text-2xl {
    font-size: 1.25rem;
  }
  
  .text-3xl {
    font-size: 1.5rem;
  }
  
  .text-4xl {
    font-size: 1.75rem;
  }
  
  .md\\:grid-cols-4 {
    grid-template-columns: 1fr;
  }
  
  /* Button adjustments */
  .hero-cta-button {
    font-size: 1rem;
    padding: 12px 20px;
  }
  
  .cta-primary {
    font-size: 0.9rem;
    padding: 0.75rem 1.25rem;
  }
}

/* ===== SPECIFIC COMPONENT FIXES ===== */

/* FAQ Section */
@media (max-width: 768px) {
  .faq-container button {
    font-size: 1rem;
    line-height: 1.4;
    word-wrap: break-word;
    text-align: left;
    padding: 1rem;
  }
  
  .faq-container div[id^="faq-answer-"] {
    font-size: 0.9rem;
    line-height: 1.5;
    word-wrap: break-word;
    padding: 1rem;
    padding-top: 0;
  }
}

/* Benefits and lists */
@media (max-width: 768px) {
  .benefit-check span {
    font-size: 0.9rem;
    line-height: 1.4;
    word-wrap: break-word;
  }
  
  .space-y-3 li,
  .space-y-4 li {
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
}

/* Header navigation fixes */
@media (max-width: 768px) {
  header .container {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  
  header img {
    height: 2rem;
  }
  
  header .flex.items-center {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
}

/* Footer fixes */
@media (max-width: 768px) {
  footer .font-bold {
    font-size: 1.25rem;
    word-wrap: break-word;
  }
  
  footer .text-sm {
    font-size: 0.8rem;
    word-wrap: break-word;
    text-align: center;
  }
}

/* ===== FLOATING SCROLL ENROLL BUTTON ===== */

.floating-enroll-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(100px) scale(0.8);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  pointer-events: none;
}

.floating-enroll-btn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.floating-btn-link {
  display: block;
  position: relative;
  background: linear-gradient(135deg, #059669 0%, #10b981 50%, #059669 100%);
  border-radius: 50px;
  padding: 0;
  text-decoration: none;
  color: white;
  box-shadow: 
    0 8px 25px rgba(5, 150, 105, 0.4),
    0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.floating-btn-link:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 
    0 15px 35px rgba(5, 150, 105, 0.5),
    0 8px 25px rgba(0, 0, 0, 0.15);
  background: linear-gradient(135deg, #047857 0%, #059669 50%, #047857 100%);
}

.floating-btn-link:active {
  transform: translateY(-2px) scale(1.02);
}

.floating-btn-content {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  position: relative;
  z-index: 2;
}

.floating-btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.floating-btn-link:hover .floating-btn-icon {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

.floating-btn-icon svg {
  transition: all 0.3s ease;
}

.floating-btn-text {
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  letter-spacing: 0.3px;
}

.floating-btn-pulse {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50px;
  border: 3px solid rgba(5, 150, 105, 0.6);
  animation: floating-pulse 2s infinite;
  pointer-events: none;
}

@keyframes floating-pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

/* Floating button shine effect */
.floating-btn-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
  z-index: 1;
}

.floating-btn-link:hover::before {
  left: 100%;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .floating-enroll-btn {
    bottom: 100px; /* Above enhanced sticky CTA */
    right: 20px;
  }
  
  .floating-btn-content {
    padding: 14px 20px;
    gap: 10px;
  }
  
  .floating-btn-text {
    font-size: 14px;
  }
  
  .floating-btn-icon {
    width: 20px;
    height: 20px;
  }
  
  .floating-btn-icon svg {
    width: 16px;
    height: 16px;
  }
}

@media (max-width: 480px) {
  .floating-enroll-btn {
    bottom: 95px;
    right: 15px;
  }
  
  .floating-btn-content {
    padding: 12px 16px;
    gap: 8px;
  }
  
  .floating-btn-text {
    font-size: 13px;
    font-weight: 600;
  }
  
  .floating-btn-icon {
    width: 18px;
    height: 18px;
  }
  
  .floating-btn-icon svg {
    width: 14px;
    height: 14px;
  }
}

/* Extra small screens - compact button */
@media (max-width: 360px) {
  .floating-enroll-btn {
    bottom: 90px;
    right: 10px;
  }
  
  .floating-btn-content {
    padding: 10px 14px;
    gap: 6px;
  }
  
  .floating-btn-text {
    font-size: 12px;
    font-weight: 600;
  }
  
  .floating-btn-icon {
    width: 16px;
    height: 16px;
  }
  
  .floating-btn-icon svg {
    width: 12px;
    height: 12px;
  }
}

/* Accessibility - Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .floating-enroll-btn {
    transition: opacity 0.2s ease, visibility 0.2s ease;
  }
  
  .floating-btn-pulse {
    animation: none;
  }
  
  .floating-btn-link {
    transition: transform 0.1s ease;
  }
  
  .floating-btn-link:hover {
    transform: none;
  }
  
  .floating-btn-icon svg,
  .floating-btn-icon {
    transition: none;
  }
  
  .floating-btn-link:hover .floating-btn-icon {
    transform: none;
  }
}

/* RTL support */
[dir="rtl"] .floating-enroll-btn {
  right: auto;
  left: 25px;
}

[dir="rtl"] .floating-btn-content {
  flex-direction: row-reverse;
}

@media (max-width: 768px) {
  [dir="rtl"] .floating-enroll-btn {
    left: 20px;
  }
}

@media (max-width: 480px) {
  [dir="rtl"] .floating-enroll-btn {
    left: 15px;
  }
}

@media (max-width: 360px) {
  [dir="rtl"] .floating-enroll-btn {
    left: 10px;
  }
}

/* ========== ENHANCED STICKY BOTTOM CTA BAR ========== */
.sticky-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #1e40af 100%);
  color: white;
  box-shadow: 
    0 -8px 25px rgba(30, 64, 175, 0.3),
    0 -4px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0;
  visibility: hidden;
}

.sticky-cta-bar.show {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.sticky-cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  gap: 16px;
  position: relative;
  overflow: hidden;
}

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

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

.sticky-cta-message {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
}

.sticky-discount-badge {
  background: #ef4444;
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  animation: pulse-badge 2s infinite;
  flex-shrink: 0;
}

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

.sticky-cta-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.sticky-price-info {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.sticky-original-price {
  text-decoration: line-through;
  opacity: 0.7;
  font-size: 14px;
}

.sticky-current-price {
  font-size: 18px;
  font-weight: 700;
  color: #fbbf24;
}

.sticky-urgency {
  font-size: 11px;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.sticky-cta-button {
  background: #10b981;
  color: white;
  padding: 12px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.sticky-cta-button:hover {
  background: #059669;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.sticky-cta-button:active {
  transform: translateY(0);
}

.sticky-cta-button-text {
  font-weight: 600;
}

.sticky-cta-arrow {
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.sticky-cta-button:hover .sticky-cta-arrow {
  transform: translateX(4px);
}

.sticky-progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.2);
  overflow: hidden;
}

.sticky-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #fbbf24, #f59e0b, #fbbf24);
  width: 0%;
  transition: width 0.3s ease;
  animation: progress-shimmer 2s infinite;
}

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

/* Mobile optimizations */
@media (max-width: 768px) {
  .sticky-cta-content {
    padding: 14px 16px;
    gap: 12px;
  }
  
  .sticky-cta-message {
    gap: 10px;
  }
  
  .sticky-discount-badge {
    padding: 4px 8px;
    font-size: 11px;
  }
  
  .sticky-current-price {
    font-size: 16px;
  }
  
  .sticky-cta-button {
    padding: 10px 16px;
    font-size: 13px;
    gap: 6px;
  }
  
  .sticky-cta-arrow {
    width: 16px;
    height: 16px;
  }
}

@media (max-width: 480px) {
  .sticky-cta-content {
    padding: 12px 14px;
    gap: 10px;
  }
  
  .sticky-cta-message {
    gap: 8px;
  }
  
  .sticky-discount-badge {
    padding: 3px 6px;
    font-size: 10px;
  }
  
  .sticky-original-price {
    font-size: 12px;
  }
  
  .sticky-current-price {
    font-size: 14px;
  }
  
  .sticky-urgency {
    font-size: 10px;
  }
  
  .sticky-cta-button {
    padding: 8px 12px;
    font-size: 12px;
    border-radius: 20px;
  }
  
  .sticky-cta-arrow {
    width: 14px;
    height: 14px;
  }
}

/* RTL Support */
[dir="rtl"] .sticky-cta-content {
  flex-direction: row-reverse;
}

[dir="rtl"] .sticky-cta-message {
  flex-direction: row-reverse;
}

[dir="rtl"] .sticky-price-info {
  flex-direction: row-reverse;
}

[dir="rtl"] .sticky-cta-button {
  flex-direction: row-reverse;
}

[dir="rtl"] .sticky-cta-button:hover .sticky-cta-arrow {
  transform: translateX(-4px);
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .sticky-cta-bar {
    transition: opacity 0.2s ease, visibility 0.2s ease;
  }
  
  .sticky-cta-content::before,
  .sticky-progress-fill {
    animation: none;
  }
  
  .sticky-discount-badge {
    animation: none;
  }
  
  .sticky-cta-button:hover {
    transform: none;
  }
  
  .sticky-cta-button:hover .sticky-cta-arrow {
    transform: none;
  }
}
