
/**
 * VoucherMagnet - Ultra-Modern Single Page Landing
 * Stunning, conversion-focused design with incredible animations
 */

/* Modern Enhanced Variables */
:root {
  /* Gradient Collection */
  --hero-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  --cta-gradient: linear-gradient(135deg, #ff6b6b 0%, #feca57 100%);
  --feature-gradient: linear-gradient(135deg, #48cae4 0%, #023e8a 100%);
  --success-gradient: linear-gradient(135deg, #56ab2f 0%, #a8e6cf 100%);
  --premium-gradient: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
  
  /* Advanced Colors */
  --primary-500: #667eea;
  --primary-600: #5a67d8;
  --primary-700: #4c51bf;
  
  --accent-500: #ff6b6b;
  --accent-600: #ff5252;
  
  --success-500: #56ab2f;
  --warning-500: #feca57;
  --info-500: #48cae4;
  
  /* Typography Scale */
  --font-display: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Enhanced Spacing */
  --section-padding: clamp(4rem, 8vw, 8rem);
  --container-padding: clamp(1rem, 4vw, 2rem);
}

/* Landing Page Base */
.landing .single-page-landing {
  width: 100%;
  background: linear-gradient(180deg, #f8fafc 0%, #e2e8f0 100%);
  font-family: var(--font-body);
  overflow-x: hidden;
}

/* Hero Section - Stunning Design */
.landing .hero-section {
  background: var(--hero-gradient);
  background-size: 400% 400%;
  animation: gradientFlow 15s ease infinite;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

@keyframes gradientFlow {
  0%, 100% { background-position: 0% 50%; }
  25% { background-position: 100% 50%; }
  50% { background-position: 100% 100%; }
  75% { background-position: 0% 100%; }
}

.landing .hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255,255,255,0.15) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(255,255,255,0.1) 0%, transparent 50%);
  animation: floatBg 20s ease-in-out infinite;
}

@keyframes floatBg {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.1) rotate(5deg); }
}

.landing .hero-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(180deg, transparent 0%, rgba(248,250,252,0.8) 100%);
}

.landing .hero-section .container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(2rem, 6vw, 4rem);
  align-items: center;
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 10px 0 0 auto;
  padding: 0 var(--container-padding);
}

.landing .hero-content {
  animation: slideInLeft 1s ease-out;
}

.landing .hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: white;
  text-shadow: 3px 3px 12px rgba(0,0,0,0.6), 0 0 20px rgba(0,0,0,0.4);
  letter-spacing: -0.02em;
  text-stroke: 2px rgba(0,0,0,0.3);
  -webkit-text-stroke: 1px rgba(0,0,0,0.3);
}

.landing .hero-headline .highlight {
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  color: #000000 !important;
  -webkit-text-fill-color: #000000 !important;
  padding: 0.2em 0.4em;
  border-radius: 0.3em;
  box-shadow: 
    0 4px 20px rgba(0,0,0,0.5),
    inset 0 2px 0 rgba(255,255,255,0.3);
  border: 3px solid #000000;
  font-weight: 900;
  text-shadow: none;
  -webkit-text-stroke: none;
  display: inline-block;
  transform: rotate(-2deg);
  animation: highlightPulse 2s ease-in-out infinite alternate;
}

@keyframes glow {
  from { filter: brightness(1); }
  to { filter: brightness(1.2); }
}

@keyframes highlightPulse {
  0% { 
    transform: rotate(-2deg) scale(1);
    box-shadow: 
      0 4px 20px rgba(0,0,0,0.5),
      inset 0 2px 0 rgba(255,255,255,0.3);
  }
  50% { 
    transform: rotate(-1deg) scale(1.05);
    box-shadow: 
      0 8px 30px rgba(0,0,0,0.7),
      inset 0 2px 0 rgba(255,255,255,0.5);
  }
  100% { 
    transform: rotate(-2deg) scale(1);
    box-shadow: 
      0 4px 20px rgba(0,0,0,0.5),
      inset 0 2px 0 rgba(255,255,255,0.3);
  }
}

.landing .hero-subheading {
  font-size: clamp(1.125rem, 3vw, 1.5rem);
  line-height: 1.6;
  margin-bottom: 2.5rem;
  color: rgba(255,255,255,0.9);
  font-weight: 400;
}

.landing .hero-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.landing .hero-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
  animation: fadeInUp 1s ease-out;
}

.landing .hero-feature:nth-child(2) { animation-delay: 0.2s; }
.landing .hero-feature:nth-child(3) { animation-delay: 0.4s; }

.landing .hero-feature i {
  color: #feca57;
  font-size: 1.25rem;
  animation: bounce 2s infinite;
}

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

.landing .btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 2.5rem;
  background: var(--cta-gradient);
  color: white;
  border: none;
  border-radius: 50px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 30px rgba(255,107,107,0.4);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.landing .btn-hero::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.8s;
}

.landing .btn-hero:hover::before {
  left: 100%;
}

.landing .btn-hero:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 40px rgba(255,107,107,0.6);
}

.landing .btn-hero i {
  font-size: 1.5rem;
  animation: pulse 2s infinite;
}

.landing .hero-image {
  text-align: center;
  animation: slideInRight 1s ease-out;
}

.landing .hero-image img {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 2rem;
  box-shadow: 0 25px 60px rgba(0,0,0,0.2);
  transition: transform 0.6s ease;
}

.landing .hero-image img:hover {
  transform: scale(1.05) rotate(-2deg);
}

/* Floating Elements */
.landing .floating-element {
  position: absolute;
  animation: float 6s ease-in-out infinite;
}

.landing .floating-element:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.landing .floating-element:nth-child(2) {
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.landing .floating-element:nth-child(3) {
  bottom: 30%;
  left: 5%;
  animation-delay: 4s;
}

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

/* Trust Indicators */
.landing .trust-indicators {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border-radius: 1rem;
  padding: 1.5rem;
  margin-top: 2rem;
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 1rem;
  border: 1px solid rgba(255,255,255,0.2);
}

.landing .trust-item {
  text-align: center;
  color: rgba(255,255,255,0.9);
}

.landing .trust-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: #feca57;
  display: block;
}

.landing .trust-label {
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* USP Section - Modern Cards */
.landing .usp-section {
  padding: var(--section-padding) 0;
  background: white;
  position: relative;
}

.landing .usp-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 25% 25%, rgba(102, 126, 234, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(255, 107, 107, 0.05) 0%, transparent 50%);
}

.landing .section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
  position: relative;
  z-index: 2;
}

.landing .section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: #1a202c;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.landing .section-subtitle {
  font-size: 1.25rem;
  color: #4a5568;
  line-height: 1.6;
}

.landing .usp-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
  position: relative;
  z-index: 2;
}

.landing .usp-item {
  background: white;
  padding: 2.5rem;
  border-radius: 2rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(226, 232, 240, 0.8);
  position: relative;
  overflow: hidden;
}

.landing .usp-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--feature-gradient);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.landing .usp-item:hover::before {
  transform: scaleX(1);
}

.landing .usp-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.landing .usp-icon {
  width: 100px;
  height: 100px;
  background: var(--feature-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2.5rem;
  color: white;
  box-shadow: 0 10px 30px rgba(72, 202, 228, 0.3);
  transition: all 0.3s ease;
}

.landing .usp-item:hover .usp-icon {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 15px 40px rgba(72, 202, 228, 0.5);
}

.landing .usp-item h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 1rem;
}

.landing .usp-item p {
  color: #4a5568;
  line-height: 1.6;
  margin: 0;
  font-size: 1rem;
}

/* Coupon Section - Premium Design */
.landing .coupon-section {
  padding: var(--section-padding) 0;
  background: var(--premium-gradient);
  position: relative;
  overflow: hidden;
}

.landing .coupon-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: 
    radial-gradient(circle, rgba(255,255,255,0.1) 2px, transparent 2px);
  background-size: 50px 50px;
  animation: backgroundMove 20s linear infinite;
}

@keyframes backgroundMove {
  0% { transform: translate(0, 0) rotate(0deg); }
  100% { transform: translate(50px, 50px) rotate(360deg); }
}

.landing .coupon-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
  position: relative;
  z-index: 2;
}

.landing .coupon-display {
  background: white;
  border-radius: 2rem;
  padding: 3rem;
  box-shadow: 0 25px 80px rgba(0,0,0,0.15);
  border: 1px solid rgba(255,255,255,0.8);
  position: relative;
  overflow: hidden;
  animation: slideInUp 1s ease-out;
}

.landing .coupon-display::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--cta-gradient);
}

.landing .coupon-label {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: #4a5568;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
}

.landing .coupon-code-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.landing .coupon-code {
  font-family: 'Courier New', monospace;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 900;
  color: #ff6b6b;
  background: linear-gradient(135deg, #fff5f5 0%, #fed7d7 100%);
  padding: 1rem 2rem;
  border-radius: 1rem;
  border: 3px dashed #ff6b6b;
  letter-spacing: 0.2em;
  animation: pulse 2s infinite;
  box-shadow: 0 5px 20px rgba(255,107,107,0.2);
}

.landing .copy-button {
  background: var(--success-gradient);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 1rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 5px 20px rgba(86,171,47,0.3);
}

.landing .copy-button:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 30px rgba(86,171,47,0.4);
}

.landing .coupon-instructions {
  color: #4a5568;
  line-height: 1.6;
  text-align: center;
  font-size: 1rem;
  margin-top: 1.5rem;
}

/* Urgency Timer - Eye-catching */
.landing .urgency-timer {
  background: var(--cta-gradient);
  color: white;
  padding: 1.5rem;
  border-radius: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
  box-shadow: 0 10px 30px rgba(255,107,107,0.4);
  animation: urgencyPulse 3s infinite;
}

@keyframes urgencyPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 10px 30px rgba(255,107,107,0.4); }
  50% { transform: scale(1.02); box-shadow: 0 15px 40px rgba(255,107,107,0.6); }
}

.landing .timer-icon {
  font-size: 2rem;
  animation: rotate 4s linear infinite;
}

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

.landing .timer-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.landing .countdown-display {
  font-family: 'Courier New', monospace;
  font-size: 1.75rem;
  font-weight: 900;
  background: rgba(255,255,255,0.2);
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.3);
}

/* FAQ Section - Modern Design */
.landing .faq-section {
  padding: var(--section-padding) 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
}

.landing .faq-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(102, 126, 234, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 107, 107, 0.03) 0%, transparent 50%);
}

.landing .faq-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
  position: relative;
  z-index: 2;
}

.landing .faq-item {
  background: white;
  border-radius: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  border: 1px solid rgba(226, 232, 240, 0.8);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.landing .faq-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.landing .faq-question {
  width: 100%;
  padding: 2rem;
  background: white;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a202c;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.landing .faq-question::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--primary-gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.landing .faq-question:hover::before {
  opacity: 0.05;
}

.landing .faq-question.faq-active {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(79, 172, 254, 0.08) 100%);
  color: var(--primary-500);
}

.landing .faq-question.faq-active::before {
  opacity: 0.1;
}

.landing .faq-question h3 {
  margin: 0;
  position: relative;
  z-index: 2;
}

.landing .faq-question i {
  font-size: 1.5rem;
  color: var(--primary-500);
  transition: transform 0.3s ease;
  position: relative;
  z-index: 2;
}

.landing .faq-answer {
  padding: 0 2rem 2rem;
  background: #f8fafc;
  color: #4a5568;
  font-size: 1.125rem;
  line-height: 1.7;
  transition: all 0.3s ease;
  border-top: 1px solid rgba(226, 232, 240, 0.5);
}

.landing .faq-answer p {
  margin: 0;
  font-weight: 500;
}

/* Final CTA Section - Premium Design */
.landing .secondary-cta {
  padding: var(--section-padding) 0;
  background: linear-gradient(135deg, #1a202c 0%, #2d3748 50%, #4a5568 100%);
  background-size: 400% 400%;
  animation: gradientFlow 20s ease infinite;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.landing .secondary-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 25% 25%, rgba(255,255,255,0.1) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
    linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.02) 50%, transparent 70%);
  animation: float 15s ease-in-out infinite;
}

.landing .cta-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
  position: relative;
  z-index: 2;
}

.landing .secondary-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  color: white;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
  background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.landing .secondary-cta p {
  color: #a0aec0;
  margin-bottom: 2.5rem;
  font-size: 1.25rem;
  line-height: 1.6;
  font-weight: 500;
}

.landing .btn-large {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 3rem;
  background: var(--cta-gradient);
  color: white;
  border: none;
  border-radius: 50px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.375rem;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 15px 40px rgba(255,107,107,0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  min-width: 280px;
}

.landing .btn-large::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.8s;
}

.landing .btn-large:hover::before {
  left: 100%;
}

.landing .btn-large:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 25px 60px rgba(255,107,107,0.6);
}

.landing .btn-large i {
  font-size: 1.5rem;
  animation: pulse 2s infinite;
}

/* Affiliate Disclosure - Clean Design */
.landing .affiliate-disclosure {
  background: #f8fafc;
  padding: 2rem;
  margin: 0;
  text-align: center;
  border-top: 1px solid #e2e8f0;
}

.landing .affiliate-disclosure p {
  color: #718096;
  font-size: 0.875rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
  font-weight: 500;
}

/* Trust Section Improvements */
.landing .trust-section {
  padding: var(--section-padding) 0;
  background: white;
  position: relative;
}

.landing .trust-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 30%, rgba(102, 126, 234, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(72, 202, 228, 0.03) 0%, transparent 50%);
}

.landing .trust-badges {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 var(--container-padding);
  position: relative;
  z-index: 2;
}

.landing .trust-badge {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  border-radius: 1.5rem;
  border: 1px solid rgba(226, 232, 240, 0.8);
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.landing .trust-badge:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.landing .trust-badge i {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.landing .trust-badge div:first-of-type {
  font-weight: 700;
  font-size: 1.25rem;
  color: #1a202c;
  margin-bottom: 0.5rem;
}

.landing .trust-badge div:last-of-type {
  color: #4a5568;
  font-size: 0.9rem;
  font-weight: 500;
}

.landing .testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
  position: relative;
  z-index: 2;
}

.landing .testimonial {
  background: white;
  padding: 2.5rem;
  border-radius: 1.5rem;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  border: 1px solid rgba(226, 232, 240, 0.8);
  transition: all 0.3s ease;
}

.landing .testimonial:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.landing .testimonial p {
  color: #4a5568;
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.landing .testimonial-author strong {
  color: #1a202c;
  font-weight: 700;
  font-size: 1.125rem;
}

.landing .testimonial .stars {
  color: #feca57;
  font-size: 1.25rem;
  margin-top: 0.5rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .landing .hero-section .container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .landing .trust-indicators {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .landing .trust-badges {
    grid-template-columns: 1fr;
  }
  
  .landing .testimonials {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .landing .hero-section {
    min-height: auto;
    padding: 4rem 0;
  }
  
  .landing .hero-features {
    grid-template-columns: 1fr;
  }
  
  .landing .usp-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .landing .coupon-display {
    padding: 2rem;
  }
  
  .landing .coupon-code-wrapper {
    flex-direction: column;
  }
  
  .landing .urgency-timer {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .landing .hero-section .container,
  .landing .usp-container,
  .landing .coupon-container {
    padding: 0 1rem;
  }
  
  .landing .usp-item {
    padding: 1.5rem;
  }
  
  .landing .coupon-display {
    padding: 1.5rem;
  }
}

/* Animation Utilities */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

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

/* Performance Optimizations */
.landing * {
  will-change: auto;
}

.landing .hero-section,
.landing .usp-section,
.landing .coupon-section {
  contain: layout style paint;
}
