:root {
  --primary-color: #F79C92;
  --secondary-color: #F08080;
  --accent-color: #FF6F61;
  --light-color: #FFF5F3;
  --dark-color: #5C2E2E;
  --gradient-primary: linear-gradient(135deg, #F79C92 0%, #FF6F61 100%);
  --hover-color: #E88A7F;
  --background-color: #FFFAF9;
  --text-color: #6B4241;
  --border-color: rgba(247, 156, 146, 0.25);
  --divider-color: rgba(240, 128, 128, 0.12);
  --shadow-color: rgba(247, 156, 146, 0.2);
  --highlight-color: #F2D57F;
  --main-font: 'Merriweather', serif;
  --alt-font: 'Poppins', sans-serif;
}

/* Mobile Menu Styles */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 8px;
  background: white;
  border-radius: 6px;
  border: 1px solid var(--border-color);
}

.hamburger .line {
  width: 24px;
  height: 2px;
  background: var(--primary-color);
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 1px;
}

#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: 2px solid var(--border-color);
  z-index: 1000;
}

.mobile-nav ul {
  padding: 2rem;
  margin: 0;
  list-style: none;
}

.mobile-nav li {
  margin: 0.8rem 0;
}

.mobile-nav a {
  display: block;
  padding: 1rem 0;
  color: var(--text-color);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid transparent;
}

.mobile-nav a:hover {
  color: var(--primary-color);
  border-bottom-color: var(--primary-color);
}

/* Feature Cards */
.feature-card {
  background: linear-gradient(145deg, #ffffff 0%, #fff9f8 100%);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 3rem 2.4rem;
  box-shadow: 0 8px 32px var(--shadow-color);
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  overflow: hidden;
}

.feature-card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(247, 156, 146, 0.1) 0%, transparent 70%);
  transition: all 0.6s ease;
  opacity: 0;
}

.feature-card:hover::after {
  opacity: 1;
  transform: scale(1.2);
}

.feature-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 18px 56px var(--shadow-color);
  border-color: var(--accent-color);
}

.feature-card > * {
  position: relative;
  z-index: 1;
}

.feature-icon {
  font-size: 3.2rem;
  margin: 0 auto 1.8rem auto;
  color: white;
  width: 90px;
  height: 90px;
  background: var(--gradient-primary);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  transition: all 0.4s ease;
  flex-shrink: 0;
  box-shadow: 0 8px 28px rgba(247, 156, 146, 0.5);
  position: relative;
  z-index: 1;
  transform: rotate(-5deg);
}

.feature-card:hover .feature-icon {
  transform: scale(1.2) rotate(0deg);
  box-shadow: 0 12px 40px rgba(247, 156, 146, 0.6);
}

/* Testimonials */
.testimonial {
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 20px;
  padding: 2.6rem 2.2rem;
  margin: 1rem 0;
  box-shadow: 0 8px 32px var(--shadow-color);
  position: relative;
  transition: all 0.3s ease;
}

.testimonial::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 6px;
  background: var(--gradient-primary);
  border-radius: 0 0 12px 12px;
}

.testimonial::after {
  content: '"';
  position: absolute;
  bottom: 20px;
  right: 30px;
  font-size: 6rem;
  opacity: 0.04;
  color: var(--primary-color);
  font-family: Georgia, serif;
}

.testimonial:hover {
  transform: scale(1.03);
  box-shadow: 0 16px 48px var(--shadow-color);
  border-color: var(--accent-color);
}

/* FAQ Items */
.faq-item {
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 18px;
  margin: 1.6rem 0;
  box-shadow: 0 7px 28px var(--shadow-color);
  transition: all 0.3s ease;
  padding: 2.6rem;
  position: relative;
}

.faq-item::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 8px;
  height: 100%;
  background: var(--gradient-primary);
  border-radius: 0 18px 18px 0;
  transition: all 0.3s ease;
}

.faq-item:hover::before {
  width: 12px;
}

.faq-item:hover {
  transform: translateX(-6px);
  box-shadow: 0 12px 42px var(--shadow-color);
  border-color: var(--accent-color);
}

.faq-item h3 {
  margin-bottom: 1.4rem;
  display: flex;
  align-items: center;
}

.faq-item h3::before {
  content: '◆';
  margin-right: 1.4rem;
  font-size: 1rem;
  color: var(--primary-color);
}

/* Form Styles */
input,
textarea {
  transition: all 0.3s ease;
  font-family: var(--alt-font);
  border: 2px solid var(--border-color);
  border-radius: 14px;
  padding: 1.5rem;
  background-color: white;
  color: var(--text-color);
  font-size: 1rem;
  width: 100%;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 5px rgba(247, 156, 146, 0.15);
}

input:hover,
textarea:hover {
  border-color: var(--secondary-color);
}

/* Button Styles */
button,
.btn {
  transition: all 0.3s ease;
  background: var(--gradient-primary);
  color: white;
  border: none;
  padding: 1.6rem 3.4rem;
  border-radius: 14px;
  font-weight: 700;
  font-family: var(--alt-font);
  cursor: pointer;
  font-size: 1.05rem;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  box-shadow: 0 7px 26px rgba(247, 156, 146, 0.45);
}

button:hover,
.btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 38px rgba(247, 156, 146, 0.55);
}

/* Typography */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--alt-font);
  color: var(--text-color);
  background: var(--background-color);
  line-height: 1.7;
  max-width: 100vw;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

h1, h2, h3 {
  font-family: var(--main-font);
  font-weight: 700;
  color: var(--primary-color);
}

/* Statistics Cards */
.stat-card {
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 22px;
  padding: 2.6rem;
  text-align: center;
  box-shadow: 0 10px 38px var(--shadow-color);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat-card::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  opacity: 0.08;
  border-radius: 50%;
  transition: all 0.5s ease;
}

.stat-card:hover::after {
  transform: translate(-50%, -50%) scale(2);
}

.stat-card:hover {
  transform: scale(1.07);
  box-shadow: 0 16px 54px var(--shadow-color);
}

.stat-card > * {
  position: relative;
  z-index: 1;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  font-family: var(--main-font);
  line-height: 1;
}

.stat-text {
  font-size: 1.05rem;
  color: var(--text-color);
  margin-top: 1.1rem;
  font-weight: 500;
}

/* Trust Indicators */
.trust-indicator {
  background: white;
  padding: 2rem 1.7rem;
  border-radius: 20px;
  border: 2px solid var(--border-color);
  box-shadow: 0 7px 28px var(--shadow-color);
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
}

.trust-indicator:hover {
  transform: translateY(-7px);
  box-shadow: 0 12px 42px var(--shadow-color);
  border-color: var(--accent-color);
}

.trust-indicator::after {
  content: '✓';
  position: absolute;
  top: -16px;
  right: -16px;
  font-size: 1.4rem;
  color: white;
  background: var(--gradient-primary);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px var(--shadow-color);
  font-weight: bold;
}

/* Header and Footer */
header {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(18px);
  color: var(--text-color);
  padding: 1.6rem 0;
  position: relative;
  z-index: 1000;
  box-shadow: 0 6px 32px var(--shadow-color);
}

footer {
  background: var(--dark-color);
  color: var(--light-color);
  padding: 4.2rem 0 2.2rem;
}

/* Focus States */
a:focus,
button:focus,
input:focus,
textarea:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* Grid Layouts */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin: 3rem 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 3rem;
  margin: 3rem 0;
}

/* Pattern Background */
.pattern-bg {
  background-image: 
    radial-gradient(circle at 5% 15%, rgba(247, 156, 146, 0.07) 0%, transparent 36%),
    radial-gradient(circle at 95% 85%, rgba(255, 111, 97, 0.08) 0%, transparent 42%),
    radial-gradient(circle at 60% 40%, rgba(242, 213, 127, 0.05) 0%, transparent 48%);
  background-size: 100% 100%;
}

/* Responsive Design */
* {
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 0 2rem;
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
  
  .navigation {
    display: none;
  }
  
  .mobile-nav {
    display: block;
  }
  
  .hero h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    padding: 0 1rem;
  }
  
  .container {
    padding: 0 1rem;
    max-width: 100vw;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 0.5rem;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 0.5rem;
  }
  
  .feature-card,
  .testimonial,
  .faq-item {
    margin: 1rem 0;
    padding: 2rem 1.5rem;
    max-width: 100%;
    word-wrap: break-word;
  }
  
  .grid {
    gap: 1.5rem;
  }
  
  .space-x-8 {
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
    line-height: 1.2;
    padding: 0 0.5rem;
  }
  
  .hero p {
    font-size: 1rem;
    padding: 0 0.5rem;
  }
  
  .feature-card,
  .testimonial,
  .faq-item {
    margin: 1rem 0;
    padding: 1.5rem 1rem;
    max-width: 100%;
  }

  .trust-indicator {
    margin: 1rem 0;
    padding: 1.5rem 1rem;
    max-width: 100%;
  }

  .stat-number {
    font-size: 2.3rem;
  }
  
  .container {
    padding: 0 0.5rem;
  }
  
  .grid {
    gap: 1rem;
  }
  
  input, textarea {
    font-size: 16px;
    padding: 1rem;
  }
  
  .btn {
    padding: 1rem 2rem;
    font-size: 0.95rem;
  }
}