:root {
  --primary-color: #9C1C66;
  --secondary-color: #630E76;
  --accent-color: #B22B5B;
  --light-color: #F2D4C9;
  --dark-color: #4B1461;
  --gradient-primary: linear-gradient(135deg, #9C1C66 0%, #630E76 100%);
  --hover-color: #261E6B;
  --background-color: #F5F5F5;
  --text-color: #4B1461;
  --border-color: rgba(156, 28, 102, 0.2);
  --divider-color: rgba(99, 14, 118, 0.15);
  --shadow-color: rgba(156, 28, 102, 0.15);
  --highlight-color: #F79C92;
  --main-font: 'Montserrat', sans-serif;
  --alt-font: 'Roboto', sans-serif;
}

/* Mobile Menu Styles */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 8px;
  background: white;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  box-shadow: 0 2px 8px var(--shadow-color);
}

.hamburger .line {
  width: 24px;
  height: 3px;
  background: var(--primary-color);
  margin: 2px 0;
  transition: 0.3s;
  border-radius: 2px;
}

#menu-toggle {
  display: none;
}

#menu-toggle:checked ~ .mobile-nav {
  max-height: 350px;
  opacity: 1;
}

.mobile-nav {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.3s ease;
  border-bottom: 3px solid var(--primary-color);
  z-index: 1000;
  box-shadow: 0 4px 15px var(--shadow-color);
}

.mobile-nav ul {
  padding: 2rem;
  margin: 0;
  list-style: none;
}

.mobile-nav li {
  margin: 1rem 0;
}

.mobile-nav a {
  display: block;
  padding: 1rem 0;
  color: var(--text-color);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.1rem;
  font-weight: 600;
  border-left: 4px solid transparent;
  padding-left: 1rem;
}

.mobile-nav a:hover {
  color: var(--primary-color);
  border-left-color: var(--primary-color);
  background: rgba(156, 28, 102, 0.05);
}

/* Feature Cards - Modern card style */
.feature-card {
  background: white;
  border: none;
  border-radius: 20px;
  padding: 3rem 2.5rem;
  box-shadow: 0 8px 30px var(--shadow-color);
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px var(--shadow-color);
}

.feature-icon {
  font-size: 4rem;
  margin: 0 auto 2rem;
  color: var(--primary-color);
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, rgba(156, 28, 102, 0.1), rgba(99, 14, 118, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--border-color);
  transition: all 0.3s ease;
  position: relative;
}

.feature-icon::after {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  background: var(--gradient-primary);
  z-index: -1;
  opacity: 0;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon::after {
  opacity: 1;
}

.feature-card:hover .feature-icon {
  color: white;
  border-color: transparent;
  transform: scale(1.15);
}

/* Testimonials - Elegant style */
.testimonial {
  background: white;
  border: none;
  border-radius: 20px;
  padding: 3rem;
  margin: 1.5rem 0;
  box-shadow: 0 8px 30px var(--shadow-color);
  position: relative;
  transition: all 0.3s ease;
  border-left: 6px solid var(--primary-color);
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: -15px;
  left: 30px;
  font-size: 5rem;
  color: var(--primary-color);
  font-family: var(--main-font);
  opacity: 0.2;
  font-weight: bold;
}

.testimonial:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px var(--shadow-color);
  border-left-color: var(--accent-color);
}

/* FAQ Items - Clean modern style */
.faq-item {
  background: white;
  border: none;
  border-radius: 16px;
  margin: 1.5rem 0;
  box-shadow: 0 6px 25px var(--shadow-color);
  transition: all 0.3s ease;
  padding: 2.5rem;
  position: relative;
}

.faq-item::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 25px;
  right: 25px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 16px 16px 0 0;
}

.faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px var(--shadow-color);
}

.faq-item h3 {
  margin-bottom: 1.5rem;
  position: relative;
  padding-left: 2rem;
}

.faq-item h3::before {
  content: '❓';
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.5rem;
}

/* Form Styles - Modern input design */
input,
textarea {
  transition: all 0.3s ease;
  font-family: var(--alt-font);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 1.2rem;
  background-color: white;
  color: var(--text-color);
  font-size: 1rem;
  width: 100%;
  box-shadow: 0 2px 10px rgba(156, 28, 102, 0.1);
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(156, 28, 102, 0.15);
  transform: translateY(-2px);
}

input:hover,
textarea:hover {
  border-color: var(--secondary-color);
  box-shadow: 0 4px 15px rgba(156, 28, 102, 0.15);
}

/* Button Styles - Gradient modern buttons */
button,
.btn {
  transition: all 0.3s ease;
  background: var(--gradient-primary);
  color: white;
  border: none;
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-family: var(--alt-font);
  cursor: pointer;
  font-size: 1rem;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  box-shadow: 0 6px 20px rgba(156, 28, 102, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

button::before,
.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: 0.5s;
}

button:hover::before,
.btn:hover::before {
  left: 100%;
}

button:hover,
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(156, 28, 102, 0.5);
}

/* Typography */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--alt-font);
  color: var(--text-color);
  background: linear-gradient(135deg, var(--background-color) 0%, var(--light-color) 100%);
  line-height: 1.7;
}

h1, h2, h3 {
  font-family: var(--main-font);
  font-weight: 700;
  color: var(--primary-color);
}

/* Statistics Cards - Modern style */
.stat-card {
  background: white;
  border: none;
  border-radius: 16px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 6px 25px var(--shadow-color);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 35px var(--shadow-color);
}

.stat-number {
  font-size: 3rem;
  font-weight: 900;
  color: var(--primary-color);
  font-family: var(--main-font);
  line-height: 1;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-text {
  font-size: 1.1rem;
  color: var(--text-color);
  margin-top: 0.8rem;
  font-weight: 600;
}

/* Trust Indicators - Modern badge style */
.trust-indicator {
  background: white;
  padding: 1.8rem 1.5rem;
  border-radius: 12px;
  border: none;
  box-shadow: 0 4px 20px var(--shadow-color);
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
}

.trust-indicator::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 0 0 10px 10px;
}

.trust-indicator:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px var(--shadow-color);
}

/* Header and Footer */
header {
  background: white;
  color: var(--text-color);
  padding: 1rem 0;
  position: relative;
  z-index: 1000;
  box-shadow: 0 4px 20px var(--shadow-color);
}

footer {
  background: linear-gradient(135deg, var(--light-color), white);
  color: var(--text-color);
  padding: 4rem 0 2rem;
  box-shadow: 0 -4px 20px var(--shadow-color);
}

footer a {
  color: var(--text-color);
  opacity: 0.8;
}

footer a:hover {
  opacity: 1;
  color: var(--primary-color);
}

/* Focus States */
a:focus,
button:focus,
input:focus,
textarea:focus {
  outline: 3px solid var(--primary-color);
  outline-offset: 3px;
}

/* Grid Layouts */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 4rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  margin-top: 4rem;
}

/* Pattern Background - Subtle dots */
.pattern-bg {
  background-image: 
    radial-gradient(circle at 3px 3px, rgba(156, 28, 102, 0.08) 2px, transparent 0);
  background-size: 50px 50px;
}

/* Hero Section */
.hero {
  background-attachment: fixed;
  background-repeat: no-repeat;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
  
  .navigation {
    display: none;
  }
  
  .mobile-nav {
    display: block;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .container {
    padding: 0 1rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .feature-icon {
    width: 80px;
    height: 80px;
    font-size: 3rem;
  }
  
  .feature-card,
  .testimonial,
  .faq-item {
    padding: 2rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .feature-card,
  .testimonial,
  .faq-item {
    margin: 1rem 0;
    padding: 1.5rem;
  }
}