/*
Theme Name: ScriptX
Theme URI: https://yourdomain.com/
Author: Your Name
Author URI: https://yourdomain.com/
Description: A modern, WooCommerce-ready landing page theme for selling adult scripts.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: scriptx
Tags: woocommerce, landing page, modern, responsive
*/

/* Basic Reset and Theme Styles */
body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #181828;
  color: #fff;
}

h1, h2, h3, h4, h5, h6 {
  color: #fff;
}

a {
  color: #e94560;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Add more styles as needed */

/* Header & Main Navigation */
.site-header {
  background: linear-gradient(135deg, #23233b 0%, #1a1a2e 100%);
  padding: 12px 0;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 15px;
}

.site-title {
  margin: 0;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.site-title a {
  color: #fff;
  text-decoration: none;
  background: linear-gradient(45deg, #e94560, #ff6b88);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.3s ease;
}

.site-title a:hover {
  background: linear-gradient(45deg, #ff6b88, #e94560);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.site-logo img {
  max-height: 45px;
  width: auto;
}

.site-description {
  margin: 0;
  font-size: 0.85rem;
  color: #ccc;
  font-style: italic;
}

.main-navigation {
  position: relative;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 4px;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.menu-toggle:hover {
  background: rgba(233, 69, 96, 0.1);
}

.hamburger-line {
  display: block;
  width: 25px;
  height: 3px;
  background: #e94560;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.main-menu,
.fallback-menu {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 25px;
  align-items: center;
}

.main-menu li,
.fallback-menu li {
  position: relative;
}

.main-menu a,
.fallback-menu a {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 25px;
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.main-menu a:before,
.fallback-menu a:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #e94560, #ff6b88);
  transition: left 0.3s ease;
  z-index: -1;
}

.main-menu a:hover:before,
.fallback-menu a:hover:before {
  left: 0;
}

.main-menu a:hover,
.fallback-menu a:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(233, 69, 96, 0.3);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .site-header {
    padding: 10px 0;
  }
  
  .header-container {
    padding: 0 15px;
  }
  
  .site-title {
    font-size: 1.5rem;
  }
  
  .site-description {
    display: none;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .nav-menu-wrapper {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #23233b;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
  }
  
  .nav-menu-wrapper.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .main-menu,
  .fallback-menu {
    flex-direction: column;
    gap: 0;
    padding: 20px;
  }
  
  .main-menu li,
  .fallback-menu li {
    width: 100%;
  }
  
  .main-menu a,
  .fallback-menu a {
    display: block;
    padding: 12px 0;
    border-radius: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .main-menu a:hover,
  .fallback-menu a:hover {
    transform: none;
    background: rgba(233, 69, 96, 0.1);
  }
}

/* Header scroll effects */
.site-header.scrolled {
  background: rgba(35, 35, 59, 0.95);
  backdrop-filter: blur(15px);
  padding: 8px 0;
  transition: all 0.3s ease;
}

.site-header.header-hidden {
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}

/* Current page indicator */
.main-menu a.current-page,
.fallback-menu a.current-page {
  background: linear-gradient(45deg, #e94560, #ff6b88);
  color: #fff !important;
}

.main-menu a.current-page:before,
.fallback-menu a.current-page:before {
  left: 0;
}

/* Loading animations */
body:not(.loaded) .site-header {
  transform: translateY(-100%);
}

body.loaded .site-header {
  animation: slideDown 0.6s ease forwards;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

/* Accessibility improvements */
.main-menu a:focus,
.fallback-menu a:focus,
.menu-toggle:focus {
  outline: 2px solid #e94560;
  outline-offset: 2px;
}

/* Enhanced hover effects */
.main-menu li:hover,
.fallback-menu li:hover {
  transform: translateY(-1px);
  transition: transform 0.2s ease;
}

/* Page-specific styles */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

/* Hero Section - Centered Layout */
.hero-section {
  background: linear-gradient(135deg, #181828 0%, #23233b 50%, #1a1a2e 100%);
  padding: 120px 0 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(233, 69, 96, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.hero-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 30px;
  position: relative;
  z-index: 2;
}

.hero-content {
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(233, 69, 96, 0.15);
  border: 1px solid rgba(233, 69, 96, 0.4);
  border-radius: 30px;
  padding: 12px 24px;
  font-size: 1rem;
  color: #e94560;
  margin-bottom: 30px;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.badge-icon {
  font-size: 1.2rem;
}

.hero-title {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 25px;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-title .highlight {
  background: linear-gradient(45deg, #e94560, #ff6b88, #ff8f00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.hero-description {
  font-size: 1.3rem;
  line-height: 1.7;
  color: #ddd;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.hero-stats .stat-item {
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  padding: 20px 25px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  min-width: 140px;
}

.hero-stats .stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: #e94560;
  display: block;
  margin-bottom: 5px;
}

.hero-stats .stat-label {
  font-size: 0.9rem;
  color: #ccc;
  font-weight: 500;
}

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-large {
  padding: 20px 40px;
  font-size: 1.2rem;
}

.btn-xl {
  padding: 24px 48px;
  font-size: 1.3rem;
}

.btn-mega {
  padding: 28px 56px;
  font-size: 1.4rem;
  font-weight: 800;
}

.btn-primary {
  background: linear-gradient(45deg, #e94560, #ff6b88);
  color: #fff;
  box-shadow: 0 8px 25px rgba(233, 69, 96, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(233, 69, 96, 0.6);
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.btn-arrow {
  transition: transform 0.3s ease;
  font-weight: 900;
}

.btn:hover .btn-arrow {
  transform: translateX(5px);
}

.hero-guarantee {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #00ff88;
  font-size: 1rem;
  font-weight: 600;
}

.guarantee-icon {
  font-size: 1.3rem;
}

/* Features Showcase */
.features-showcase {
  padding: 120px 0;
  background: #181828;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-title {
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.section-subtitle {
  font-size: 1.3rem;
  color: #ccc;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.feature-card {
  background: linear-gradient(145deg, #23233b, #1f1f2e);
  padding: 50px 40px;
  border-radius: 25px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(233, 69, 96, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border-color: rgba(233, 69, 96, 0.4);
}

.feature-card.featured {
  border-color: #e94560;
  box-shadow: 0 0 30px rgba(233, 69, 96, 0.3);
}

.feature-icon {
  font-size: 3.5rem;
  margin-bottom: 25px;
  display: block;
}

.feature-card h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.feature-card p {
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 25px;
  font-size: 1.1rem;
}

.feature-highlights {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.feature-highlights li {
  color: #ddd;
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  font-size: 1rem;
}

.feature-highlights li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #e94560;
  font-weight: bold;
  font-size: 1.1rem;
}

/* Success Stories */
.success-stories {
  padding: 120px 0;
  background: #23233b;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.testimonial-card {
  background: linear-gradient(145deg, #2a2a3e, #1f1f2e);
  padding: 40px;
  border-radius: 25px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -15px;
  left: 30px;
  font-size: 5rem;
  color: #e94560;
  font-weight: bold;
  opacity: 0.3;
}

.testimonial-content p {
  color: #ddd;
  font-style: italic;
  margin-bottom: 30px;
  line-height: 1.7;
  font-size: 1.1rem;
}

.testimonial-author {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
}

.author-name {
  font-weight: 700;
  color: #fff;
  font-size: 1.1rem;
}

.author-title {
  color: #ccc;
  font-size: 0.9rem;
  margin-top: 3px;
}

.author-rating {
  color: #ffa500;
  font-size: 1.2rem;
}

/* Pricing Section */
.pricing-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #181828 0%, #23233b 100%);
}

.pricing-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
}

.pricing-card {
  background: linear-gradient(145deg, #2a2a3e, #1f1f2e);
  padding: 60px 50px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  max-width: 500px;
  width: 100%;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.pricing-card.premium {
  border-color: #e94560;
  box-shadow: 0 0 50px rgba(233, 69, 96, 0.4);
}

.pricing-badge {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(45deg, #e94560, #ff6b88);
  color: #fff;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 5px 15px rgba(233, 69, 96, 0.4);
}

.pricing-header h3 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 25px;
}

.price-display {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 15px;
}

.currency {
  font-size: 2rem;
  color: #e94560;
  font-weight: 700;
}

.amount {
  font-size: 5rem;
  font-weight: 900;
  color: #e94560;
  margin: 0 5px;
}

.period {
  font-size: 1.3rem;
  color: #ccc;
}

.price-note {
  margin-bottom: 40px;
}

.old-price {
  text-decoration: line-through;
  color: #666;
  margin-right: 15px;
  font-size: 1.2rem;
}

.discount {
  background: #00ff88;
  color: #000;
  padding: 6px 12px;
  border-radius: 15px;
  font-weight: 700;
  font-size: 0.9rem;
}

.pricing-features {
  text-align: left;
  margin-bottom: 40px;
}

.feature-group {
  margin-bottom: 30px;
}

.feature-group h4 {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 8px;
}

.feature-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-group li {
  color: #ddd;
  margin-bottom: 8px;
  font-size: 1rem;
  line-height: 1.5;
}

.cta-note {
  color: #ccc;
  font-size: 0.9rem;
  margin-top: 15px;
}

.pricing-guarantee {
  text-align: center;
}

.guarantee-seal {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  background: rgba(0, 255, 136, 0.1);
  border: 1px solid rgba(0, 255, 136, 0.3);
  border-radius: 20px;
  padding: 30px 40px;
  max-width: 500px;
}

.seal-icon {
  font-size: 3rem;
}

.seal-text strong {
  color: #00ff88;
  font-size: 1.2rem;
  display: block;
  margin-bottom: 8px;
}

.seal-text p {
  color: #ccc;
  margin: 0;
  line-height: 1.5;
}

/* Final CTA */
.final-cta {
  padding: 120px 0;
  background: linear-gradient(135deg, #181828 0%, #23233b 50%, #1a1a2e 100%);
  text-align: center;
  position: relative;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(233, 69, 96, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cta-title {
  font-size: 3.5rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 25px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.cta-description {
  font-size: 1.4rem;
  color: #ddd;
  margin-bottom: 40px;
  line-height: 1.7;
}

.cta-features {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
}

.cta-icon {
  font-size: 1.5rem;
  color: #e94560;
}

.cta-buttons {
  margin-bottom: 30px;
}

.cta-urgency {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 1.2rem;
  color: #ffa500;
  font-weight: 700;
}

.urgency-icon {
  font-size: 1.5rem;
}

/* Technical Requirements */
.tech-requirements {
  padding: 80px 0;
  background: #23233b;
}

.requirements-table {
  max-width: 600px;
  margin: 0 auto;
  background: linear-gradient(145deg, #2a2a3e, #1f1f2e);
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.req-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.req-row:last-child {
  border-bottom: none;
}

.req-label {
  font-weight: 600;
  color: #fff;
}

.req-value {
  color: #e94560;
  font-weight: 600;
}

/* What You Get */
.what-you-get {
  padding: 100px 0;
  background: #181828;
}

.packages-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.package-card {
  background: linear-gradient(145deg, #23233b, #1f1f2e);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.package-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
  text-align: center;
}

.package-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.package-list li {
  color: #ccc;
  margin-bottom: 12px;
  font-size: 1.1rem;
}

/* Performance Metrics */
.performance-metrics {
  padding: 80px 0;
  background: #23233b;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
}

.metric-card {
  text-align: center;
  background: linear-gradient(145deg, #2a2a3e, #1f1f2e);
  padding: 30px 20px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.metric-value {
  font-size: 2.5rem;
  font-weight: 800;
  color: #e94560;
  margin-bottom: 10px;
}

.metric-label {
  color: #ccc;
  font-weight: 500;
  font-size: 0.9rem;
}

/* Testimonials */
.testimonials {
  padding: 100px 0;
  background: #181828;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.testimonial-card {
  background: linear-gradient(145deg, #23233b, #1f1f2e);
  padding: 30px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 4rem;
  color: #e94560;
  font-weight: bold;
}

.testimonial-content p {
  color: #ccc;
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.6;
}

.testimonial-author {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 15px;
}

.author-name {
  font-weight: 600;
  color: #fff;
  margin-bottom: 5px;
}

.author-rating {
  color: #ffa500;
}

/* Pricing */
.pricing-section {
  padding: 100px 0;
  background: #23233b;
}

.pricing-cards {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.pricing-card {
  background: linear-gradient(145deg, #2a2a3e, #1f1f2e);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  max-width: 400px;
  text-align: center;
}

.pricing-card.featured {
  border-color: #e94560;
  box-shadow: 0 0 30px rgba(233, 69, 96, 0.3);
}

.pricing-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(45deg, #e94560, #ff6b88);
  color: #fff;
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
}

.pricing-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 10px;
}

.price-currency {
  font-size: 1.5rem;
  color: #e94560;
  font-weight: 600;
}

.price-amount {
  font-size: 4rem;
  font-weight: 800;
  color: #e94560;
}

.price-period {
  font-size: 1.2rem;
  color: #ccc;
  margin-left: 10px;
}

.pricing-discount {
  margin-bottom: 30px;
}

.original-price {
  text-decoration: line-through;
  color: #666;
  margin-right: 10px;
}

.discount-badge {
  background: #00ff88;
  color: #000;
  padding: 4px 8px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.8rem;
}

.pricing-features ul {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  text-align: left;
}

.pricing-features li {
  color: #ccc;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.pricing-guarantee {
  text-align: center;
}

.guarantee-badge {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: rgba(0, 255, 136, 0.1);
  border: 1px solid rgba(0, 255, 136, 0.3);
  border-radius: 15px;
  padding: 20px 30px;
}

.guarantee-icon {
  font-size: 2rem;
}

.guarantee-text {
  color: #ccc;
  text-align: left;
}

/* Final CTA */
.final-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, #181828 0%, #23233b 50%, #1a1a2e 100%);
  text-align: center;
}

.cta-title {
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.cta-description {
  font-size: 1.3rem;
  color: #ccc;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.cta-urgency {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 1.1rem;
  color: #ffa500;
  font-weight: 600;
}

.urgency-icon {
  font-size: 1.3rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .metrics-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .packages-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .cta-title {
    font-size: 2rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .section-title {
    font-size: 2rem;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .container {
    padding: 0 20px;
  }
  
  .hero-container {
    padding: 0 20px;
  }
  
  .features-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .hero-title {
    font-size: 3.5rem;
  }
  
  .section-title {
    font-size: 2.8rem;
  }
}

@media (max-width: 992px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .section-title {
    font-size: 2.5rem;
  }
  
  .hero-description {
    font-size: 1.2rem;
  }
  
  .section-subtitle {
    font-size: 1.2rem;
  }
  
  .hero-stats {
    gap: 25px;
  }
  
  .hero-stats .stat-item {
    min-width: 120px;
    padding: 15px 20px;
  }
  
  .hero-stats .stat-number {
    font-size: 2rem;
  }
  
  .features-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .feature-card {
    padding: 40px 30px;
  }
  
  .testimonial-card {
    padding: 30px;
  }
  
  .pricing-card {
    padding: 50px 40px;
  }
  
  .cta-features {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 80px 0 60px 0;
  }
  
  .hero-title {
    font-size: 2.5rem;
    line-height: 1.2;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .cta-title {
    font-size: 2.8rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
  }
  
  .section-subtitle {
    font-size: 1.1rem;
  }
  
  .cta-description {
    font-size: 1.2rem;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
  
  .hero-stats .stat-item {
    width: 100%;
    max-width: 200px;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  
  .btn-mega {
    padding: 20px 40px;
    font-size: 1.2rem;
  }
  
  .features-showcase,
  .success-stories,
  .pricing-section,
  .final-cta {
    padding: 80px 0;
  }
  
  .feature-card {
    padding: 35px 25px;
  }
  
  .feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
  }
  
  .feature-card h3 {
    font-size: 1.4rem;
  }
  
  .testimonial-card {
    padding: 25px;
  }
  
  .testimonial-author {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .pricing-card {
    padding: 40px 30px;
    margin: 0 20px;
  }
  
  .price-display .amount {
    font-size: 4rem;
  }
  
  .guarantee-seal {
    flex-direction: column;
    text-align: center;
    padding: 25px 30px;
    margin: 0 20px;
  }
  
  .seal-icon {
    font-size: 2.5rem;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 15px;
  }
  
  .hero-container {
    padding: 0 15px;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .cta-title {
    font-size: 2.5rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .cta-description {
    font-size: 1.1rem;
  }
  
  .hero-badge {
    padding: 10px 16px;
    font-size: 0.9rem;
  }
  
  .btn-mega {
    padding: 18px 32px;
    font-size: 1.1rem;
  }
  
  .feature-card {
    padding: 30px 20px;
    border-radius: 20px;
  }
  
  .feature-icon {
    font-size: 2.8rem;
  }
  
  .feature-card h3 {
    font-size: 1.3rem;
  }
  
  .testimonial-card {
    padding: 20px;
    border-radius: 20px;
  }
  
  .pricing-card {
    padding: 35px 25px;
    border-radius: 25px;
    margin: 0 15px;
  }
  
  .pricing-header h3 {
    font-size: 2rem;
  }
  
  .price-display .amount {
    font-size: 3.5rem;
  }
  
  .guarantee-seal {
    padding: 20px 25px;
    margin: 0 15px;
  }
  
  .hero-stats .stat-number {
    font-size: 1.8rem;
  }
  
  .hero-stats .stat-label {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .cta-title {
    font-size: 2.2rem;
  }
  
  .price-display .amount {
    font-size: 3rem;
  }
  
  .pricing-header h3 {
    font-size: 1.8rem;
  }
  
  .btn-mega {
    padding: 16px 28px;
    font-size: 1rem;
  }
  
  .feature-icon {
    font-size: 2.5rem;
  }
  
  .hero-stats .stat-item {
    padding: 12px 15px;
  }
}
.animate-in {
  animation: fadeInUp 0.6s ease forwards;
}

.feature-card {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.feature-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.testimonial-card {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.testimonial-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.testimonial-card.featured {
  border-color: #e94560;
  box-shadow: 0 0 20px rgba(233, 69, 96, 0.3);
}

.metric-card {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.metric-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.package-card {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.package-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Button Hover Effects */
.btn.hover-effect {
  transform: translateY(-2px) scale(1.02);
}

/* Ripple Effect */
.btn {
  position: relative;
  overflow: hidden;
}

.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: scale(0);
  pointer-events: none;
}

.ripple.animate {
  animation: rippleEffect 0.6s linear;
}

@keyframes rippleEffect {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* Floating Elements */
.hero-visual {
  animation: float 6s ease-in-out infinite;
}

.offer-badge {
  animation: pulse 2s infinite;
}

/* Loading States */
.loading {
  position: relative;
}

.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid #e94560;
  border-radius: 50%;
  border-top-color: transparent;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Scroll Indicators */
.scroll-indicator {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #e94560, #ff6b88);
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.1s ease;
  z-index: 9999;
}

/* Enhanced Focus States */
.btn:focus,
.feature-card:focus {
  outline: 2px solid #e94560;
  outline-offset: 3px;
}

/* Print Styles */
@media print {
  .hero-section,
  .stats-section,
  .pricing-section,
  .final-cta {
    background: white !important;
    color: black !important;
  }
  
  .btn {
    border: 1px solid black !important;
    background: white !important;
    color: black !important;
  }
}

.front-page-hero p {
  font-size: 1.2rem;
  color: #ccc;
  margin-bottom: 35px;
}

.btn-primary {
  background: #e94560;
  color: #fff;
  padding: 18px 48px;
  border-radius: 40px;
  font-size: 1.3rem;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: background 0.2s;
  display: inline-block;
}

.btn-primary:hover {
  background: #d63854;
  text-decoration: none;
}

.btn-secondary {
  background: #e94560;
  color: #fff;
  padding: 12px 32px;
  border-radius: 30px;
  text-decoration: none;
  display: inline-block;
  margin-top: 10px;
  transition: background 0.2s;
}

.btn-secondary:hover {
  background: #d63854;
  text-decoration: none;
}

.features-section {
  padding: 40px 0 60px 0;
  background: #23233b;
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 900px;
  margin: auto;
}

.feature-card {
  flex: 1 1 220px;
  min-width: 220px;
  background: #181828;
  padding: 30px 20px;
  border-radius: 16px;
}

.feature-card h3 {
  color: #e94560;
  margin-bottom: 15px;
}

.page-content {
  max-width: 900px;
  margin: auto;
  padding: 60px 0 40px 0;
}

.page-header {
  padding: 80px 0 40px 0;
  text-align: center;
  max-width: 800px;
  margin: auto;
}

.page-header h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.page-header p {
  color: #ccc;
}

.contact-section {
  padding: 80px 0 40px 0;
  text-align: center;
  max-width: 600px;
  margin: auto;
}

.contact-form {
  margin-top: 30px;
  text-align: left;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 16px;
  border-radius: 8px;
  border: none;
  background: #fff;
  color: #333;
}

.contact-form input.error,
.contact-form textarea.error {
  border: 2px solid #dc3545;
}

.contact-form button {
  background: #e94560;
  color: #fff;
  padding: 12px 32px;
  border-radius: 30px;
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.2s;
}

.contact-form button:hover {
  background: #d63854;
}

.alert {
  padding: 12px 20px;
  border-radius: 8px;
  margin: 20px 0;
}

.alert-success {
  background: #28a745;
  color: #fff;
}

.alert-error {
  background: #dc3545;
  color: #fff;
}

.faq-list {
  text-align: left;
  max-width: 600px;
  margin: auto;
}

.faq-item {
  background: #23233b;
  margin-bottom: 16px;
  padding: 18px 24px;
  border-radius: 12px;
}

.faq-item strong {
  color: #e94560;
}

.features-list {
  list-style: none;
  padding: 0;
  max-width: 600px;
  margin: auto;
  text-align: left;
}

.features-list li {
  background: #23233b;
  margin-bottom: 16px;
  padding: 18px 24px;
  border-radius: 12px;
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 900px;
  margin: auto;
}

.pricing-card {
  flex: 1 1 220px;
  min-width: 220px;
  background: #23233b;
  padding: 30px 20px;
  border-radius: 16px;
  text-align: center;
}

.pricing-card h3 {
  color: #e94560;
  margin-bottom: 15px;
}

.pricing-card .price {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.woocommerce-section {
  padding: 40px 0;
  min-height: 60vh;
  background: #23233b;
}

.woocommerce-container {
  max-width: 1100px;
  margin: auto;
  background: #181828;
  padding: 30px 20px;
  border-radius: 16px;
}

.single-product-section {
  padding: 60px 0;
  min-height: 60vh;
  background: #23233b;
}

.single-product-container {
  max-width: 800px;
  margin: auto;
  background: #181828;
  padding: 40px 30px;
  border-radius: 16px;
}

.site-footer {
  background: #181828;
  padding: 30px 0;
  text-align: center;
  color: #aaa;
}

.site-footer p {
  margin: 10px 0;
}

.site-footer a {
  color: #e94560;
}

.site-footer a:hover {
  color: #d63854;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Breadcrumbs */
.breadcrumbs {
  background: #23233b;
  padding: 15px 0;
  font-size: 0.9rem;
}

.breadcrumbs ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.breadcrumbs li {
  color: #ccc;
}

.breadcrumbs li:not(:last-child)::after {
  content: " / ";
  margin: 0 8px;
  color: #666;
}

.breadcrumbs a {
  color: #e94560;
  text-decoration: none;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  .main-menu, .main-nav {
    flex-direction: column;
    gap: 10px 0;
  }
  
  .front-page-hero h2 {
    font-size: 2rem;
  }
  
  .front-page-hero p {
    font-size: 1rem;
  }
  
  .btn-primary {
    padding: 14px 32px;
    font-size: 1.1rem;
  }
  
  .features-grid,
  .pricing-grid {
    flex-direction: column;
    max-width: 400px;
  }
  
  .feature-card,
  .pricing-card {
    min-width: auto;
  }
  
  .page-header h2 {
    font-size: 1.8rem;
  }
  
  .contact-form input,
  .contact-form textarea {
    padding: 10px;
  }
}

@media (max-width: 480px) {
  .front-page-hero {
    padding: 60px 0 30px 0;
  }
  
  .page-header {
    padding: 60px 0 30px 0;
  }
  
  .contact-section {
    padding: 60px 0 30px 0;
  }
  
  .container {
    padding: 0 15px;
  }
}

/* Animation classes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(233, 69, 96, 0.3);
  }
  50% {
    box-shadow: 0 0 30px rgba(233, 69, 96, 0.6);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animation utilities */
.fade-in-up {
  animation: fadeInUp 0.8s ease-out;
}

.fade-in-left {
  animation: fadeInLeft 0.8s ease-out;
}

.fade-in-right {
  animation: fadeInRight 0.8s ease-out;
}

.fade-in {
  animation: fadeIn 1s ease-out;
}

.scale-in {
  animation: scaleIn 0.6s ease-out;
}

.slide-in-down {
  animation: slideInDown 0.8s ease-out;
}

.float {
  animation: float 3s ease-in-out infinite;
}

.pulse {
  animation: pulse 2s ease-in-out infinite;
}

.glow {
  animation: glow 2s ease-in-out infinite;
}

/* Delayed animations */
.delay-1 {
  animation-delay: 0.1s;
}

.delay-2 {
  animation-delay: 0.2s;
}

.delay-3 {
  animation-delay: 0.3s;
}

.delay-4 {
  animation-delay: 0.4s;
}

.delay-5 {
  animation-delay: 0.5s;
}

/* Enhanced hover effects */
.feature-card:hover .feature-icon {
  animation: pulse 0.6s ease-in-out;
}

.btn-primary:hover {
  animation: glow 0.3s ease-in-out forwards;
}

.testimonial-card:hover {
  border-color: rgba(233, 69, 96, 0.3);
}

.pricing-card:hover {
  transform: translateY(-5px);
}

/* Utility classes */
.text-center {
  text-align: center;
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.mb-4 { margin-bottom: 40px; }
.mb-5 { margin-bottom: 50px; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mt-4 { margin-top: 40px; }
.mt-5 { margin-top: 50px; }

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Selection styling */
::selection {
  background: rgba(233, 69, 96, 0.3);
  color: #fff;
}

::-moz-selection {
  background: rgba(233, 69, 96, 0.3);
  color: #fff;
}

/* Focus states for accessibility */
.btn:focus,
button:focus {
  outline: 2px solid #e94560;
  outline-offset: 2px;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
} 