/* ChatVanta Custom Styles - Professional Netflix Brand */

:root {
  /* Colors */
  --netflix-red: #e50914;
  --netflix-red-dark: #b8070f;
  --netflix-red-light: #ff4757;
  --netflix-red-alpha-05: rgba(229, 9, 20, 0.05);
  --netflix-red-alpha-1: rgba(229, 9, 20, 0.1);
  --netflix-red-alpha-15: rgba(229, 9, 20, 0.15);
  --netflix-red-alpha-2: rgba(229, 9, 20, 0.2);
  --netflix-red-alpha-3: rgba(229, 9, 20, 0.3);
  --netflix-red-alpha-4: rgba(229, 9, 20, 0.4);
  
  /* Glass Effects */
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-blur: blur(10px);
  --glass-blur-heavy: blur(20px);
  --glass-blur-light: blur(15px);
  
  /* Shadows */
  --shadow-sm: 0 4px 15px var(--netflix-red-alpha-3);
  --shadow-md: 0 8px 25px var(--netflix-red-alpha-4);
  --shadow-lg: 0 12px 35px rgba(229, 9, 20, 0.5);
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
}

/* ===== CHATELARA PROMO SECTION ===== */

/* Enhanced ChatElara Promo Section - Brand Aligned */
.chatelara-promo-section {
  background: 
    var(--bg-primary),
    radial-gradient(ellipse at 25% 25%, rgba(229, 9, 20, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 75% 75%, rgba(229, 9, 20, 0.05) 0%, transparent 50%),
    linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
  color: var(--white);
  backdrop-filter: blur(15px);
}

.chatelara-promo-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.03) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(229, 9, 20, 0.06) 0%, transparent 50%),
    linear-gradient(135deg, rgba(229, 9, 20, 0.04) 0%, transparent 60%);
  pointer-events: none;
  animation: brandShimmer 25s ease-in-out infinite;
}

.chatelara-promo-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.06) 1px, transparent 0);
  background-size: 50px 50px;
  pointer-events: none;
  animation: float 30s linear infinite;
  opacity: 0.4;
}

@keyframes brandShimmer {
  0%, 100% {
    opacity: 1;
    transform: translateX(0) translateY(0) scale(1);
  }
  33% {
    opacity: 0.8;
    transform: translateX(15px) translateY(-10px) scale(1.02);
  }
  66% {
    opacity: 0.9;
    transform: translateX(-10px) translateY(15px) scale(0.98);
  }
}

.promo-content {
  position: relative;
  z-index: 1;
}

/* Enhanced Main Content */
.promo-main {
  text-align: center;
  margin-bottom: 5rem;
  position: relative;
  z-index: 2;
}

.promo-main h2 {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 2.5rem;
  color: var(--white);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.brand-highlight {
  background: linear-gradient(135deg, var(--white) 0%, #f8f8f8 50%, var(--white) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900;
  text-shadow: 0 2px 15px rgba(255, 255, 255, 0.4);
  position: relative;
}

.brand-highlight::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 2px;
  opacity: 0.8;
}

.promo-cta {
  margin-bottom: 3rem;
}

/* Enhanced CTA Button */
.promo-button {
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.2);
  padding: 1.25rem 3.5rem;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.promo-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.6s ease;
}

.promo-button:hover {
  background: linear-gradient(135deg, var(--netflix-red) 0%, var(--primary-red-dark) 100%);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 
    0 15px 40px rgba(229, 9, 20, 0.4),
    0 8px 16px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.promo-button:hover::before {
  left: 100%;
}

.promo-note {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.social-icons {
  display: inline-flex;
  align-items: center;
  margin: 0 0.25rem;
}

.social-icons i {
  font-size: 1rem;
  color: white;
}

/* Enhanced Visual Elements */
.promo-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  margin-top: 3rem;
  position: relative;
  z-index: 2;
}

.chat-bubble-demo {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.chat-icon {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.chat-icon:hover {
  transform: scale(1.1) rotate(5deg);
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
}

.chat-connector {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.2));
  position: relative;
}

.chat-connector::after {
  content: '';
  position: absolute;
  right: -4px;
  top: -3px;
  width: 0;
  height: 0;
  border-left: 8px solid rgba(255, 255, 255, 0.6);
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
}

.ai-avatar {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 16px;
  padding: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.ai-avatar:hover {
  transform: scale(1.1) rotate(-5deg);
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
}

/* Enhanced Features Section */
.promo-features {
  text-align: center;
}

.promo-features h3 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 4rem;
  color: var(--white);
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.features-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.feature-item {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
}

.feature-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(229, 9, 20, 0.1) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-item:hover {
  transform: translateY(-8px) scale(1.02);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.3),
    0 8px 16px rgba(229, 9, 20, 0.2);
}

.feature-item:hover::before {
  opacity: 1;
}

.feature-icon {
  margin: 0 auto 2rem;
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.feature-item:hover .feature-icon {
  transform: translateY(-5px) scale(1.1);
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.feature-item h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: white;
}

.feature-item p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin: 0;
}

/* Mobile First - Consolidated Media Queries */
@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .promo-main h2 { font-size: 2.5rem; }
  .section-padding { padding: 60px 0; }
  .container { padding: 0 20px; }
  .grid-responsive { grid-template-columns: 1fr; }
  .btn { padding: 12px 20px; font-size: 14px; }
  
  .chatelara-promo-section {
    padding: 4rem 0;
  }
  
  .promo-features h3 {
    font-size: 1.5rem;
  }
  
  .feature-item {
    padding: 1.5rem 0.5rem;
  }
  
  .feature-icon {
    width: 60px;
    height: 60px;
  }
  
  .feature-icon svg {
    width: 36px;
    height: 36px;
  }
}

@media (max-width: 768px) {
  .hero-title { font-size: 2.5rem; }
  .promo-main h2 { font-size: 3rem; }
  .section-padding { padding: 80px 0; }
  .grid-responsive { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
  .sidebar { order: -1; }
  
  .chatelara-promo-section {
    padding: 6rem 0;
  }
  
  .promo-main {
    margin-bottom: 3rem;
  }
  
  .promo-visual {
    flex-direction: column;
    gap: 2rem;
  }
  
  .chat-connector {
    width: 2px;
    height: 40px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.2));
  }
  
  .chat-connector::after {
    right: -3px;
    bottom: -4px;
    top: auto;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 8px solid rgba(255, 255, 255, 0.6);
    border-bottom: none;
  }
  
  .features-row {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .feature-item {
    padding: 2rem 1rem;
  }
  
  .promo-button {
    padding: 0.875rem 2rem;
    font-size: 1rem;
  }
}

@media (max-width: 1024px) {
  .grid-responsive { grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); }
  .container { max-width: 100%; }
}

/* Consolidated Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.animate-fade-in { animation: fadeInUp 0.6s ease-out; }
.animate-pulse { animation: pulse 2s infinite; }
.animate-shimmer { animation: shimmer 2s infinite; }

.promo-main,
.promo-features {
  animation: fadeInUp 0.8s ease-out;
}

.feature-item {
  animation: fadeInUp 0.8s ease-out;
  animation-fill-mode: both;
}

.feature-item:nth-child(1) { animation-delay: 0.1s; }
.feature-item:nth-child(2) { animation-delay: 0.2s; }
.feature-item:nth-child(3) { animation-delay: 0.3s; }

/* Container and Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Simple Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 16px;
    padding: 60px 0;
    margin: 40px 0;
}

.newsletter-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.newsletter-content {
    text-align: left;
}

.newsletter-icon {
    margin-bottom: 20px;
}

.newsletter-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #FFFFFF;
}

.gradient-text {
    background: linear-gradient(135deg, #E50914, #3B82F6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.newsletter-content p {
    font-size: 1.1rem;
    color: #B0B0B0;
    line-height: 1.6;
}

.newsletter-form-wrapper {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
}

.form-group {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.newsletter-form input {
    flex: 1;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #FFFFFF;
    font-size: 16px;
    transition: all 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #E50914;
    background: rgba(255, 255, 255, 0.08);
}

.newsletter-btn {
    padding: 16px 24px;
    background: linear-gradient(135deg, #E50914, #B8070F);
    border: none;
    border-radius: 12px;
    color: white;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(229, 9, 20, 0.3);
}

.newsletter-privacy {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #888;
    justify-content: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .newsletter-container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .newsletter-content {
        text-align: center;
    }
    
    .form-group {
        flex-direction: column;
        gap: 16px;
    }
    
    .newsletter-content h3 {
        font-size: 1.75rem;
    }
    
    .newsletter-form-wrapper {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .newsletter-section {
        margin: 20px 0;
        padding: 40px 0;
    }
    
    .newsletter-container {
        padding: 0 16px;
    }
    
    .newsletter-content h3 {
        font-size: 1.5rem;
    }
    
    .newsletter-form-wrapper {
        padding: 20px;
    }
}

/* ===== FOOTER STYLES ===== */

.site-footer {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
  color: white;
  position: relative;
  overflow: hidden;
  margin-top: auto;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(229, 9, 20, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.08) 0%, transparent 50%);
  pointer-events: none;
}



/* Legacy Newsletter Section */
.newsletter-section.legacy {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  padding: 3rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1;
}

.newsletter-content {
  text-align: center;
  margin-bottom: 2rem;
}

.newsletter-content h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #e5e5e5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.newsletter-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  margin: 0;
}

.newsletter-form {
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-form .form-group {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.newsletter-form input[type="email"] {
  flex: 1;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: white;
  font-size: 1rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.newsletter-form input[type="email"]:focus {
  outline: none;
  border-color: #e50914;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 3px rgba(229, 9, 20, 0.2);
}

.newsletter-form input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.newsletter-form .btn {
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #e50914 0%, #b8070f 100%);
  color: white;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.newsletter-form .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(229, 9, 20, 0.4);
  background: linear-gradient(135deg, #ff1a2b 0%, #e50914 100%);
}

.form-message {
  text-align: center;
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

/* Footer Content */
.footer-content {
  padding: 4rem 0 2rem;
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-column h4 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: white;
  position: relative;
}

.footer-column h4::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, #e50914, #3b82f6);
  border-radius: 1px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 0.75rem;
}

.footer-column ul li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  position: relative;
}

.footer-column ul li a:hover {
  color: white;
  transform: translateX(5px);
}

.footer-column ul li a::before {
  content: '';
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 1px;
  background: #e50914;
  transition: width 0.3s ease;
}

.footer-column ul li a:hover::before {
  width: 10px;
}

/* Footer Logo */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.footer-logo span {
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff 0%, #e5e5e5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-column p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.social-links a:hover {
  background: rgba(229, 9, 20, 0.2);
  border-color: #e50914;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(229, 9, 20, 0.3);
}

.social-links a i {
  font-size: 1.125rem;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem 0;
  position: relative;
  z-index: 1;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  font-size: 0.875rem;
}

.footer-legal {
  display: flex;
  gap: 2rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: white;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  
  .newsletter-form .form-group {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .newsletter-section {
    padding: 2rem 0;
  }
  
  .newsletter-content h3 {
    font-size: 1.5rem;
  }
  
  .footer-content {
    padding: 3rem 0 1.5rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1rem;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    padding: 0 1rem;
  }
  
  .footer-legal {
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .newsletter-form .form-group {
    gap: 0.75rem;
  }
  
  .newsletter-form .btn {
    padding: 0.875rem 1.5rem;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .footer-legal {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* Professional Typography */
body {
  font-family: var(--font-body);
  line-height: 1.6;
  color: var(--white);
  background: var(--bg-primary);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--white);
}

/* Professional Navigation */
.site-header {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(229, 9, 20, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  padding: 1rem 0;
}

.navbar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Navigation Styles */
.navbar-brand .logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--white);
    font-weight: 600;
    font-size: 1.5rem;
}

.navbar-brand .logo:hover {
    color: var(--netflix-red);
}

.logo-text {
    background: linear-gradient(135deg, var(--white) 0%, var(--netflix-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation Menu */
.navbar-menu {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

.nav-links li {
    margin: 0;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    transition: all 0.3s ease;
}

.nav-links a:hover,
.nav-links a.current-menu-item {
    color: var(--netflix-red);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--netflix-red);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.current-menu-item::after {
    width: 100%;
}

/* Navbar Actions */
.navbar-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Styles */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .navbar-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        display: flex;
        align-items: center;
        justify-content: center;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 1000;
    }

    .navbar-menu.active {
        transform: translateX(0);
    }

    .nav-links {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .nav-links a {
        font-size: 1.5rem;
        padding: 1rem 0;
    }

    .navbar-actions {
        display: none;
    }

    body.menu-open {
        overflow: hidden;
    }
}

@media (max-width: 480px) {
    .navbar-content {
        padding: 0 1rem;
    }

    .logo-text {
        font-size: 1.25rem;
    }
}

/* Enhanced Professional Hero Section */
.hero-section {
  background: var(--bg-primary);
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(229, 9, 20, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(229, 9, 20, 0.08) 0%, transparent 50%),
    linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  padding: 10rem 0 8rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.04) 1px, transparent 0);
  background-size: 40px 40px;
  pointer-events: none;
  animation: float 20s ease-in-out infinite;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
}

/* Hero Text Styling */
.hero-text {
  animation: slideInLeft 1s ease-out;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  line-height: 1.6;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 90%;
}

/* Hero Actions */
.hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all var(--transition-normal);
  border: 2px solid transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(229, 9, 20, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(229, 9, 20, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--netflix-red);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

/* Hero Stats */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 1rem;
}

.stat {
  text-align: center;
  padding: 1.5rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all var(--transition-normal);
}

.stat:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(229, 9, 20, 0.3);
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--netflix-red);
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
}

.stat-label {
  display: block;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  animation: slideInRight 1s ease-out;
}

.chatbot-mockup {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  position: relative;
  transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
  transition: all var(--transition-normal);
}

.chatbot-mockup:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.mockup-header {
  background: var(--gradient-primary);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mockup-controls {
  display: flex;
  gap: 0.5rem;
}

.control {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: block;
}

.control.red { background: #ff5f57; }
.control.yellow { background: #ffbd2e; }
.control.green { background: #28ca42; }

.mockup-title {
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
}

.mockup-content {
  padding: 1.5rem;
  min-height: 300px;
  background: rgba(255, 255, 255, 0.02);
}

.chat-message {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
  align-items: flex-start;
}

.message-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.message-content {
  background: rgba(255, 255, 255, 0.1);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  color: var(--white);
  font-size: 0.9rem;
  line-height: 1.4;
  max-width: 80%;
}

/* Hero Background Elements */
.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 0;
}

.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.6;
  animation: float 15s ease-in-out infinite;
}

.orb-1 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(229, 9, 20, 0.3) 0%, transparent 70%);
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.orb-2 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(229, 9, 20, 0.2) 0%, transparent 70%);
  top: 60%;
  right: 20%;
  animation-delay: 5s;
}

.orb-3 {
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(229, 9, 20, 0.15) 0%, transparent 70%);
  bottom: 20%;
  left: 60%;
  animation-delay: 10s;
}

/* Animations */
@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 float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  33% {
    transform: translateY(-20px) rotate(120deg);
  }
  66% {
    transform: translateY(10px) rotate(240deg);
  }
}

/* Professional Responsive Design */
@media (max-width: 1024px) {
  .hero-content {
    gap: 3rem;
  }
  
  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 8rem 0 6rem;
    min-height: auto;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
  
  .stat {
    padding: 1rem 0.5rem;
  }
  
  .stat-number {
    font-size: 1.5rem;
  }
  
  .chatbot-mockup {
    transform: none;
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 6rem 0 4rem;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 280px;
  }
  
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .mockup-content {
    padding: 1rem;
    min-height: 200px;
  }
}

/* Enhanced Professional Features Section */
.features-section {
  background: var(--bg-primary);
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(229, 9, 20, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(229, 9, 20, 0.08) 0%, transparent 50%),
    linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

.features-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.04) 1px, transparent 0);
  background-size: 40px 40px;
  pointer-events: none;
  animation: float 20s ease-in-out infinite;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 1s ease-out;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.section-header p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* Enhanced Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

/* Enhanced Feature Cards */
.feature-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  padding: 3rem 2.5rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  text-align: center;
  animation: fadeInUp 1s ease-out;
  animation-fill-mode: both;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }
.feature-card:nth-child(5) { 
    animation-delay: 0.5s !important; 
}
.feature-card:nth-child(6) { animation-delay: 0.6s; }

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform var(--transition-normal);
  transform-origin: left;
}

.feature-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(229, 9, 20, 0.05) 0%, transparent 70%);
  opacity: 0;
  transition: opacity var(--transition-normal);
  pointer-events: none;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover::after {
  opacity: 1;
}

.feature-card:hover {
  border-color: rgba(229, 9, 20, 0.3);
  transform: translateY(-8px);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(229, 9, 20, 0.1);
  background: rgba(255, 255, 255, 0.08);
}

/* Feature Icons */
.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
  background: var(--gradient-primary);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all var(--transition-normal);
  box-shadow: 0 8px 20px rgba(229, 9, 20, 0.3);
}

.feature-icon::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: var(--gradient-primary);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 30px rgba(229, 9, 20, 0.4);
}

.feature-card:hover .feature-icon::before {
  opacity: 1;
  animation: pulse 2s ease-in-out infinite;
}

.feature-icon svg {
  width: 40px;
  height: 40px;
  color: var(--white);
  transition: all var(--transition-normal);
}

.feature-card:hover .feature-icon svg {
  transform: scale(1.1);
}

/* Feature Content */
.feature-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--white);
  line-height: 1.3;
}

.feature-card p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  font-size: 1rem;
  margin: 0;
}

/* Feature Number Badge */
.feature-card {
  counter-increment: feature-counter;
}

.features-grid {
  counter-reset: feature-counter;
}

.feature-card::before {
  content: counter(feature-counter, decimal-leading-zero);
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  background: rgba(229, 9, 20, 0.2);
  border: 1px solid rgba(229, 9, 20, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--netflix-red);
  font-family: var(--font-heading);
  backdrop-filter: blur(10px);
  transition: all var(--transition-normal);
  z-index: 2;
}

.feature-card:hover::before {
  background: rgba(229, 9, 20, 0.3);
  border-color: var(--netflix-red);
  transform: scale(1.1);
}

/* Additional Feature Enhancements */
.feature-highlight {
  position: relative;
}

.feature-highlight::after {
  content: 'Popular';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-primary);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(229, 9, 20, 0.3);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slidePattern {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 80px 80px;
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

/* Responsive Design for Features */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
  }
  
  .feature-card {
    padding: 2.5rem 2rem;
  }
}

@media (max-width: 768px) {
  .features-section {
    padding: 6rem 0;
  }
  
  .section-header {
    margin-bottom: 3rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .feature-card {
    padding: 2rem 1.5rem;
    text-align: center;
  }
  
  .feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
  }
  
  .feature-icon svg {
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 480px) {
  .features-section {
    padding: 4rem 0;
  }
  
  .feature-card {
    padding: 1.5rem 1rem;
  }
  
  .feature-card h3 {
    font-size: 1.25rem;
  }
  
  .feature-card::before {
    top: 1rem;
    right: 1rem;
    width: 30px;
    height: 30px;
    font-size: 0.7rem;
  }
}

/* Enhanced Professional Demo Section - "Try ChatVanta Now" */
.demo-section {
  background: var(--bg-primary);
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(229, 9, 20, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(229, 9, 20, 0.08) 0%, transparent 50%),
    linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

.demo-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.04) 1px, transparent 0);
  background-size: 40px 40px;
  pointer-events: none;
  animation: float 20s ease-in-out infinite;
}

/* Demo Container */
.demo-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Enhanced Chatbot Demo Interface */
.chatbot-demo {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(229, 9, 20, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  animation: fadeInUp 1s ease-out;
  transition: all var(--transition-normal);
}

.chatbot-demo:hover {
  transform: translateY(-5px);
  box-shadow: 
    0 35px 70px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(229, 9, 20, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

/* Chat Header */
.chat-header {
  background: var(--gradient-primary);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.chat-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.chat-status {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
  font-weight: 600;
  font-size: 1.1rem;
}

.status-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  position: relative;
  animation: pulse 2s ease-in-out infinite;
}

.status-indicator.online {
  background: #00ff88;
  box-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.demo-badge {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 500;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Enhanced Chat Messages */
.chat-messages {
  padding: 2rem;
  min-height: 400px;
  max-height: 500px;
  overflow-y: auto;
  background: rgba(255, 255, 255, 0.02);
  position: relative;
}

.chat-messages::-webkit-scrollbar {
  width: 6px;
}

.chat-messages::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
}

.chat-messages::-webkit-scrollbar-thumb {
  background: var(--gradient-primary);
  border-radius: 3px;
}

.chat-messages::-webkit-scrollbar-thumb:hover {
  background: var(--primary-red-light);
}

/* Enhanced Chat Message Styling */
.chat-message {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
  animation: messageSlideIn 0.5s ease-out;
}

.chat-message.user {
  flex-direction: row-reverse;
}

.chat-message.user .message-content {
  background: var(--gradient-primary);
  color: var(--white);
  border-radius: var(--radius-md) var(--radius-md) var(--radius-sm) var(--radius-md);
  box-shadow: 0 4px 15px rgba(229, 9, 20, 0.3);
}

.chat-message.bot .message-content {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-radius: var(--radius-md) var(--radius-md) var(--radius-md) var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.message-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(229, 9, 20, 0.3);
  position: relative;
}

.message-avatar::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: var(--gradient-primary);
  border-radius: 50%;
  z-index: -1;
  opacity: 0.5;
  animation: avatarGlow 3s ease-in-out infinite;
}

.message-content {
  padding: 1rem 1.25rem;
  font-size: 0.95rem;
  line-height: 1.5;
  max-width: 75%;
  position: relative;
  transition: all var(--transition-normal);
}

.message-content:hover {
  transform: translateY(-1px);
}

/* Enhanced Chat Input */
.chat-input-container {
  padding: 1.5rem 2rem;
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.chat-input-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.chat-form {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

#chat-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
  color: var(--white);
  font-size: 1rem;
  transition: all var(--transition-normal);
  backdrop-filter: blur(10px);
}

#chat-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

#chat-input:focus {
  outline: none;
  border-color: var(--netflix-red);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 3px rgba(229, 9, 20, 0.2);
}

.send-button {
  background: var(--gradient-primary);
  border: none;
  border-radius: var(--radius-lg);
  padding: 1rem;
  color: var(--white);
  cursor: pointer;
  transition: all var(--transition-normal);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 50px;
  box-shadow: 0 4px 15px rgba(229, 9, 20, 0.3);
}

.send-button:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 25px rgba(229, 9, 20, 0.4);
}

.send-button:active {
  transform: translateY(0) scale(0.98);
}

/* Enhanced Chatbot Demo Styling */

/* Message Bubbles */
.message-bubble {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px 18px 18px 4px;
  padding: 12px 16px;
  max-width: 80%;
  position: relative;
  transition: all 0.3s ease;
}

.message.user .message-bubble {
  background: var(--gradient-primary);
  border-radius: 18px 18px 4px 18px;
  margin-left: auto;
}

.message-bubble:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Enhanced Avatars */
.message-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.bot-avatar {
  background: var(--gradient-primary);
  box-shadow: 0 4px 15px rgba(229, 9, 20, 0.3);
}

.user-avatar {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

/* Typing Indicators */
.typing-dots {
  display: flex;
  gap: 4px;
  padding: 8px 12px;
}

.typing-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  animation: typingBounce 1.4s ease-in-out infinite;
}

.typing-dots span:nth-child(2) {
  animation-delay: 0.2s;
}

.typing-dots span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes typingBounce {
  0%, 60%, 100% {
    transform: translateY(0);
    opacity: 0.7;
  }
  30% {
    transform: translateY(-10px);
    opacity: 1;
  }
}

/* Status Indicators */
.status-indicator.typing {
  background: #ffa500;
  animation: pulse 1s ease-in-out infinite;
}

/* Suggestions */
.suggestions-container {
  margin: 20px 0;
  padding: 16px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.suggestions-title {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 12px;
  font-weight: 500;
}

.suggestion-btn {
  display: inline-block;
  background: rgba(229, 9, 20, 0.1);
  border: 1px solid rgba(229, 9, 20, 0.3);
  color: var(--white);
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 13px;
  margin: 4px 6px 4px 0;
  cursor: pointer;
  transition: all 0.3s ease;
  animation: slideInUp 0.5s ease-out;
}

.suggestion-btn:hover {
  background: rgba(229, 9, 20, 0.2);
  border-color: rgba(229, 9, 20, 0.5);
  transform: translateY(-2px);
}

/* Quick Responses */
.quick-responses {
  margin: 20px 0;
  padding: 16px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.quick-title {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 12px;
  font-weight: 500;
}

.quick-response {
  display: block;
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  margin-bottom: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
  animation: slideInLeft 0.5s ease-out;
}

.quick-response:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(229, 9, 20, 0.3);
  transform: translateX(5px);
}

/* Enhanced Demo Limit Counter */
.demo-limit {
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 8px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.demo-limit.warning {
  color: #ffa500;
  border-color: rgba(255, 165, 0, 0.3);
  background: rgba(255, 165, 0, 0.1);
}

.messages-count {
  font-weight: 600;
  color: var(--primary-red);
}

/* Enhanced Upgrade Prompt */
.upgrade-prompt {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  animation: fadeIn 0.5s ease-out;
}

.upgrade-content {
  background: var(--gradient-primary);
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  max-width: 400px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.upgrade-content h4 {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.upgrade-content p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
}

.upgrade-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.upgrade-buttons .btn {
  flex: 1;
  max-width: 150px;
}

/* Animations */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Enhanced Typing Indicator */
.typing-indicator {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  animation: messageSlideIn 0.5s ease-out;
}

.typing-dots {
  display: flex;
  gap: 0.3rem;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md) var(--radius-md) var(--radius-md) var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.typing-dots span {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  animation: typingDot 1.4s ease-in-out infinite;
}

.typing-dots span:nth-child(2) {
  animation-delay: 0.2s;
}

.typing-dots span:nth-child(3) {
  animation-delay: 0.4s;
}

/* Quick Responses */
.quick-responses {
  padding: 1rem 2rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.quick-response {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  color: var(--white);
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition-normal);
  backdrop-filter: blur(10px);
}

.quick-response:hover {
  background: var(--gradient-primary);
  border-color: var(--netflix-red);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(229, 9, 20, 0.3);
}

/* Upgrade Prompt */
.upgrade-prompt {
  padding: 2rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.upgrade-prompt h4 {
  color: var(--netflix-red);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.upgrade-prompt p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
}

.upgrade-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Enhanced Animations */
@keyframes messageSlideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes typingDot {
  0%, 60%, 100% {
    transform: translateY(0);
    opacity: 0.4;
  }
  30% {
    transform: translateY(-10px);
    opacity: 1;
  }
}

@keyframes avatarGlow {
  0%, 100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.1);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.2);
  }
}

/* Responsive Design for Demo Section */
@media (max-width: 1024px) {
  .demo-section {
    padding: 6rem 0;
  }
  
  .demo-container {
    max-width: 700px;
  }
}

@media (max-width: 768px) {
  .demo-section {
    padding: 5rem 0;
  }
  
  .chat-header {
    padding: 1.25rem 1.5rem;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .chat-messages {
    padding: 1.5rem;
    min-height: 350px;
  }
  
  .chat-input-container {
    padding: 1.25rem 1.5rem;
  }
  
  .message-content {
    max-width: 85%;
    font-size: 0.9rem;
  }
  
  .quick-responses {
    padding: 1rem 1.5rem 0;
  }
  
  .upgrade-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .upgrade-buttons .btn {
    width: 100%;
    max-width: 250px;
  }
  
  .message-bubble {
    max-width: 90%;
  }
  
  .suggestions-container,
  .quick-responses {
    margin: 15px 0;
    padding: 12px;
  }
  
  .upgrade-content {
    margin: 1rem;
    padding: 1.5rem;
  }
  
  .upgrade-buttons {
    flex-direction: column;
  }
  
  .upgrade-buttons .btn {
    max-width: none;
  }
}

@media (max-width: 480px) {
  .demo-section {
    padding: 4rem 0;
  }
  
  .chatbot-demo {
    margin: 0 1rem;
  }
  
  .chat-header {
    padding: 1rem;
  }
  
  .chat-status {
    font-size: 1rem;
  }
  
  .chat-messages {
    padding: 1rem;
    min-height: 300px;
  }
  
  .chat-input-container {
    padding: 1rem;
  }
  
  .chat-form {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  #chat-input {
    width: 100%;
  }
  
  .send-button {
    width: 100%;
    padding: 1rem 2rem;
  }
  
  .message-content {
    max-width: 90%;
    padding: 0.875rem 1rem;
  }
  
  .message-avatar {
    width: 35px;
    height: 35px;
  }
  
  .quick-response {
    font-size: 0.85rem;
    padding: 0.625rem 0.875rem;
  }
  
  .message-bubble {
    max-width: 90%;
  }
  
  .suggestions-container,
  .quick-responses {
    margin: 15px 0;
    padding: 12px;
  }
  
  .upgrade-content {
    margin: 1rem;
    padding: 1.5rem;
  }
  
  .upgrade-buttons {
    flex-direction: column;
  }
  
  .upgrade-buttons .btn {
    max-width: none;
  }
}



/* ===== ENHANCED CAPABILITIES SECTION - BRAND ALIGNED ===== */
.capabilities-section {
  background: var(--bg-primary);
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(229, 9, 20, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(229, 9, 20, 0.05) 0%, transparent 50%),
    linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

.capabilities-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.03) 1px, transparent 0);
  background-size: 40px 40px;
  pointer-events: none;
  animation: float 20s ease-in-out infinite;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(229, 9, 20, 0.15);
  backdrop-filter: blur(10px);
  color: var(--netflix-red);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(229, 9, 20, 0.3);
  box-shadow: 0 4px 15px rgba(229, 9, 20, 0.2);
  transition: all 0.3s ease;
}

.section-badge:hover {
  background: rgba(229, 9, 20, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(229, 9, 20, 0.3);
}

.section-badge svg {
  width: 16px;
  height: 16px;
  filter: drop-shadow(0 0 4px rgba(229, 9, 20, 0.5));
}

.capabilities-section .section-header h2 {
  color: var(--white);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.capabilities-section .section-header p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.125rem;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.capabilities-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 4rem;
}

@media (min-width: 768px) {
  .capabilities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

.capability-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.capability-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.capability-card:hover {
  transform: translateY(-8px) scale(1.02);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(229, 9, 20, 0.3);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(229, 9, 20, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.capability-card:hover::before {
  transform: scaleX(1);
}

.capability-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.4s ease;
  position: relative;
}

.capability-icon::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.capability-icon.blue {
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
  border: 2px solid rgba(59, 130, 246, 0.3);
}

.capability-icon.blue::after {
  background: radial-gradient(circle, rgba(59, 130, 246, 0.3), transparent);
}

.capability-icon.green {
  background: rgba(34, 197, 94, 0.15);
  color: #4ade80;
  border: 2px solid rgba(34, 197, 94, 0.3);
}

.capability-icon.green::after {
  background: radial-gradient(circle, rgba(34, 197, 94, 0.3), transparent);
}

.capability-icon.purple {
  background: rgba(147, 51, 234, 0.15);
  color: #a855f7;
  border: 2px solid rgba(147, 51, 234, 0.3);
}

.capability-icon.purple::after {
  background: radial-gradient(circle, rgba(147, 51, 234, 0.3), transparent);
}

.capability-icon.orange {
  background: rgba(249, 115, 22, 0.15);
  color: #fb923c;
  border: 2px solid rgba(249, 115, 22, 0.3);
}

.capability-icon.orange::after {
  background: radial-gradient(circle, rgba(249, 115, 22, 0.3), transparent);
}

.capability-card:hover .capability-icon {
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.capability-card:hover .capability-icon::after {
  opacity: 1;
}

.capability-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.3;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.capability-card p {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin: 0;
}

.capability-card:hover p {
  color: rgba(255, 255, 255, 0.9);
}

/* Enhanced Responsive Design */
@media (max-width: 768px) {
  .capabilities-section {
    padding: 6rem 0;
  }
  
  .capability-card {
    padding: 2rem 1.5rem;
  }
  
  .capability-icon {
    width: 70px;
    height: 70px;
  }
  
  .capability-card h3 {
    font-size: 1.25rem;
  }
  
  .capabilities-section .section-header h2 {
    font-size: clamp(2rem, 5vw, 2.5rem);
  }
}

@media (max-width: 480px) {
  .capabilities-section {
    padding: 4rem 0;
  }
  
  .capability-card {
    padding: 1.5rem 1rem;
  }
  
  .capability-icon {
    width: 60px;
    height: 60px;
  }
  
  .section-badge {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }
}

/* Animation for floating background */
@keyframes float {
  0%, 100% {
    transform: translateY(0px) translateX(0px);
  }
  33% {
    transform: translateY(-10px) translateX(5px);
  }
  66% {
    transform: translateY(5px) translateX(-5px);
  }
}

/* ===================================
   ENHANCED PRICING HERO SECTION
   =================================== */

/* Pricing Hero Section */
.pricing-hero-section {
  background: var(--bg-primary);
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(229, 9, 20, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(229, 9, 20, 0.08) 0%, transparent 50%),
    linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  padding: 8rem 0 6rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.pricing-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.04) 1px, transparent 0);
  background-size: 40px 40px;
  pointer-events: none;
  animation: float 20s ease-in-out infinite;
}

.pricing-hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  animation: fadeInUp 1s ease-out;
}

.pricing-hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: white;
  text-shadow: 0 2px 10px rgba(229, 9, 20, 0.3);
}

.pricing-hero-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Pricing Toggle */
.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.toggle-label {
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 30px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.2);
  transition: 0.4s;
  border-radius: 30px;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.toggle-slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 2px;
  bottom: 2px;
  background: white;
  transition: 0.4s;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

input:checked + .toggle-slider {
  background: linear-gradient(135deg, #E50914 0%, #ff4757 100%);
  border-color: #E50914;
}

input:checked + .toggle-slider:before {
  transform: translateX(28px);
}

.discount-badge {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-left: 0.5rem;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
  animation: pulse 2s infinite;
}

/* Responsive Design for Hero Section */
@media (max-width: 768px) {
  .pricing-hero-section {
    padding: 4rem 0 3rem;
  }
  
  .pricing-toggle {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .pricing-hero-section {
    padding: 3rem 0 2rem;
  }
}

/* ===================================
   ENHANCED PROFESSIONAL PRICING SECTION
   =================================== */

/* Pricing Section */
.pricing-section {
  background: var(--bg-primary);
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(229, 9, 20, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(229, 9, 20, 0.08) 0%, transparent 50%),
    linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

.pricing-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.04) 1px, transparent 0);
  background-size: 40px 40px;
  pointer-events: none;
  animation: float 20s ease-in-out infinite;
}

/* Pricing Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

/* Enhanced Pricing Cards */
.pricing-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(25px);
  padding: 2.5rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 1s ease-out;
  animation-fill-mode: both;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.pricing-card:nth-child(1) { animation-delay: 0.1s; }
.pricing-card:nth-child(2) { animation-delay: 0.2s; }
.pricing-card:nth-child(3) { animation-delay: 0.3s; }

/* Featured Plan Styling */
.pricing-card.featured {
  transform: scale(1.05);
  border: 2px solid rgba(229, 9, 20, 0.3);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(229, 9, 20, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform var(--transition-normal);
  transform-origin: left;
}

.pricing-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(229, 9, 20, 0.05) 0%, transparent 70%);
  opacity: 0;
  transition: opacity var(--transition-normal);
  pointer-events: none;
}

.pricing-card:hover::before {
  transform: scaleX(1);
}

.pricing-card:hover::after {
  opacity: 1;
}

.pricing-card:hover {
  transform: translateY(-10px);
  border-color: rgba(229, 9, 20, 0.3);
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(229, 9, 20, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

/* Plan Badge */
.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-primary);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(229, 9, 20, 0.4);
  animation: pulse 2s infinite;
}

/* Plan Header */
.plan-header {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.plan-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.plan-header p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  margin-bottom: 1rem;
}

/* Plan Price */
.plan-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
  margin: 1rem 0;
}

.plan-price .currency {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--netflix-red);
  align-self: flex-start;
  margin-top: 0.5rem;
}

.plan-price .amount {
  font-size: 3.5rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.plan-price .period {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  align-self: flex-end;
  margin-bottom: 0.5rem;
}

/* Plan Features */
.plan-features {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  text-align: left;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.5;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all var(--transition-fast);
}

.plan-features li:last-child {
  border-bottom: none;
}

.plan-features li:hover {
  color: white;
  padding-left: 0.5rem;
}

.plan-features .check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: var(--gradient-primary);
  border-radius: 50%;
  color: white;
  font-size: 0.75rem;
  font-weight: bold;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(229, 9, 20, 0.3);
}

/* Plan Button */
.plan-button {
  width: 100%;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: var(--radius-lg);
  transition: all var(--transition-normal);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  margin-top: 1.5rem;
}

.plan-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;
}

.plan-button:hover::before {
  left: 100%;
}

.pricing-card.featured .plan-button {
  background: var(--gradient-primary);
  border: none;
  color: white;
  box-shadow: 0 8px 25px rgba(229, 9, 20, 0.4);
}

.pricing-card.featured .plan-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(229, 9, 20, 0.5);
}

.pricing-card:not(.featured) .plan-button {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: white;
}

.pricing-card:not(.featured) .plan-button:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--netflix-red);
  color: var(--netflix-red);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Trust Indicators */
.pricing-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.pricing-trust::before {
  content: '🔒';
  font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .pricing-section {
    padding: 4rem 0;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1rem;
  }
  
  .pricing-card {
    padding: 2rem 1.5rem;
  }
  
  .pricing-card.featured {
    transform: none;
    order: -1;
  }
  
  .pricing-card.featured:hover {
    transform: translateY(-5px);
  }
  
  .plan-price .amount {
    font-size: 2.5rem;
  }
  
  .plan-features {
    margin: 1.5rem 0;
  }
  
  .plan-features li {
    padding: 0.5rem 0;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .pricing-section {
    padding: 3rem 0;
  }
  
  .pricing-card {
    padding: 1.5rem 1rem;
  }
  
  .plan-price .amount {
    font-size: 2rem;
  }
  
  .plan-button {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }
}

/* ===================================
   ENHANCED PROFESSIONAL INTEGRATIONS SECTION
   =================================== */

/* Integrations Section */
.integrations-section {
  background: var(--bg-primary);
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(229, 9, 20, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(229, 9, 20, 0.08) 0%, transparent 50%),
    linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

/* ChatElara Automation Section - Enhanced Brand Design */
.automation-section {
  background: var(--bg-primary);
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(229, 9, 20, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(229, 9, 20, 0.08) 0%, transparent 50%),
    linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
  color: white;
}

.automation-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.04) 1px, transparent 0);
  background-size: 40px 40px;
  pointer-events: none;
  animation: backgroundFloat 20s ease-in-out infinite;
}

.automation-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 3rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(25px);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(229, 9, 20, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.automation-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #e50914, #ff6b6b, #e50914);
  background-size: 200% 100%;
  animation: brandShimmer 3s ease-in-out infinite;
}

.automation-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(229, 9, 20, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.automation-header {
  text-align: center;
  margin-bottom: 5rem;
  position: relative;
  z-index: 2;
}

.automation-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: white;
  text-shadow: 0 2px 10px rgba(229, 9, 20, 0.3);
  animation: fadeInUp 1s ease-out;
}

.automation-title .brand-highlight {
  background: linear-gradient(135deg, #E50914 0%, #ff4757 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: brandShimmer 3s ease-in-out infinite;
}

/* Steps Container */
.automation-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

/* Enhanced Card Design */
.automation-step {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.automation-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(229, 9, 20, 0.05) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.automation-step:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(229, 9, 20, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.automation-step:hover::before {
  opacity: 1;
}

/* Enhanced Step Number */
.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #E50914 0%, #ff4757 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  box-shadow: 
    0 8px 25px rgba(229, 9, 20, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.automation-step:hover .step-number {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 
    0 12px 35px rgba(229, 9, 20, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Enhanced Visual Icon Area */
.step-visual {
  width: 120px;
  height: 100px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.step-visual::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(229, 9, 20, 0.1) 0%, rgba(255, 103, 87, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.automation-step:hover .step-visual::before {
  opacity: 1;
}

.step-visual img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
}

/* For steps without images, use colored backgrounds */
.step-visual.step-1 {
  background: linear-gradient(135deg, rgba(229, 9, 20, 0.2) 0%, rgba(255, 103, 87, 0.2) 100%);
  border-color: rgba(229, 9, 20, 0.4);
}

.step-visual.step-2 {
  background: linear-gradient(135deg, #333 0%, #555 100%);
  border-color: #333;
}

.step-visual.step-3 {
  background: linear-gradient(135deg, rgba(229, 9, 20, 0.2) 0%, rgba(255, 107, 107, 0.2) 100%);
  border-color: rgba(229, 9, 20, 0.4);
}

.step-visual svg {
  width: 48px;
  height: 48px;
  color: #E50914;
  filter: drop-shadow(0 2px 8px rgba(229, 9, 20, 0.3));
  transition: all 0.3s ease;
}

.automation-step:hover .step-visual svg {
  transform: scale(1.1);
  color: #ff4757;
}

/* Enhanced Step Content */
.step-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
  line-height: 1.3;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.step-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  font-size: 1rem;
  margin: 0;
}

/* Special styling for specific steps */
.automation-step.step-customize .step-visual {
  background: #f8f9fa;
  border: 2px dashed #E50914;
}

.automation-step.step-watch .step-visual {
  background: linear-gradient(45deg, #E50914, #ff4757);
  border-color: #E50914;
}

/* Enhanced Badge */
.step-badge {
  background: linear-gradient(135deg, #E50914 0%, #ff4757 100%);
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 600;
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  box-shadow: 0 4px 15px rgba(229, 9, 20, 0.4);
  animation: pulse 2s ease-in-out infinite;
}

/* Enhanced Call to Action */
.automation-cta {
  text-align: center;
  margin-top: 4rem;
  position: relative;
  z-index: 2;
}

.automation-btn {
  background: linear-gradient(135deg, #E50914 0%, #ff4757 100%);
  color: white;
  padding: 1.5rem 4rem;
  border-radius: 16px;
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  box-shadow: 
    0 12px 35px rgba(229, 9, 20, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.automation-btn::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.6s ease;
}

.automation-btn:hover::before {
  left: 100%;
}

.automation-btn:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 
    0 20px 50px rgba(229, 9, 20, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  background: linear-gradient(135deg, #ff4757 0%, #E50914 100%);
}

.automation-btn svg {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.automation-btn:hover svg {
  transform: translateX(4px);
}

/* Enhanced Animations */
@keyframes backgroundFloat {
  0%, 100% {
    transform: translateY(0px) translateX(0px);
  }
  50% {
    transform: translateY(-10px) translateX(5px);
  }
}

@keyframes brandShimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.05);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .automation-container {
    padding: 2rem 1.5rem;
  }
  
  .automation-steps {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .automation-step {
    padding: 2rem 1.5rem;
  }
  
  .automation-btn {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
  }
}

.integrations-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.04) 1px, transparent 0);
  background-size: 40px 40px;
  pointer-events: none;
  animation: float 20s ease-in-out infinite;
}

/* Integrations Container Card */
.integrations-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 3rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(25px);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(229, 9, 20, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.integrations-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #e50914, #ff6b6b, #e50914);
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
}

.integrations-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(229, 9, 20, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

/* Integrations Header */
.integrations-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 1s ease-out;
  position: relative;
  z-index: 2;
}

.integrations-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #e50914;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(229, 9, 20, 0.3);
}

.integrations-header p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto 2rem;
}

/* Integration Categories */
.integration-categories {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.category-tab {
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 25px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.category-tab::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s;
}

.category-tab:hover::before {
  left: 100%;
}

.category-tab.active,
.category-tab:hover {
  background: #e50914;
  border-color: #e50914;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(229, 9, 20, 0.4);
}

/* Integrations Grid */
.integrations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 2;
}

/* Enhanced Integration Cards */
.integration-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(25px);
  padding: 2.5rem 1.5rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 1s ease-out;
  animation-fill-mode: both;
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.3),
    0 1px 8px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  cursor: pointer;
}

/* Enhanced Staggered Animation Delays */
.integration-card:nth-child(1) { animation-delay: 0.1s; }
.integration-card:nth-child(2) { animation-delay: 0.2s; }
.integration-card:nth-child(3) { animation-delay: 0.3s; }
.integration-card:nth-child(4) { animation-delay: 0.4s; }
.integration-card:nth-child(5) { animation-delay: 0.5s; }
.integration-card:nth-child(6) { animation-delay: 0.6s; }
.integration-card:nth-child(7) { animation-delay: 0.7s; }
.integration-card:nth-child(8) { animation-delay: 0.8s; }
.integration-card:nth-child(9) { animation-delay: 0.9s; }
.integration-card:nth-child(10) { animation-delay: 1.0s; }
.integration-card:nth-child(11) { animation-delay: 1.1s; }

/* Enhanced Card Pseudo Elements */
.integration-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 20%, rgba(229, 9, 20, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.integration-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #e50914, #ff4757, #e50914);
  background-size: 200% 100%;
  transform: scaleX(0);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: left;
  animation: shimmer 3s ease-in-out infinite;
}

/* Enhanced Hover Effects */
.integration-card:hover::before {
  opacity: 1;
}

.integration-card:hover::after {
  transform: scaleX(1);
}

.integration-card:hover {
  transform: translateY(-12px) scale(1.08);
  border-color: rgba(229, 9, 20, 0.5);
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.4),
    0 10px 30px rgba(229, 9, 20, 0.2),
    0 0 0 1px rgba(229, 9, 20, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    inset 0 -1px 0 rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.12);
}

/* Enhanced Integration Logo */
.integration-logo {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: 
    linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%),
    rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 8px 25px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.integration-logo::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 70%
  );
  transform: rotate(-45deg);
  transition: transform 0.6s ease;
  opacity: 0;
}

.integration-card:hover .integration-logo::before {
  opacity: 1;
  transform: rotate(-45deg) translate(50%, 50%);
}

.integration-logo img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  filter: brightness(0.9) contrast(1.1) saturate(1.1);
  position: relative;
  z-index: 2;
}

.integration-card:hover .integration-logo {
  background: 
    linear-gradient(135deg, rgba(229, 9, 20, 0.15) 0%, rgba(255, 255, 255, 0.1) 100%),
    rgba(255, 255, 255, 0.15);
  transform: scale(1.15) rotate(8deg);
  box-shadow: 
    0 15px 35px rgba(0, 0, 0, 0.3),
    0 5px 15px rgba(229, 9, 20, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.integration-card:hover .integration-logo img {
  filter: brightness(1.2) contrast(1.3) saturate(1.2);
  transform: scale(1.1) rotate(-8deg);
}

/* Enhanced Integration Name */
.integration-name {
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.75rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: capitalize;
  letter-spacing: 0.5px;
  position: relative;
}

.integration-card:hover .integration-name {
  color: white;
  transform: translateY(-3px);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Enhanced Integration Status */
.integration-status {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: 25px;
  display: inline-block;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.integration-status::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.6s ease;
}

.integration-card:hover .integration-status::before {
  left: 100%;
}

.integration-status.available {
  color: #10b981;
  background: 
    linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(16, 185, 129, 0.1) 100%),
    rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.3);
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.1);
}

.integration-status.coming-soon {
  color: #f59e0b;
  background: 
    linear-gradient(135deg, rgba(245, 158, 11, 0.2) 0%, rgba(245, 158, 11, 0.1) 100%),
    rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.3);
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.1);
}

.integration-card:hover .integration-status.available {
  background: 
    linear-gradient(135deg, rgba(16, 185, 129, 0.3) 0%, rgba(16, 185, 129, 0.15) 100%),
    rgba(16, 185, 129, 0.12);
  box-shadow: 
    0 8px 25px rgba(16, 185, 129, 0.2),
    0 0 20px rgba(16, 185, 129, 0.1);
  transform: translateY(-2px);
}

.integration-card:hover .integration-status.coming-soon {
  background: 
    linear-gradient(135deg, rgba(245, 158, 11, 0.3) 0%, rgba(245, 158, 11, 0.15) 100%),
    rgba(245, 158, 11, 0.12);
  box-shadow: 
    0 8px 25px rgba(245, 158, 11, 0.2),
    0 0 20px rgba(245, 158, 11, 0.1);
  transform: translateY(-2px);
}

/* Enhanced Featured Integration */
.integration-card.featured {
  border: 2px solid rgba(229, 9, 20, 0.5);
  background: 
    linear-gradient(135deg, rgba(229, 9, 20, 0.12) 0%, rgba(255, 255, 255, 0.08) 100%),
    rgba(229, 9, 20, 0.06);
  transform: scale(1.05);
  box-shadow: 
    0 15px 40px rgba(0, 0, 0, 0.4),
    0 5px 20px rgba(229, 9, 20, 0.2),
    0 0 0 1px rgba(229, 9, 20, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.integration-card.featured::after {
  transform: scaleX(1);
  background: linear-gradient(90deg, #e50914, #ff6b6b, #e50914);
}

.integration-card.featured .popular-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: linear-gradient(135deg, #e50914 0%, #ff4757 100%);
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 25px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 
    0 8px 20px rgba(229, 9, 20, 0.4),
    0 2px 8px rgba(0, 0, 0, 0.2);
  animation: pulse 2s infinite, float 3s ease-in-out infinite;
  z-index: 3;
}

/* Additional Animations */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-5px); }
}

/* CTA Section */
.integrations-cta {
  text-align: center;
  margin-top: 4rem;
  animation: fadeInUp 1s ease-out 0.5s both;
}

.integrations-cta-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(25px);
  padding: 3rem 2rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.integrations-cta-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #e50914;
}

.integrations-cta h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.integrations-cta p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.integrations-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: #e50914;
  color: white;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(229, 9, 20, 0.4);
  position: relative;
  overflow: hidden;
}

.integrations-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;
}

.integrations-cta-button:hover::before {
  left: 100%;
}

.integrations-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(229, 9, 20, 0.5);
  text-decoration: none;
  color: white;
}

/* Shimmer Animation */
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* Responsive Design */
@media (max-width: 768px) {
  .integrations-section {
    padding: 4rem 0;
  }
  
  .integrations-container {
    margin: 0 1rem;
    padding: 2.5rem 1.5rem;
    border-radius: 16px;
  }
  
  .integrations-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1.5rem;
  }
  
  .integration-card {
    padding: 1.5rem 1rem;
  }
  
  .integration-logo {
    width: 50px;
    height: 50px;
  }
  
  .integration-logo img {
    width: 30px;
    height: 30px;
  }
  
  .integration-categories {
    gap: 0.5rem;
  }
  
  .category-tab {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
  }
  
  .integrations-cta-card {
    padding: 2rem 1.5rem;
    margin: 0 1rem;
  }
}

@media (max-width: 480px) {
  .integrations-container {
    margin: 0 0.5rem;
    padding: 2rem 1rem;
  }
  
  .integrations-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
  
  .integration-card {
    padding: 1rem 0.75rem;
  }
  
  .integration-logo {
    width: 40px;
    height: 40px;
  }
  
  .integration-logo img {
    width: 24px;
    height: 24px;
  }
  
  .integration-name {
    font-size: 0.8rem;
  }
  
  .integration-status {
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
  }
}

/* ===================================
   CONNECT ACROSS ALL PLATFORMS SECTION
   =================================== */

.connect-platforms-section {
  background: var(--bg-primary);
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(229, 9, 20, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(229, 9, 20, 0.08) 0%, transparent 50%),
    linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
  color: white;
}

.connect-platforms-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.04) 1px, transparent 0);
  background-size: 40px 40px;
  pointer-events: none;
  animation: backgroundFloat 20s ease-in-out infinite;
}

.connect-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 3rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(25px);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(229, 9, 20, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.connect-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #e50914, #ff6b6b, #e50914);
  background-size: 200% 100%;
  animation: brandShimmer 3s ease-in-out infinite;
}

.connect-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.connect-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: white;
  text-shadow: 0 2px 10px rgba(229, 9, 20, 0.3);
}

.connect-title .brand-highlight {
  background: linear-gradient(135deg, #E50914 0%, #ff4757 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.connect-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* Main Content Layout */
.connect-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

/* Chat Interface Demo */
.chat-interface-demo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-window {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
  max-width: 400px;
  width: 100%;
}

.chat-header-demo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: #333;
  font-weight: 500;
}

.chat-avatar-demo {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
}

.chat-input-demo {
  margin-bottom: 1rem;
}

.chat-input-demo input {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  background: #f8f9fa;
}

.chat-options {
  display: flex;
  gap: 0.5rem;
}

.chat-option {
  background: #f8f9fa;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  color: #666;
  border: 1px solid #e9ecef;
}

.chat-response {
  margin-top: 1rem;
}

.response-bubble {
  background: #E50914;
  color: white;
  padding: 1rem;
  border-radius: 12px;
  font-size: 0.9rem;
  line-height: 1.4;
  position: relative;
}

.response-bubble::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 20px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #E50914;
}

/* Social Engagement Card */
.social-engagement-card {
  background: linear-gradient(135deg, #E50914 0%, #ff4757 100%);
  padding: 2.5rem;
  border-radius: 20px;
  color: white;
  box-shadow: 0 15px 35px rgba(229, 9, 20, 0.3);
  position: relative;
  overflow: hidden;
}

.social-engagement-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.social-engagement-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.social-engagement-card p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  opacity: 0.9;
  position: relative;
  z-index: 1;
}

.engagement-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
  z-index: 1;
}

.feature-point {
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.95;
}

/* Platform Integration Cards */
.platform-integrations {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.platform-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.platform-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(229, 9, 20, 0.05) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.platform-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  border-color: rgba(229, 9, 20, 0.3);
}

.platform-card:hover::before {
  opacity: 1;
}

.platform-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  background: rgba(229, 9, 20, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #E50914;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.platform-card:hover .platform-icon {
  background: rgba(229, 9, 20, 0.2);
  transform: scale(1.1);
}

.platform-card h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: white;
  position: relative;
  z-index: 1;
}

.platform-card p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
  font-size: 0.95rem;
  position: relative;
  z-index: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
  .connect-container {
    padding: 2rem 1.5rem;
  }
  
  .connect-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .platform-integrations {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .platform-card {
    padding: 1.5rem;
  }
  
  .social-engagement-card {
    padding: 2rem;
  }
  
  .chat-window {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .connect-container {
    padding: 1.5rem 1rem;
    margin: 0 1rem;
  }
  
  .connect-title {
    font-size: 2rem;
  }
  
  .connect-subtitle {
    font-size: 1rem;
  }
}

/* ===================================
   ENHANCED PRICING CARDS SECTION
   =================================== */

/* Main Pricing Section */
.main-pricing-section {
  background: #0A0A0A;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(229, 9, 20, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(229, 9, 20, 0.05) 0%, transparent 50%);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.main-pricing-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.02) 1px, transparent 0);
  background-size: 60px 60px;
  pointer-events: none;
  animation: float 25s ease-in-out infinite;
}

/* Enhanced Pricing Grid */
.pricing-grid-enhanced {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Enhanced Pricing Cards */
.pricing-card-enhanced {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(25px);
  padding: 2.5rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 1s ease-out;
  animation-fill-mode: both;
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.3),
    0 1px 8px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  text-align: center;
}

.pricing-card-enhanced:nth-child(1) { animation-delay: 0.1s; }
.pricing-card-enhanced:nth-child(2) { animation-delay: 0.2s; }
.pricing-card-enhanced:nth-child(3) { animation-delay: 0.3s; }

/* Featured Plan Styling */
.pricing-card-enhanced.featured {
  transform: scale(1.05);
  border: 2px solid rgba(229, 9, 20, 0.4);
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(229, 9, 20, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 0 30px rgba(229, 9, 20, 0.2);
  background: 
    linear-gradient(135deg, rgba(229, 9, 20, 0.08) 0%, rgba(255, 255, 255, 0.05) 100%),
    rgba(255, 255, 255, 0.05);
}

.pricing-card-enhanced::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #e50914, #ff6b6b, #e50914);
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
  border-radius: 20px 20px 0 0;
}

.pricing-card-enhanced:hover {
  transform: translateY(-10px);
  border-color: rgba(229, 9, 20, 0.4);
  box-shadow: 
    0 30px 60px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(229, 9, 20, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.pricing-card-enhanced.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

/* Plan Badge */
.plan-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #E50914 0%, #ff4757 100%);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 
    0 8px 25px rgba(229, 9, 20, 0.4),
    0 2px 8px rgba(0, 0, 0, 0.2);
  z-index: 3;
  animation: pulse 2s infinite;
}

/* Enhanced Plan Header */
.plan-header-enhanced {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.plan-header-enhanced h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.plan-price-enhanced {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.plan-price-enhanced .currency {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.plan-price-enhanced .amount {
  font-size: 3.5rem;
  font-weight: 800;
  color: white;
  line-height: 1;
}

.plan-price-enhanced .period {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
}

.plan-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
}

/* Enhanced Plan Features */
.plan-features-enhanced {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.plan-features-enhanced li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.5;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.plan-features-enhanced li:last-child {
  border-bottom: none;
}

.plan-features-enhanced li:hover {
  color: white;
  transform: translateX(5px);
}

.plan-features-enhanced .check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border-radius: 50%;
  color: white;
  font-size: 0.75rem;
  font-weight: bold;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.plan-features-enhanced .cross {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: rgba(239, 68, 68, 0.2);
  border-radius: 50%;
  color: #ef4444;
  font-size: 0.75rem;
  font-weight: bold;
  flex-shrink: 0;
  opacity: 0.6;
}

/* Enhanced Plan Button */
.plan-button-enhanced {
  width: 100%;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  margin-top: 1.5rem;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.plan-button-enhanced::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;
}

.plan-button-enhanced:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, #E50914 0%, #ff4757 100%);
  border: none;
  color: white;
  box-shadow: 0 8px 25px rgba(229, 9, 20, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(229, 9, 20, 0.5);
  color: white;
}

.btn-outline {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: white;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #e50914;
  color: #e50914;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Animations */
@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

@keyframes pulse {
  0%, 100% {
    transform: translateX(-50%) scale(1);
  }
  50% {
    transform: translateX(-50%) scale(1.05);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) translateX(0px);
  }
  33% {
    transform: translateY(-10px) translateX(5px);
  }
  66% {
    transform: translateY(5px) translateX(-5px);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .main-pricing-section {
    padding: 4rem 0;
  }
  
  .pricing-grid-enhanced {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1rem;
  }
  
  .pricing-card-enhanced {
    padding: 2rem 1.5rem;
  }
  
  .pricing-card-enhanced.featured {
    transform: none;
    order: -1;
  }
  
  .pricing-card-enhanced.featured:hover {
    transform: translateY(-5px);
  }
  
  .plan-price-enhanced .amount {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .main-pricing-section {
    padding: 3rem 0;
  }
  
  .pricing-card-enhanced {
    padding: 1.5rem 1rem;
  }
  
  .plan-price-enhanced .amount {
    font-size: 2rem;
  }
  
  .plan-button-enhanced {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }
}

/* ===================================
   ENHANCED FEATURES COMPARISON SECTION
   =================================== */

/* Features Comparison Section */
.features-comparison-section {
  background: #0A0A0A;
  padding: 6rem 0;
  position: relative;
}

.features-comparison-section .section-header {
  margin-bottom: 4rem;
  text-align: center;
}

.comparison-table-container {
  overflow-x: auto;
  margin-top: 3rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
}

.comparison-table th,
.comparison-table td {
  padding: 1.8rem 1.5rem;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

.comparison-table th {
  background: rgba(255, 255, 255, 0.08);
  color: white;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.9rem;
}

.comparison-table .feature-column {
  text-align: left;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  min-width: 220px;
  background: rgba(255, 255, 255, 0.03);
}

.comparison-table .featured-column {
  background: rgba(229, 9, 20, 0.1);
  border-left: 2px solid #e50914;
  border-right: 2px solid #e50914;
  position: relative;
}

.comparison-table .featured-column::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #E50914 0%, #ff4757 100%);
  color: white;
  padding: 0.4rem 1.2rem;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  box-shadow: 0 8px 20px rgba(229, 9, 20, 0.4);
  z-index: 3;
}

.comparison-table .check {
  color: #10b981;
  font-size: 1.4rem;
  font-weight: 700;
}

.comparison-table .cross {
  color: #ef4444;
  font-size: 1.4rem;
  font-weight: 700;
  opacity: 0.6;
}

.comparison-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.03);
}

/* Responsive Design */
@media (max-width: 768px) {
  .features-comparison-section {
    padding: 4rem 0;
  }
  
  .comparison-table th,
  .comparison-table td {
    padding: 1.2rem 0.8rem;
    font-size: 0.9rem;
  }
  
  .comparison-table .feature-column {
    min-width: 180px;
  }
}

/* ===================================
   ENHANCED FAQ SECTION
   =================================== */

/* FAQ Section */
.pricing-faq-section {
  background: #0A0A0A;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(229, 9, 20, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(229, 9, 20, 0.05) 0%, transparent 50%);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
  color: white;
}

.pricing-faq-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.02) 1px, transparent 0);
  background-size: 60px 60px;
  pointer-events: none;
  animation: float 25s ease-in-out infinite;
}

.pricing-faq-section .section-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.pricing-faq-section .section-header h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-faq-section .section-header p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto;
}

/* FAQ Grid */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 0 1rem;
}

/* FAQ Items */
.faq-item {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 1s ease-out;
  animation-fill-mode: both;
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.3),
    0 1px 8px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }
.faq-item:nth-child(4) { animation-delay: 0.4s; }

.faq-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(229, 9, 20, 0.1) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.faq-item:hover {
  transform: translateY(-8px);
  border-color: rgba(229, 9, 20, 0.3);
  box-shadow: 
    0 30px 60px rgba(0, 0, 0, 0.4),
    0 0 30px rgba(229, 9, 20, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.faq-item:hover::before {
  opacity: 1;
}

/* FAQ Question */
.faq-question {
  font-size: 1.4rem;
  font-weight: 600;
  color: white;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.faq-item:hover .faq-question {
  color: #E50914;
}

/* FAQ Answer */
.faq-answer {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.faq-item:hover .faq-answer {
  color: rgba(255, 255, 255, 0.9);
}

/* Responsive Design */
@media (max-width: 768px) {
  .pricing-faq-section {
    padding: 4rem 0;
  }
  
  .pricing-faq-section .section-header h2 {
    font-size: 2.5rem;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1rem;
  }
  
  .faq-item {
    padding: 2rem;
  }
  
  .faq-question {
    font-size: 1.2rem;
  }
  
  .faq-answer {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .pricing-faq-section {
    padding: 3rem 0;
  }
  
  .pricing-faq-section .section-header h2 {
    font-size: 2rem;
  }
  
  .pricing-faq-section .section-header p {
    font-size: 1rem;
  }
  
  .faq-item {
    padding: 1.5rem;
  }
  
  .faq-question {
    font-size: 1.1rem;
  }
}

/* ===================================
   ENHANCED CTA SECTION
   =================================== */

/* Pricing CTA Section */
.pricing-cta-section {
  background: #0A0A0A;
  background-image: 
    radial-gradient(circle at 30% 70%, rgba(229, 9, 20, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(229, 9, 20, 0.08) 0%, transparent 50%),
    linear-gradient(135deg, #0A0A0A 0%, #1a1a1a 100%);
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
  color: white;
}

.pricing-cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.03) 1px, transparent 0);
  background-size: 50px 50px;
  pointer-events: none;
  animation: float 30s ease-in-out infinite;
}

.pricing-cta-section::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(229, 9, 20, 0.05) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: pulse 8s ease-in-out infinite;
}

/* CTA Content Container */
.cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  padding: 4rem 3rem;
  box-shadow: 
    0 30px 60px rgba(0, 0, 0, 0.4),
    0 0 40px rgba(229, 9, 20, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  animation: fadeInUp 1s ease-out;
}

.cta-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(229, 9, 20, 0.08) 0%, transparent 50%);
  border-radius: 30px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.cta-content:hover::before {
  opacity: 1;
}

/* CTA Heading */
.cta-content h2 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 50%, #E50914 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  position: relative;
  z-index: 1;
}

/* CTA Description */
.cta-content p {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 3rem;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* CTA Buttons Container */
.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* Enhanced Button Styles */
.cta-buttons .btn {
  padding: 1.2rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  min-width: 180px;
  text-align: center;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* Primary Button */
.cta-buttons .btn-primary {
  background: linear-gradient(135deg, #E50914 0%, #B8070F 100%);
  color: white;
  box-shadow: 
    0 15px 35px rgba(229, 9, 20, 0.4),
    0 5px 15px rgba(0, 0, 0, 0.3);
}

.cta-buttons .btn-primary::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.5s;
}

.cta-buttons .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 
    0 20px 45px rgba(229, 9, 20, 0.5),
    0 8px 25px rgba(0, 0, 0, 0.4);
}

.cta-buttons .btn-primary:hover::before {
  left: 100%;
}

/* Secondary Button */
.cta-buttons .btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.cta-buttons .btn-secondary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(229, 9, 20, 0.1) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cta-buttons .btn-secondary:hover {
  transform: translateY(-3px);
  border-color: rgba(229, 9, 20, 0.5);
  box-shadow: 
    0 15px 35px rgba(0, 0, 0, 0.3),
    0 0 25px rgba(229, 9, 20, 0.2);
}

.cta-buttons .btn-secondary:hover::before {
  opacity: 1;
}

/* Button Size Modifier */
.cta-buttons .btn-lg {
  padding: 1.4rem 3rem;
  font-size: 1.2rem;
}

/* Pulse Animation */
@keyframes pulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.3;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.1;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .pricing-cta-section {
    padding: 5rem 0;
  }
  
  .cta-content {
    padding: 3rem 2rem;
    margin: 0 1rem;
    border-radius: 25px;
  }
  
  .cta-content h2 {
    font-size: 2.5rem;
  }
  
  .cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .pricing-cta-section {
    padding: 4rem 0;
  }
  
  .cta-content {
    padding: 2.5rem 1.5rem;
    border-radius: 20px;
  }
  
  .cta-content h2 {
    font-size: 2rem;
  }
  
  .cta-content p {
    font-size: 1rem;
  }
  
  .cta-buttons .btn {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}

/* ===== ENHANCED ABOUT US PAGE STYLES ===== */

/* About Page Hero Section - Matching Home Page Style */
.hero-section {
    background: var(--bg-primary);
    padding: 8rem 0 6rem;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Enhanced About Page Hero Section */
.enhanced-hero {
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.1) 0%, transparent 70%),
                linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

/* Advanced Animations */
@keyframes typewriter {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink {
    0%, 50% { border-color: transparent; }
    51%, 100% { border-color: var(--netflix-red); }
}

.typewriter-effect {
    overflow: hidden;
    white-space: nowrap;
    border-right: 3px solid var(--netflix-red);
    animation: typewriter 3s steps(40) 1s both, blink 1s infinite;
}

.animated-gradient {
    background: linear-gradient(45deg, #3B82F6, #8B5CF6, #E50914, #3B82F6);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Enhanced Badge */
.hero-badge {
    position: relative;
    overflow: hidden;
}

.badge-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Enhanced Buttons */
.enhanced-btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.enhanced-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.4);
}

.btn-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.enhanced-btn:active .btn-ripple {
    width: 300px;
    height: 300px;
}

/* Enhanced Stats */
.enhanced-stats {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
}

.enhanced-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.enhanced-stats:hover::before {
    opacity: 1;
}

.stat {
    position: relative;
    text-align: center;
    padding: 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.stat:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-progress {
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    margin-top: 0.5rem;
    overflow: hidden;
}

.stat-progress::after {
    content: '';
    display: block;
    height: 100%;
    background: linear-gradient(90deg, #3B82F6, #8B5CF6);
    border-radius: 2px;
    width: 0;
    animation: progressFill 2s ease-out forwards;
    animation-delay: 1s;
}

@keyframes progressFill {
    to { width: var(--progress, 0%); }
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.trust-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-2px);
}

.trust-icon {
    font-size: 1rem;
}

/* Enhanced Visual */
.enhanced-visual {
    position: relative;
}

.interactive-mockup {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.interactive-mockup:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: #28ca42;
    font-weight: 600;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #28ca42;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.activity-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.activity-header h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin: 0;
}

.activity-count {
    font-size: 0.75rem;
    color: #28ca42;
    background: rgba(40, 202, 66, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    border: 1px solid rgba(40, 202, 66, 0.3);
}

.member-activity {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.25rem;
    display: block;
}

.member-metrics {
    margin-left: auto;
}

.metric {
    text-align: center;
    background: rgba(59, 130, 246, 0.1);
    padding: 0.5rem;
    border-radius: 8px;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.metric-value {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #3B82F6;
}

.metric-label {
    font-size: 0.625rem;
    color: rgba(255, 255, 255, 0.6);
}

.activity-ring {
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border: 2px solid transparent;
    border-radius: 50%;
    background: linear-gradient(45deg, #3B82F6, #8B5CF6) border-box;
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    animation: rotate 3s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.pulse-status {
    animation: statusPulse 2s infinite;
}

@keyframes statusPulse {
    0%, 100% { 
        box-shadow: 0 0 0 0 rgba(40, 202, 66, 0.7);
    }
    50% { 
        box-shadow: 0 0 0 8px rgba(40, 202, 66, 0);
    }
}

/* Real-time Stats */
.realtime-stats {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stats-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.stats-header h5 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--white);
    margin: 0;
}

.refresh-indicator {
    color: #3B82F6;
}

.rotating {
    animation: rotate 2s linear infinite;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.stats-grid .stat-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.stats-grid .stat-data {
    flex: 1;
}

.stats-grid .stat-number {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--netflix-red);
    display: block;
}

.stats-grid .stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    width: 40px;
    height: 40px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3B82F6;
    animation: floatUpDown 6s ease-in-out infinite;
}

@keyframes floatUpDown {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Enhanced Background */
.enhanced-bg {
    background: 
        radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(229, 9, 20, 0.1) 0%, transparent 50%);
}

.enhanced-orb {
    filter: blur(80px);
    opacity: 0.4;
}

.particle-system {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(59, 130, 246, 0.6);
    border-radius: 50%;
    animation: particleFloat var(--duration, 20s) linear infinite;
    animation-delay: var(--delay, 0s);
}

.particle:nth-child(2n) {
    background: rgba(139, 92, 246, 0.6);
}

.particle:nth-child(3n) {
    background: rgba(229, 9, 20, 0.6);
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) translateX(0px);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) translateX(100px);
        opacity: 0;
    }
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

/* Animation Classes */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: var(--delay, 0s);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-in {
    opacity: 0;
    transform: translateX(-30px);
    animation: slideIn 0.6s ease forwards;
    animation-delay: var(--delay, 0s);
}

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fade-in {
    animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Highlight Text */
.highlight-text {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(139, 92, 246, 0.2));
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #3B82F6;
    font-weight: 600;
}

/* Responsive Enhancements */
@media (max-width: 768px) {
    .trust-indicators {
        justify-content: center;
        gap: 1rem;
    }
    
    .floating-elements {
        display: none;
    }
    
    .particle-system {
        display: none;
    }
    
    .enhanced-stats {
        padding: 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    color: var(--white);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(229, 9, 20, 0.1);
    border: 1px solid rgba(229, 9, 20, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.gradient-text {
    background: linear-gradient(135deg, #3B82F6 0%, #8B5CF6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    max-width: 90%;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #3B82F6 0%, #8B5CF6 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--netflix-red);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* About Hero Section - Legacy Support */
.about-hero-section {
    background: var(--bg-primary);
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(229, 9, 20, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(229, 9, 20, 0.08) 0%, transparent 50%),
        linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
    color: var(--white);
}

.about-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.04) 1px, transparent 0);
    background-size: 40px 40px;
    pointer-events: none;
    animation: float 20s ease-in-out infinite;
}

.title-line {
    display: block;
    color: var(--white);
}

.about-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 24px;
}

.about-hero-subtitle {
    font-size: 1.25rem;
    color: #b3b3b3;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Team Mockup Styles */
.team-mockup {
    background: var(--bg-card);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
}

.mockup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mockup-controls {
    display: flex;
    gap: 0.5rem;
}

.control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.control.red {
    background: #ff5f57;
}

.control.yellow {
    background: #ffbd2e;
}

.control.green {
    background: #28ca42;
}

.mockup-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--white);
}

.mockup-content {
    padding: 2rem;
}

.team-member-preview {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.team-member-preview:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateX(5px);
}

.member-avatar {
    position: relative;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
}

.member-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-status {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--bg-card);
}

.member-status.online {
    background: #28ca42;
}

.member-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin: 0 0 0.25rem 0;
}

.member-info p {
    font-size: 0.875rem;
    color: var(--netflix-red);
    margin: 0 0 0.25rem 0;
    font-weight: 500;
}

.member-role {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
}

.team-stats {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

.stat-icon {
    font-size: 1rem;
}

/* Hero Stats - Legacy Support */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 3rem 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat {
    text-align: center;
}

.hero-stat .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #e50914;
    margin-bottom: 8px;
    font-family: 'Courier New', monospace;
}

.hero-stat .stat-label {
    color: #b3b3b3;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-visual-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Enhanced Visual Cards */
.visual-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.visual-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.visual-card:hover::before {
    left: 100%;
}

.visual-card:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(229, 9, 20, 0.2);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
    display: block;
}

.visual-card h3 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.visual-card p {
    color: #b3b3b3;
    font-size: 0.9rem;
    margin-top: 8px;
    margin-bottom: 0;
}

/* Story Section */
.story-section {
    background: var(--bg-secondary);
    padding: 8rem 0;
    position: relative;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(229, 9, 20, 0.1);
    border: 1px solid rgba(229, 9, 20, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--white);
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.timeline-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.timeline-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.marker-dot {
    width: 20px;
    height: 20px;
    background: var(--netflix-red);
    border-radius: 50%;
    border: 4px solid var(--bg-secondary);
    box-shadow: 0 0 0 4px rgba(229, 9, 20, 0.3);
}

.timeline-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    flex: 1;
    transition: all 0.3s ease;
}

.timeline-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(229, 9, 20, 0.3);
}

/* Company Story Section */
.company-story-section {
    padding: 100px 0;
    background: #0a0a0a;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-description {
    font-size: 1.1rem;
    color: #b3b3b3;
    line-height: 1.7;
    margin-bottom: 24px;
}

.story-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.story-stat {
    text-align: center;
}

.story-stat .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #e50914;
    margin-bottom: 8px;
}

.story-stat .stat-label {
    color: #b3b3b3;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #e50914, #ff6b6b);
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: 700;
    color: #e50914;
    margin-bottom: 8px;
}

.timeline-content h4 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.timeline-content p {
    color: #b3b3b3;
    margin: 0;
}

/* Mission & Vision Section */
.mission-vision-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

.mission-card,
.vision-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.3s ease;
    position: relative;
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.card-header .card-icon {
    font-size: 3rem;
    margin-bottom: 0;
}

.card-header h3 {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0;
}

.mission-card p,
.vision-card p {
    color: #b3b3b3;
    line-height: 1.7;
    font-size: 1.1rem;
    margin: 0;
}

/* Values Section */
.values-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.value-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.value-title {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.value-description {
    color: #b3b3b3;
    line-height: 1.6;
    margin: 0;
}

/* Team Section */
.team-section {
    background: var(--bg-primary);
    padding: 8rem 0;
}

.team-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--netflix-red);
    border-color: var(--netflix-red);
    color: var(--white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.team-member-card {
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.team-member-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border-color: rgba(229, 9, 20, 0.3);
}

.member-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-member-card:hover .member-image img {
    transform: scale(1.1);
}

.member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-member-card:hover .member-overlay {
    opacity: 1;
}

.member-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--netflix-red);
    transform: translateY(-2px);
}

.member-info {
    padding: 2rem;
}

.member-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.member-role {
    color: var(--netflix-red);
    font-weight: 500;
    margin-bottom: 1rem;
}

.member-bio {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.member-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.skill-tag {
    background: rgba(229, 9, 20, 0.1);
    border: 1px solid rgba(229, 9, 20, 0.3);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    color: var(--netflix-red);
    font-weight: 500;
}

/* Enhanced Team Section */
.team-member {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(229, 9, 20, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-member:hover::before {
    opacity: 1;
}

.team-member:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.member-avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #e50914;
    position: relative;
    transition: all 0.3s ease;
}

.member-avatar:hover {
    transform: scale(1.1);
    border-color: #ff6b6b;
}

.member-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.member-avatar:hover .avatar-overlay {
    opacity: 1;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    color: #ffffff;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    color: #e50914;
    transform: scale(1.2);
}

/* About CTA Section */
.about-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #e50914 0%, #ff6b6b 100%);
    text-align: center;
}

.cta-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Achievements Section */
.achievements-section {
    padding: 100px 0;
    background: #0a0a0a;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.achievement-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.achievement-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(229, 9, 20, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.achievement-card:hover::before {
    opacity: 1;
}

.achievement-card:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(229, 9, 20, 0.2);
}

.achievement-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.achievement-card h3 {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.achievement-card p {
    color: #b3b3b3;
    line-height: 1.6;
    margin: 0;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.testimonial-content {
    margin-bottom: 30px;
}

.testimonial-content p {
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.7;
    font-style: italic;
    margin: 0;
    position: relative;
}

.testimonial-content p::before {
    content: '"';
    font-size: 4rem;
    color: #e50914;
    position: absolute;
    top: -20px;
    left: -20px;
    font-family: serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #e50914;
}

.author-info h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.author-info p {
    color: #b3b3b3;
    font-size: 0.9rem;
    margin: 0;
}

/* Counter Animation */
@keyframes countUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.stat-number {
    animation: countUp 0.6s ease-out;
}

/* Background Elements */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #3B82F6, #8B5CF6);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #E50914, #B8070F);
    top: 60%;
    right: 20%;
    animation-delay: -10s;
}

.orb-3 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #8B5CF6, #3B82F6);
    bottom: 20%;
    left: 60%;
    animation-delay: -5s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-20px) rotate(120deg);
    }
    66% {
        transform: translateY(20px) rotate(240deg);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        max-width: 100%;
    }
    
    .hero-actions {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    
    .team-mockup {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .mockup-content {
        padding: 1.5rem;
    }
    
    .team-member-preview {
        padding: 0.75rem;
    }
    
    .member-avatar {
        width: 40px;
        height: 40px;
    }
    
    .member-info h4 {
        font-size: 0.9rem;
    }
    
    .member-info p {
        font-size: 0.8rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .timeline-item {
        flex-direction: column;
        text-align: center;
    }
    
    .team-filters {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .hero-stats {
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
}

/* Enhanced Responsive Design */
@media (max-width: 768px) {
    .about-hero-content,
    .story-content,
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-hero-title {
        font-size: 2.5rem;
    }
    
    .about-visual-grid {
        grid-template-columns: 1fr;
    }
    
    .story-stats {
        justify-content: center;
        gap: 30px;
    }
    
    .timeline {
        padding-left: 30px;
    }
    
    .values-grid,
    .team-grid,
    .achievements-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-slider {
        grid-template-columns: 1fr;
    }
    
    .cta-title {
        font-size: 2.2rem;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .floating-elements {
        display: none;
    }
}

@media (max-width: 480px) {
    .about-hero-section {
        padding: 80px 0 60px;
    }
    
    .about-hero-title {
        font-size: 2rem;
    }
    
    .visual-card,
    .value-card,
    .team-member,
    .achievement-card,
    .testimonial-card {
        padding: 20px;
    }
    
    .mission-card,
    .vision-card {
        padding: 30px 20px;
    }
}

/* ===================================
   FAQ PAGE SPECIFIC STYLES
   =================================== */

/* FAQ Hero Section */
.faq-hero-section {
  background: #0A0A0A;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(229, 9, 20, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(229, 9, 20, 0.05) 0%, transparent 50%);
  padding: 8rem 0 4rem;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.faq-hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.faq-hero-subtitle {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* FAQ Search */
.faq-search-container {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
}

.faq-search-input {
  width: 100%;
  padding: 1rem 3rem 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  color: white;
  font-size: 1rem;
  outline: none;
  transition: all 0.3s ease;
}

.faq-search-input:focus {
  border-color: #E50914;
  box-shadow: 0 0 20px rgba(229, 9, 20, 0.3);
}

.faq-search-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.faq-search-btn {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: color 0.3s ease;
}

.faq-search-btn:hover {
  color: #E50914;
}

/* FAQ Categories */
.faq-categories-section {
  background: #0A0A0A;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-categories {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.faq-category-btn {
  padding: 0.8rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  font-weight: 500;
}

.faq-category-btn:hover,
.faq-category-btn.active {
  background: #E50914;
  border-color: #E50914;
  color: white;
  transform: translateY(-2px);
}

/* FAQ Content Section */
.faq-content-section {
  background: #0A0A0A;
  padding: 4rem 0;
  min-height: 60vh;
}

/* FAQ Items - Enhanced Toggle Functionality */
.faq-item {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.faq-item:hover {
  transform: translateY(-4px);
  border-color: rgba(229, 9, 20, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* FAQ Question */
.faq-question {
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: white;
  margin: 0;
  flex: 1;
  transition: color 0.3s ease;
}

.faq-item:hover .faq-question h3 {
  color: #E50914;
}

/* FAQ Toggle Icon */
.faq-toggle {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
  transform-origin: center;
  min-width: 30px;
  text-align: center;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: #E50914;
}

/* FAQ Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  opacity: 0;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  opacity: 1;
  padding: 0 2rem 2rem;
}

.faq-answer p {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/* Hidden Class for Filtering */
.faq-item.hidden {
  display: none;
}

/* FAQ CTA Section */
.faq-cta-section {
  background: #0A0A0A;
  padding: 4rem 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-cta-content h2 {
  font-size: 2.5rem;
  color: white;
  margin-bottom: 1rem;
}

.faq-cta-content p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
}

.faq-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
  .faq-hero-section {
    padding: 6rem 0 3rem;
  }
  
  .faq-hero-title {
    font-size: 2.5rem;
  }
  
  .faq-categories {
    justify-content: flex-start;
    overflow-x: auto;
    padding: 0 1rem;
  }
  
  .faq-question {
    padding: 1.5rem;
  }
  
  .faq-question h3 {
    font-size: 1.1rem;
  }
  
  .faq-cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .faq-hero-title {
    font-size: 2rem;
  }
  
  .faq-hero-subtitle {
    font-size: 1rem;
  }
  
  .faq-question {
    padding: 1rem;
  }
  
  .faq-item.active .faq-answer {
    padding: 0 1rem 1rem;
  }
}

/* ===== CONTACT PAGE STYLES ===== */

/* ===== ENHANCED CONTACT PAGE STYLES ===== */

/* Contact Hero Section */
.contact-hero-section {
  background: var(--bg-primary);
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(229, 9, 20, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(229, 9, 20, 0.08) 0%, transparent 50%),
    linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  padding: 8rem 0 4rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}

/* ===== ENHANCED PRIVACY POLICY PAGE STYLES ===== */

/* Privacy Hero Section */
.privacy-hero-section {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.privacy-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 75%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 75% 25%, rgba(255, 119, 198, 0.3) 0%, transparent 50%);
    pointer-events: none;
}

.privacy-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.privacy-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 24px;
}

.privacy-hero-subtitle {
    font-size: 1.25rem;
    color: #b3b3b3;
    line-height: 1.6;
    margin-bottom: 40px;
}

.privacy-meta {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.last-updated,
.effective-date {
    color: #e50914;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 16px;
    background: rgba(229, 9, 20, 0.1);
    border: 1px solid rgba(229, 9, 20, 0.3);
    border-radius: 20px;
}

/* Privacy Content Section */
.privacy-content-section {
    padding: 100px 0;
    background: #0a0a0a;
}

.privacy-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
}

/* Sidebar Styles */
.privacy-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: sticky;
    top: 100px;
    height: fit-content;
}

.toc-widget,
.quick-contact-widget {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
}

.toc-title,
.widget-title {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e50914;
}

.toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.toc-list li {
    margin-bottom: 8px;
}

.toc-link {
    color: #b3b3b3;
    text-decoration: none;
    font-size: 0.9rem;
    padding: 8px 12px;
    border-radius: 8px;
    display: block;
    transition: all 0.3s ease;
}

.toc-link:hover,
.toc-link.active {
    color: #ffffff;
    background: rgba(229, 9, 20, 0.1);
    border-left: 3px solid #e50914;
    padding-left: 16px;
}

.contact-description {
    color: #b3b3b3;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

.contact-btn {
    display: inline-block;
    background: #e50914;
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
}

.contact-btn:hover {
    background: #b8070f;
    transform: translateY(-2px);
}

/* Main Content Styles */
.privacy-main {
    max-width: none;
}

.privacy-content {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
}

.privacy-section {
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.privacy-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.section-heading {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e50914;
    display: inline-block;
}

.subsection-heading {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 32px 0 16px 0;
}

.section-content {
    color: #b3b3b3;
    line-height: 1.7;
    font-size: 1rem;
}

.section-content p {
    margin-bottom: 20px;
}

.privacy-list {
    margin: 20px 0;
    padding-left: 20px;
}

.privacy-list li {
    margin-bottom: 12px;
    line-height: 1.6;
}

.privacy-list li strong {
    color: #ffffff;
    font-weight: 600;
}

/* Security Measures */
.security-measures {
    background: rgba(229, 9, 20, 0.05);
    border: 1px solid rgba(229, 9, 20, 0.2);
    border-radius: 12px;
    padding: 24px;
    margin-top: 24px;
}

/* Rights Grid */
.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 24px;
}

.right-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}

.right-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(229, 9, 20, 0.3);
    transform: translateY(-2px);
}

.right-title {
    color: #e50914;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.right-item p {
    color: #b3b3b3;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

/* Contact Info */
.contact-info {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 24px;
    margin-top: 24px;
}

.contact-item {
    margin-bottom: 16px;
    font-size: 1rem;
    color: #b3b3b3;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item strong {
    color: #ffffff;
    font-weight: 600;
    display: inline-block;
    min-width: 80px;
}

/* Smooth Scrolling for TOC Links */
html {
    scroll-behavior: smooth;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .privacy-layout {
        grid-template-columns: 250px 1fr;
        gap: 40px;
    }
    
    .privacy-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .privacy-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .privacy-sidebar {
        order: -1;
    }
    
    .privacy-hero-title {
        font-size: 2.5rem;
    }
    
    .privacy-meta {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    
    .privacy-content {
        padding: 30px 20px;
    }
    
    .section-heading {
        font-size: 1.6rem;
    }
    
    .rights-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .privacy-hero-section {
        padding: 80px 0 60px;
    }
    
    .privacy-hero-title {
        font-size: 2rem;
    }
    
    .privacy-content-section {
        padding: 60px 0;
    }
    
    .toc-widget,
    .quick-contact-widget {
        padding: 20px;
    }
    
    .privacy-content {
        padding: 20px 16px;
    }
}

/* Print Styles */
@media print {
    .privacy-sidebar {
        display: none;
    }
    
    .privacy-layout {
        grid-template-columns: 1fr;
    }
    
    .privacy-hero-section {
        background: none;
        color: #000;
    }
    
    .privacy-hero-title,
    .section-heading,
    .subsection-heading {
        color: #000;
    }
    
    .section-content,
    .privacy-list li {
        color: #333;
    }
}

.contact-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.04) 1px, transparent 0);
  background-size: 40px 40px;
  pointer-events: none;
  animation: float 20s ease-in-out infinite;
}

.contact-hero-content {
  position: relative;
  z-index: 1;
}

.contact-hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.contact-hero-subtitle {
  font-size: clamp(1.125rem, 3vw, 1.5rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-accent-line {
  width: 100px;
  height: 4px;
  background: var(--gradient-primary);
  margin: 0 auto;
  border-radius: 2px;
  box-shadow: 0 4px 15px rgba(229, 9, 20, 0.4);
}

/* Contact Form Section */
.contact-form-section {
  background: var(--bg-primary);
  padding: 6rem 0;
  position: relative;
}

.contact-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

/* Contact Form Container */
.contact-form-container {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
}

.contact-form-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  border-color: rgba(229, 9, 20, 0.3);
}

.form-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.form-header h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}

.form-header p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
}

/* Form Styles */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-label {
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.form-input,
.form-textarea {
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  color: var(--white);
  font-size: 1rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--netflix-red);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 3px rgba(229, 9, 20, 0.2);
  transform: translateY(-2px);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
  font-family: inherit;
}

.form-error {
  color: #ff6b6b;
  font-size: 0.875rem;
  margin-top: 0.5rem;
  display: none;
}

.form-error.show {
  display: block;
}

/* Submit Button */
.contact-submit-btn {
  margin-top: 1rem;
  padding: 1.25rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  gap: 0.75rem;
  transition: all 0.3s ease;
}

.contact-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(229, 9, 20, 0.4);
}

.contact-submit-btn:hover .btn-icon {
  transform: translateX(5px);
}

.btn-icon {
  transition: transform 0.3s ease;
}

.form-message {
  text-align: center;
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1rem;
  display: none;
}

.form-message.success {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #22c55e;
  display: block;
}

.form-message.error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #ef4444;
  display: block;
}

/* Contact Info Container */
.contact-info-container {
  padding: 2rem 0;
}

.contact-info-container h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}

.contact-info-container > p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
  text-align: center;
}

.contact-info-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(229, 9, 20, 0.3);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.contact-info-card:hover .contact-icon {
  transform: scale(1.1);
  box-shadow: 0 10px 20px rgba(229, 9, 20, 0.4);
}

.contact-icon svg {
  color: var(--white);
}

.contact-info-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.contact-info-card p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
}

.contact-link {
  color: var(--netflix-red);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: var(--primary-red-light);
}

/* Enhanced Map Section */
.contact-map-section {
  background: var(--bg-secondary);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.contact-map-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(229, 9, 20, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(229, 9, 20, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.map-container {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.1);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.map-container:hover {
  transform: translateY(-5px);
  box-shadow: 
    0 35px 70px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.15);
}

.map-placeholder {
  height: 450px;
  background: 
    linear-gradient(135deg, 
      rgba(229, 9, 20, 0.1) 0%, 
      rgba(30, 30, 30, 0.9) 25%,
      rgba(20, 20, 20, 0.95) 75%,
      rgba(229, 9, 20, 0.1) 100%
    ),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="enhanced-grid" width="8" height="8" patternUnits="userSpaceOnUse"><path d="M 8 0 L 0 0 0 8" fill="none" stroke="%23444" stroke-width="0.3" opacity="0.6"/></pattern><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="0.8" fill="%23e50914" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23enhanced-grid)"/><rect width="100" height="100" fill="url(%23dots)"/></svg>');
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: mapPulse 4s ease-in-out infinite;
}

@keyframes mapPulse {
  0%, 100% { background-size: 100% 100%, 20px 20px; }
  50% { background-size: 105% 105%, 22px 22px; }
}

.map-overlay {
  background: 
    linear-gradient(135deg, 
      rgba(0, 0, 0, 0.8) 0%, 
      rgba(20, 20, 20, 0.9) 100%
    );
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  position: relative;
  transform: scale(0.95);
  transition: all 0.4s ease;
  box-shadow: 
    0 15px 35px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.map-overlay:hover {
  transform: scale(1);
  border-color: rgba(229, 9, 20, 0.3);
  box-shadow: 
    0 20px 45px rgba(0, 0, 0, 0.4),
    0 0 30px rgba(229, 9, 20, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.map-overlay::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, 
    transparent 0%, 
    rgba(229, 9, 20, 0.1) 25%, 
    transparent 50%, 
    rgba(229, 9, 20, 0.1) 75%, 
    transparent 100%
  );
  border-radius: 22px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.map-overlay:hover::before {
  opacity: 1;
}

.map-content {
  position: relative;
  z-index: 2;
}

.map-content h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  position: relative;
}

.map-content h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--netflix-red), transparent);
  border-radius: 1px;
}

.map-content p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  line-height: 1.7;
  font-size: 1.1rem;
  font-weight: 400;
}

.map-content .btn {
  position: relative;
  overflow: hidden;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.map-content .btn::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.6s ease;
}

.map-content .btn:hover::before {
  left: 100%;
}

/* Location Pin Animation */
.map-content::before {
  content: '📍';
  position: absolute;
  top: -15px;
  right: -15px;
  font-size: 1.5rem;
  animation: pinBounce 2s ease-in-out infinite;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

@keyframes pinBounce {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-5px) scale(1.1); }
}



/* Responsive Design */
@media (max-width: 1024px) {
  .contact-content-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .contact-form-container {
    order: 2;
  }
  
  .contact-info-container {
    order: 1;
  }
}

@media (max-width: 768px) {
  .contact-hero-section {
    padding: 6rem 0 3rem;
  }
  
  .contact-form-section {
    padding: 4rem 0;
  }
  
  .contact-form-container {
    padding: 2rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .contact-info-cards {
    gap: 1rem;
  }
  
  .contact-info-card {
    padding: 1.5rem;
  }
  
  .social-links {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .social-link {
    width: 200px;
    justify-content: center;
  }

/* Social Links */
.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  font-weight: 500;
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--netflix-red);
  color: var(--netflix-red);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.social-link svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.social-link:hover svg {
  transform: scale(1.1);
}
}

@media (max-width: 480px) {
  .contact-hero-title {
    font-size: 2.5rem;
  }
  
  .contact-form-container {
    padding: 1.5rem;
  }
  
  .form-header h2 {
    font-size: 1.5rem;
  }
  
  .contact-submit-btn {
    padding: 1rem 1.5rem;
  }
  
  .contact-map-section {
    padding: 3rem 0;
  }
  
  .map-placeholder {
    height: 350px;
  }
  
  .map-overlay {
    padding: 2rem;
    margin: 1rem;
  }
  
  .map-content h3 {
    font-size: 1.5rem;
  }
  
  .map-content p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .map-placeholder {
    height: 300px;
  }
  
  .map-overlay {
    padding: 1.5rem;
    margin: 0.5rem;
  }
  
  .map-content h3 {
    font-size: 1.3rem;
  }
}

/* Animation for form validation */
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  75% { transform: translateX(5px); }
}

.form-input.error,
.form-textarea.error {
  border-color: #ef4444;
  animation: shake 0.5s ease-in-out;
}

/* Loading state for submit button */
.contact-submit-btn.loading {
  pointer-events: none;
  opacity: 0.7;
}

.contact-submit-btn.loading .btn-text {
  opacity: 0;
}

.contact-submit-btn.loading::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid transparent;
  border-top: 2px solid var(--white);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Glass Effect Utilities */
.glass {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.glass-heavy { backdrop-filter: var(--glass-blur-heavy); }
.glass-light { backdrop-filter: var(--glass-blur-light); }

/* Netflix Button Utilities */
.btn-netflix {
  background: linear-gradient(135deg, var(--netflix-red) 0%, var(--netflix-red-dark) 100%);
  border: none;
  color: white;
  transition: all 0.3s ease;
}

.btn-netflix:hover {
  background: linear-gradient(135deg, var(--netflix-red-light) 0%, var(--netflix-red) 100%);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

/* Shadow Utilities */
.shadow-netflix-sm { box-shadow: var(--shadow-sm); }
.shadow-netflix-md { box-shadow: var(--shadow-md); }
.shadow-netflix-lg { box-shadow: var(--shadow-lg); }

/* ===== ENHANCED BLOG PAGE STYLES ===== */

/* Blog Hero Section */
.blog-hero-section {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.blog-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(255, 119, 198, 0.3) 0%, transparent 50%);
    pointer-events: none;
}

.blog-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.blog-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 24px;
}

.blog-hero-subtitle {
    font-size: 1.25rem;
    color: #b3b3b3;
    line-height: 1.6;
    margin-bottom: 40px;
}

.blog-search {
    max-width: 500px;
    margin: 0 auto;
}

.search-form {
    position: relative;
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    overflow: hidden;
}

.search-input {
    flex: 1;
    padding: 16px 24px;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 1rem;
    outline: none;
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.search-btn {
    padding: 16px 20px;
    background: #e50914;
    border: none;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background: #b8070f;
}

/* ===================================
   THANK YOU PAGE STYLES
   =================================== */

.thank-you-page {
  background: var(--bg-primary);
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(229, 9, 20, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(229, 9, 20, 0.08) 0%, transparent 50%),
    linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 0;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.thank-you-page::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.04) 1px, transparent 0);
  background-size: 40px 40px;
  pointer-events: none;
  animation: float 30s linear infinite;
  opacity: 0.3;
}

.thank-you-content {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(25px);
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 4rem 3rem;
  text-align: center;
  max-width: 600px;
  width: 90%;
  margin: 0 auto;
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1;
}

.thank-you-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: 30px 30px 0 0;
}

.success-icon {
  margin-bottom: 2rem;
  animation: successPulse 2s ease-in-out infinite;
}

.success-icon i {
  font-size: 5rem;
  color: #22c55e;
  text-shadow: 0 0 30px rgba(34, 197, 94, 0.5);
}

@keyframes successPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

.thank-you-content h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--white);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  background: linear-gradient(135deg, var(--white) 0%, #f8f8f8 50%, var(--white) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.thank-you-content > p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 3rem;
  line-height: 1.6;
}

.next-steps {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem;
  margin: 2rem 0 3rem;
  text-align: left;
}

.next-steps h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--netflix-red);
  margin-bottom: 1.5rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.next-steps ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.next-steps li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.5;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all var(--transition-fast);
}

.next-steps li:last-child {
  border-bottom: none;
}

.next-steps li:hover {
  color: var(--white);
  padding-left: 1rem;
}

.next-steps li::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--gradient-primary);
  border-radius: 50%;
  color: white;
  font-size: 0.8rem;
  font-weight: bold;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(229, 9, 20, 0.3);
}

.dashboard-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 2.5rem;
  background: var(--gradient-primary);
  border: none;
  border-radius: var(--radius-lg);
  color: var(--white);
  font-size: 1.125rem;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(229, 9, 20, 0.4);
  margin-top: 1rem;
}

.dashboard-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;
}

.dashboard-button:hover::before {
  left: 100%;
}

.dashboard-button:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 40px rgba(229, 9, 20, 0.5);
  text-decoration: none;
  color: var(--white);
}

.dashboard-button::after {
  content: '→';
  font-size: 1.2rem;
  transition: transform var(--transition-normal);
}

.dashboard-button:hover::after {
  transform: translateX(5px);
}

/* Floating Animation */
@keyframes float {
  0%, 100% {
    transform: translateY(0px) translateX(0px);
  }
  33% {
    transform: translateY(-10px) translateX(5px);
  }
  66% {
    transform: translateY(5px) translateX(-5px);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .thank-you-page {
    padding: 2rem 0;
  }
  
  .thank-you-content {
    padding: 3rem 2rem;
    margin: 0 1rem;
  }
  
  .success-icon i {
    font-size: 4rem;
  }
  
  .next-steps {
    padding: 1.5rem;
    margin: 1.5rem 0 2rem;
  }
  
  .next-steps li {
    padding: 0.75rem 0;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .thank-you-content {
    padding: 2rem 1.5rem;
  }
  
  .success-icon i {
    font-size: 3rem;
  }
  
  .dashboard-button {
    padding: 1rem 2rem;
    font-size: 1rem;
    width: 100%;
    justify-content: center;
  }
  
  .next-steps {
    padding: 1rem;
  }
}

/* ===================================
   CHECKOUT PAGE STYLES
   =================================== */

.checkout-page {
  background: var(--bg-primary);
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(229, 9, 20, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(229, 9, 20, 0.08) 0%, transparent 50%),
    linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  min-height: 100vh;
  padding: 2rem 0;
  color: var(--white);
}

/* Progress Indicator */
.checkout-progress {
  margin-bottom: 3rem;
}

.progress-steps {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  max-width: 600px;
  margin: 0 auto;
}

.step {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all var(--transition-normal);
}

.step.active {
  background: rgba(229, 9, 20, 0.2);
  border-color: var(--netflix-red);
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  font-weight: 600;
  font-size: 0.9rem;
}

.step.active .step-number {
  background: var(--netflix-red);
  color: white;
}

.step-label {
  font-weight: 500;
  font-size: 0.9rem;
}

/* Checkout Content Layout */
.checkout-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Order Summary */
.summary-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(25px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 2rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  position: sticky;
  top: 2rem;
}

.summary-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--white);
  text-align: center;
}

.selected-plan {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  background: rgba(229, 9, 20, 0.1);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(229, 9, 20, 0.3);
  margin-bottom: 1.5rem;
}

.plan-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.plan-description {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin: 0;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.plan-price .currency {
  font-size: 1rem;
  color: var(--netflix-red);
}

.plan-price .amount {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
}

.plan-price .period {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Plan Features */
.plan-features h5 {
  color: var(--white);
  margin-bottom: 1rem;
  font-weight: 600;
}

.plan-features ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
}

.plan-features i {
  color: var(--netflix-red);
  font-size: 0.8rem;
}

/* Pricing Breakdown */
.pricing-breakdown {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.price-row {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  color: rgba(255, 255, 255, 0.8);
}

.price-row.total {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 0.5rem;
  padding-top: 1rem;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
}

/* Plan Selector */
.plan-selector h5 {
  color: var(--white);
  margin-bottom: 1rem;
  font-weight: 600;
}

.plan-options {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.plan-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  color: var(--white);
  cursor: pointer;
  transition: all var(--transition-normal);
}

.plan-option:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.plan-option.active {
  background: rgba(229, 9, 20, 0.2);
  border-color: var(--netflix-red);
}

.plan-option .plan-name {
  font-weight: 600;
  font-size: 0.9rem;
}

.plan-option .plan-price {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Payment Section */
.payment-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(25px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 2rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* Security Badge */
.security-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: var(--radius-lg);
  margin-bottom: 2rem;
  color: #22c55e;
  font-weight: 600;
}

.security-icons {
  display: flex;
  gap: 0.5rem;
}

.ssl-badge, .pci-badge {
  padding: 0.25rem 0.5rem;
  background: rgba(34, 197, 94, 0.2);
  border-radius: var(--radius-sm);
  font-size: 0.7rem;
  font-weight: 700;
}

/* Form Styles */
.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.form-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-section h4 {
  color: var(--white);
  font-weight: 600;
  margin-bottom: 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  color: var(--white);
  font-weight: 500;
  font-size: 0.9rem;
}

.form-group input {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  color: var(--white);
  font-size: 1rem;
  transition: all var(--transition-normal);
  backdrop-filter: blur(10px);
}

.form-group input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus {
  outline: none;
  border-color: var(--netflix-red);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 3px rgba(229, 9, 20, 0.2);
}

.form-group input.error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.2);
}

.error-message {
  color: #ef4444;
  font-size: 0.8rem;
  margin-top: 0.25rem;
  display: none;
}

.error-message.show {
  display: block;
}

/* Stripe Card Element */
.card-element {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
  transition: all var(--transition-normal);
}

.card-element:focus-within {
  border-color: var(--netflix-red);
  box-shadow: 0 0 0 3px rgba(229, 9, 20, 0.2);
}

/* Terms Checkbox */
.terms-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.terms-checkbox input[type="checkbox"] {
  margin-top: 0.25rem;
  accent-color: var(--netflix-red);
}

.terms-checkbox label {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  line-height: 1.5;
}

.terms-checkbox a {
  color: var(--netflix-red);
  text-decoration: none;
}

.terms-checkbox a:hover {
  text-decoration: underline;
}

/* Payment Button */
.payment-button {
  width: 100%;
  padding: 1.25rem 2rem;
  background: var(--gradient-primary);
  border: none;
  border-radius: var(--radius-lg);
  color: var(--white);
  font-size: 1.125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(229, 9, 20, 0.4);
}

.payment-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;
}

.payment-button:hover::before {
  left: 100%;
}

.payment-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(229, 9, 20, 0.5);
}

.payment-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.button-loader {
  margin-left: 0.5rem;
}

/* Trust Indicators */
.trust-indicators {
  display: flex;
  justify-content: space-around;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  text-align: center;
}

.trust-item i {
  color: #22c55e;
  font-size: 1.5rem;
}

/* Modals */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

.modal-content {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(25px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 3rem 2rem;
  text-align: center;
  max-width: 400px;
  width: 90%;
  color: var(--white);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.modal-content.error {
  border-color: rgba(239, 68, 68, 0.3);
}

.success-icon, .error-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.success-icon {
  color: #22c55e;
}

.error-icon {
  color: #ef4444;
}

.modal-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.modal-content p {
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.8);
}

.success-button, .error-button {
  padding: 1rem 2rem;
  border: none;
  border-radius: var(--radius-lg);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.success-button {
  background: #22c55e;
  color: white;
}

.error-button {
  background: #ef4444;
  color: white;
}

.success-button:hover, .error-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .checkout-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .summary-card {
    position: static;
  }
}

@media (max-width: 768px) {
  .checkout-page {
    padding: 1rem 0;
  }
  
  .progress-steps {
    flex-direction: column;
    gap: 1rem;
  }
  
  .step {
    width: 100%;
    justify-content: center;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .trust-indicators {
    flex-direction: column;
    gap: 1rem;
  }
  
  .plan-options {
    gap: 0.75rem;
  }
}

@media (max-width: 480px) {
  .summary-card, .payment-card {
    padding: 1.5rem;
  }
  
  .selected-plan {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .modal-content {
    padding: 2rem 1.5rem;
  }
}

/* Cookie Policy Page Styles */
.cookie-policy-page {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    min-height: 100vh;
    padding: 0;
    position: relative;
    overflow-x: hidden;
}

.cookie-policy-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* Hero Section */
.cookie-hero-section {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
}

.cookie-hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cookie-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cookie-hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.last-updated {
    display: inline-block;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    color: #3b82f6;
    font-size: 0.9rem;
}

/* Content Wrapper */
.cookie-content-wrapper {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
    position: relative;
    z-index: 2;
}

/* Sidebar */
.cookie-sidebar {
    position: sticky;
    top: 2rem;
    height: fit-content;
}

.cookie-toc {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.cookie-toc h3 {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-toc ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cookie-toc li {
    margin-bottom: 0.75rem;
}

.cookie-toc a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: block;
    padding: 0.5rem 0;
    border-left: 2px solid transparent;
    padding-left: 1rem;
}

.cookie-toc a:hover {
    color: #3b82f6;
    border-left-color: #3b82f6;
    transform: translateX(5px);
}

.quick-contact {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
}

.quick-contact h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.quick-contact p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.contact-btn {
    display: inline-block;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

/* Main Content */
.cookie-main-content {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
}

.cookie-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.section-heading {
    color: #fff;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1rem;
}

.section-heading::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 2px;
}

.section-content {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-size: 1rem;
}

.section-content p {
    margin-bottom: 1.5rem;
}

.section-content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.section-content li {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Cookie Purposes */
.cookie-purposes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.purpose-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.purpose-item:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.purpose-item h4 {
    color: #3b82f6;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.purpose-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Cookie Types */
.cookie-types {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.cookie-type {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.cookie-type:hover {
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateX(10px);
}

.cookie-type h4 {
    color: #10b981;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.cookie-type p {
    margin-bottom: 1rem;
}

.cookie-type ul {
    margin: 0;
    padding-left: 1.5rem;
}

/* Third Party List */
.third-party-list {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.third-party-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.third-party-item:hover {
    border-color: rgba(139, 92, 246, 0.3);
    transform: translateY(-3px);
}

.third-party-item h4 {
    color: #8b5cf6;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

/* Management Options */
.management-options {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.option-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
}

.option-item h4 {
    color: #f59e0b;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.cookie-settings-btn {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.cookie-settings-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.3);
}

/* Retention Info */
.retention-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.retention-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.retention-item:hover {
    transform: translateY(-5px);
    border-color: rgba(16, 185, 129, 0.3);
}

.retention-item h4 {
    color: #10b981;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

/* Contact Info */
.contact-info {
    display: grid;
    gap: 1rem;
    margin-top: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 2rem;
}

.contact-item {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

.contact-item strong {
    color: #3b82f6;
    margin-right: 0.5rem;
}

/* Links */
.section-content a {
    color: #3b82f6;
    text-decoration: none;
    transition: all 0.3s ease;
}

.section-content a:hover {
    color: #8b5cf6;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .cookie-content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cookie-sidebar {
        position: static;
        order: -1;
    }
    
    .cookie-toc {
        margin-bottom: 1rem;
    }
}

@media (max-width: 768px) {
    .cookie-hero-title {
        font-size: 2.5rem;
    }
    
    .cookie-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .cookie-content-wrapper {
        padding: 2rem 1rem;
    }
    
    .cookie-main-content {
        padding: 2rem;
    }
    
    .section-heading {
        font-size: 1.75rem;
    }
    
    .cookie-purposes {
        grid-template-columns: 1fr;
    }
    
    .retention-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .cookie-hero-section {
        padding: 80px 0 60px;
    }
    
    .cookie-hero-title {
        font-size: 2rem;
    }
    
    .cookie-main-content {
        padding: 1.5rem;
    }
    
    .section-heading {
        font-size: 1.5rem;
    }
}

/* Print Styles */
@media print {
    .cookie-policy-page {
        background: white !important;
        color: black !important;
    }
    
    .cookie-sidebar {
        display: none;
    }
    
    .cookie-content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .cookie-main-content {
        background: white !important;
        border: none !important;
        box-shadow: none !important;
    }
    
    .section-heading {
        color: black !important;
    }
    
    .section-content {
        color: black !important;
    }
}

/* Terms of Service Page Styles */
.terms-page {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    min-height: 100vh;
    padding: 0;
    position: relative;
    overflow-x: hidden;
}

.terms-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* Hero Section */
.terms-hero-section {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
}

.terms-hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.terms-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.terms-hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Content Wrapper */
.terms-content-wrapper {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
    position: relative;
    z-index: 2;
}

/* Sidebar */
.terms-sidebar {
    position: sticky;
    top: 2rem;
    height: fit-content;
}

.terms-toc {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.terms-toc h3 {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.terms-toc ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.terms-toc li {
    margin-bottom: 0.75rem;
}

.terms-toc a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: block;
    padding: 0.5rem 0;
    border-left: 2px solid transparent;
    padding-left: 1rem;
}

.terms-toc a:hover {
    color: #3b82f6;
    border-left-color: #3b82f6;
    transform: translateX(5px);
}

/* Main Content */
.terms-main-content {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
}

.terms-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.terms-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.section-heading {
    color: #fff;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1rem;
}

.section-heading::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 2px;
}

.section-content {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-size: 1rem;
}

.section-content p {
    margin-bottom: 1.5rem;
}

.section-content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.section-content li {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Important Notice */
.important-notice {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.important-notice h4 {
    color: #f59e0b;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.important-notice p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
}

/* Service List */
.service-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.service-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.service-item h4 {
    color: #3b82f6;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.service-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Account Security */
.account-security {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.account-security h4 {
    color: #10b981;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

/* Use Guidelines */
.use-guidelines {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.guideline-category {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
}

.guideline-category h4 {
    color: #10b981;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

/* Prohibited List */
.prohibited-list {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.prohibited-category {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 15px;
    padding: 2rem;
}

.prohibited-category h4 {
    color: #ef4444;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

/* IP Sections */
.ip-sections {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.ip-section {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 1.5rem;
}

.ip-section h4 {
    color: #8b5cf6;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

/* Privacy Highlights */
.privacy-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.privacy-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
}

.privacy-item h4 {
    color: #3b82f6;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

/* Payment Info */
.payment-info {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.payment-section {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
}

.payment-section h4 {
    color: #f59e0b;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

/* Termination Types */
.termination-types {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.termination-type {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
}

.termination-type h4 {
    color: #ef4444;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

/* Disclaimer List */
.disclaimer-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.disclaimer-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 1.5rem;
}

.disclaimer-item h4 {
    color: #f59e0b;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

/* Liability Limits */
.liability-limits {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.limit-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 1.5rem;
}

.limit-item h4 {
    color: #ef4444;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

/* Legal Info */
.legal-info {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.legal-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 1.5rem;
}

.legal-item h4 {
    color: #8b5cf6;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

/* Change Notice */
.change-notice {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.change-notice h4 {
    color: #3b82f6;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

/* Contact Info */
.contact-info {
    display: grid;
    gap: 1rem;
    margin-top: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 2rem;
}

.contact-item {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

.contact-item strong {
    color: #3b82f6;
    margin-right: 0.5rem;
}

.business-hours {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.business-hours h4 {
    color: #10b981;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

/* Links */
.section-content a {
    color: #3b82f6;
    text-decoration: none;
    transition: all 0.3s ease;
}

.section-content a:hover {
    color: #8b5cf6;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .terms-content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .terms-sidebar {
        position: static;
        order: -1;
    }
    
    .terms-toc {
        margin-bottom: 1rem;
    }
}

@media (max-width: 768px) {
    .terms-hero-title {
        font-size: 2.5rem;
    }
    
    .terms-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .terms-content-wrapper {
        padding: 2rem 1rem;
    }
    
    .terms-main-content {
        padding: 2rem;
    }
    
    .section-heading {
        font-size: 1.75rem;
    }
    
    .service-list {
        grid-template-columns: 1fr;
    }
    
    .privacy-highlights {
        grid-template-columns: 1fr;
    }
    
    .disclaimer-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .terms-hero-section {
        padding: 80px 0 60px;
    }
    
    .terms-hero-title {
        font-size: 2rem;
    }
    
    .terms-main-content {
        padding: 1.5rem;
    }
    
    .section-heading {
        font-size: 1.5rem;
    }
}

/* Print Styles */
@media print {
    .terms-page {
        background: white !important;
        color: black !important;
    }
    
    .terms-sidebar {
        display: none;
    }
    
    .terms-content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .terms-main-content {
        background: white !important;
        border: none !important;
        box-shadow: none !important;
    }
    
    .section-heading {
        color: black !important;
    }
    
    .section-content {
        color: black !important;
    }
}

/* ===== REFUND POLICY PAGE STYLES ===== */

/* Hero Section */
.refund-hero-section {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.refund-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(229, 9, 20, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(120, 119, 198, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.refund-hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.refund-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 24px;
}

.refund-hero-subtitle {
    font-size: 1.25rem;
    color: #b3b3b3;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.policy-meta {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.meta-label {
    color: #b3b3b3;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.meta-value {
    color: #e50914;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Summary Section */
.refund-summary-section {
    padding: 80px 0;
    background: #0a0a0a;
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.summary-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.summary-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.summary-card .card-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    display: block;
}

.summary-card h3 {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.summary-card p {
    color: #b3b3b3;
    margin: 0;
    line-height: 1.5;
}

/* Table of Contents */
.refund-toc-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.toc-wrapper {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
}

.toc-title {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: center;
}

.toc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.toc-list li {
    margin-bottom: 12px;
}

.toc-list a {
    color: #b3b3b3;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: block;
    padding: 8px 0;
    border-bottom: 1px solid transparent;
}

.toc-list a:hover {
    color: #e50914;
    border-bottom-color: rgba(229, 9, 20, 0.3);
    padding-left: 10px;
}

/* Main Content */
.refund-content-section {
    padding: 80px 0;
    background: #0a0a0a;
}

.content-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 60px;
}

.main-content {
    max-width: none;
}

.content-block {
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.content-block:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.section-title {
    color: #ffffff;
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #e50914, #ff6b6b);
    border-radius: 2px;
}

.content-text {
    color: #b3b3b3;
    line-height: 1.7;
    font-size: 1.1rem;
}

.content-text h3 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 30px 0 20px 0;
}

.content-text h4 {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 25px 0 15px 0;
}

.content-text ul {
    margin: 20px 0;
    padding-left: 20px;
}

.content-text li {
    margin-bottom: 8px;
    position: relative;
}

.content-text li::marker {
    color: #e50914;
}

.content-text a {
    color: #e50914;
    text-decoration: none;
    transition: all 0.3s ease;
}

.content-text a:hover {
    color: #ff6b6b;
    text-decoration: underline;
}

/* Process Steps */
.process-steps {
    margin: 30px 0;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border-left: 4px solid #e50914;
}

.step-number {
    background: #e50914;
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h4 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.step-content p {
    color: #b3b3b3;
    margin: 0;
    line-height: 1.6;
}

/* Info Boxes */
.info-box,
.warning-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 25px;
    margin: 25px 0;
}

.warning-box {
    border-left: 4px solid #ff6b6b;
    background: rgba(255, 107, 107, 0.1);
}

.info-box h4,
.warning-box h4 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

/* Timeframe Grid */
.timeframe-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.timeframe-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.timeframe-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.timeframe-card h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.timeframe {
    color: #e50914;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
}

.timeframe-card p {
    color: #b3b3b3;
    font-size: 0.9rem;
    margin: 0;
}

/* Methods Grid */
.methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.method-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
}

.method-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.method-card h4 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.method-card p {
    color: #b3b3b3;
    margin: 0;
    line-height: 1.6;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.contact-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.contact-card h4 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.contact-card p {
    color: #b3b3b3;
    margin-bottom: 8px;
    line-height: 1.5;
}

.contact-card p:last-child {
    margin-bottom: 0;
}

/* Sidebar */
.sidebar {
    position: relative;
}

.sidebar-widget {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
}

.sticky-widget {
    position: sticky;
    top: 100px;
}

.sidebar-widget h3 {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

.quick-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
}

.action-btn.primary {
    background: #e50914;
    color: #ffffff;
    border: 2px solid #e50914;
}

.action-btn.primary:hover {
    background: #ff6b6b;
    border-color: #ff6b6b;
    transform: translateY(-2px);
}

.action-btn.secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.action-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.action-btn.tertiary {
    background: transparent;
    color: #b3b3b3;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.action-btn.tertiary:hover {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.btn-icon {
    font-size: 1.1rem;
}

.help-content {
    text-align: center;
}

.help-content p {
    color: #b3b3b3;
    line-height: 1.6;
    margin-bottom: 15px;
}

.help-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.help-content li {
    color: #b3b3b3;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

/* FAQ Section */
.refund-faq-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.faq-item h4 {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.4;
}

.faq-item p {
    color: #b3b3b3;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .refund-hero-title {
        font-size: 2.5rem;
    }
    
    .policy-meta {
        flex-direction: column;
        gap: 20px;
    }
    
    .summary-grid {
        grid-template-columns: 1fr;
    }
    
    .toc-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .content-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .sidebar {
        order: -1;
    }
    
    .sticky-widget {
        position: static;
    }
    
    .timeframe-grid,
    .methods-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .refund-hero-section {
        padding: 80px 0 60px;
    }
    
    .refund-hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .sidebar-widget,
    .summary-card,
    .faq-item,
    .contact-card,
    .method-card,
    .timeframe-card {
        padding: 20px;
    }
    
    .toc-wrapper {
        padding: 25px;
    }
}

/* Featured Posts Section */
.featured-posts-section {
    padding: 100px 0;
    background: #0a0a0a;
}

.featured-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.featured-post {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.featured-post:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.featured-post-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.featured-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.featured-post:hover .featured-post-image img {
    transform: scale(1.05);
}

.placeholder-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
}

.post-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
}

.post-category {
    background: #e50914;
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.featured-post-content {
    padding: 30px;
}

.post-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 16px;
    font-size: 0.9rem;
    color: #b3b3b3;
}

.post-title {
    margin-bottom: 16px;
}

.post-title a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.post-title a:hover {
    color: #e50914;
}

.post-excerpt {
    color: #b3b3b3;
    line-height: 1.6;
    margin-bottom: 24px;
}

.read-more-btn {
    color: #e50914;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    color: #ffffff;
    gap: 12px;
}

.read-more-btn::after {
    content: '→';
    transition: transform 0.3s ease;
}

.read-more-btn:hover::after {
    transform: translateX(4px);
}

/* Blog Content Section */
.blog-content-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.blog-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 60px;
}

.blog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
    gap: 20px;
}

.blog-filters {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    color: #b3b3b3;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: #e50914;
    border-color: #e50914;
    color: #ffffff;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.blog-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.blog-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.card-overlay {
    position: absolute;
    top: 16px;
    left: 16px;
}

.card-category {
    background: rgba(229, 9, 20, 0.9);
    color: #ffffff;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-card-content {
    padding: 24px;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 0.8rem;
    color: #b3b3b3;
}

.card-title {
    margin-bottom: 12px;
}

.card-title a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.card-title a:hover {
    color: #e50914;
}

.card-excerpt {
    color: #b3b3b3;
    line-height: 1.5;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author-name {
    color: #b3b3b3;
    font-size: 0.8rem;
}

.card-link {
    color: #e50914;
    padding: 8px;
    border-radius: 50%;
    background: rgba(229, 9, 20, 0.1);
    transition: all 0.3s ease;
}

.card-link:hover {
    background: #e50914;
    color: #ffffff;
    transform: scale(1.1);
}

/* Sidebar Styles */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.sidebar-widget {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
}

.widget-title {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e50914;
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-item {
    margin-bottom: 12px;
}

.category-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.category-link:hover {
    background: rgba(229, 9, 20, 0.1);
    border-color: #e50914;
}

.category-name {
    color: #ffffff;
    font-weight: 500;
}

.category-count {
    background: #e50914;
    color: #ffffff;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.recent-posts {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.recent-post {
    display: flex;
    gap: 16px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.recent-post:hover {
    background: rgba(255, 255, 255, 0.08);
}

.recent-post-image {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.recent-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.placeholder-thumb {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
}

.recent-post-content {
    flex: 1;
}

.recent-post-title a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.recent-post-title a:hover {
    color: #e50914;
}

.recent-post-date {
    color: #b3b3b3;
    font-size: 0.8rem;
    margin-top: 4px;
    display: block;
}

/* Newsletter Widget */
.newsletter-widget {
    background: linear-gradient(135deg, #e50914, #ff6b6b) !important;
    border: none !important;
}

.newsletter-description {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    line-height: 1.5;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.newsletter-input {
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 0.9rem;
    outline: none;
    transition: all 0.3s ease;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-input:focus {
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-btn {
    padding: 12px 20px;
    background: #ffffff;
    color: #e50914;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

/* Pagination */
.blog-pagination {
    display: flex;
    justify-content: center;
}

.blog-pagination .page-numbers {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 8px;
}

.blog-pagination .page-numbers li {
    display: flex;
}

.blog-pagination .page-numbers a,
.blog-pagination .page-numbers span {
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #b3b3b3;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-pagination .page-numbers a:hover,
.blog-pagination .page-numbers .current {
    background: #e50914;
    border-color: #e50914;
    color: #ffffff;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .blog-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .blog-sidebar {
        order: -1;
    }
}

@media (max-width: 768px) {
    .blog-hero-title {
        font-size: 2.5rem;
    }
    
    .blog-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .featured-posts-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-filters {
        width: 100%;
        justify-content: center;
    }
    
    .filter-btn {
        flex: 1;
        text-align: center;
        min-width: 80px;
    }
}

@media (max-width: 480px) {
    .blog-hero-section {
        padding: 80px 0 60px;
    }
    
    .blog-hero-title {
        font-size: 2rem;
    }
    
    .featured-posts-section,
    .blog-content-section {
        padding: 60px 0;
    }
    
    .sidebar-widget {
        padding: 20px;
    }
}