:root {
  --primary-color: #F0A55A;
  --secondary-color: #D68A3D;
  --accent-color: #F4C087;
  --light-color: #FDF6ED;
  --dark-color: #8B5A2B;
  --gradient-primary: linear-gradient(135deg, #F0A55A 0%, #D68A3D 100%);
  --hover-color: #E59645;
  --background-color: #FFFCF7;
  --text-color: #3E3E3E;
  --border-color: rgba(240, 165, 90, 0.25);
  --divider-color: rgba(214, 138, 61, 0.18);
  --shadow-color: rgba(214, 138, 61, 0.16);
  --highlight-color: #5A9F77;
  --main-font: 'Playfair Display', serif;
  --alt-font: 'Inter', 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: white;
  border: none;
  border-radius: 16px;
  padding: 2.4rem 2rem;
  box-shadow: 0 2px 12px var(--shadow-color);
  transition: all 0.35s ease;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: 0 0 16px 16px;
  transform: scaleX(0);
  transition: transform 0.35s ease;
}

.feature-card:hover::after {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px var(--shadow-color);
}

.feature-icon {
  font-size: 3rem;
  margin: 0 auto 1.5rem auto;
  color: white;
  width: 84px;
  height: 84px;
  background: var(--gradient-primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s ease;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(240, 165, 90, 0.35);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 8px 22px rgba(240, 165, 90, 0.5);
}

/* Testimonials */
.testimonial {
  background: linear-gradient(135deg, white, var(--light-color));
  border: 2px solid var(--border-color);
  border-radius: 20px;
  padding: 2.6rem 2.3rem;
  margin: 1rem 0;
  box-shadow: 0 6px 22px var(--shadow-color);
  position: relative;
  transition: all 0.35s ease;
}

.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px var(--shadow-color);
  border-color: var(--accent-color);
}

.testimonial::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 30px;
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  opacity: 0.15;
}

.testimonial::after {
  content: '"';
  position: absolute;
  top: 10px;
  left: 45px;
  font-size: 4rem;
  color: var(--primary-color);
  font-family: Georgia, serif;
  opacity: 0.3;
  line-height: 1;
}

/* FAQ Items */
.faq-item {
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  margin: 1.3rem 0;
  box-shadow: 0 4px 18px var(--shadow-color);
  transition: all 0.35s ease;
  padding: 2.5rem 2.2rem 2.5rem 3rem;
  position: relative;
}

.faq-item::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--primary-color);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(240, 165, 90, 0.2);
}

.faq-item:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 26px var(--shadow-color);
  border-color: var(--accent-color);
}

.faq-item:hover::before {
  box-shadow: 0 0 0 6px rgba(240, 165, 90, 0.3);
}

.faq-item h3 {
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
}

.faq-item h3::before {
  content: '▸';
  margin-right: 0.9rem;
  font-size: 1.4rem;
  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: 10px;
  padding: 1.3rem;
  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 3px rgba(240, 165, 90, 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.4rem 3rem;
  border-radius: 10px;
  font-weight: 600;
  font-family: var(--alt-font);
  cursor: pointer;
  font-size: 1.05rem;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  box-shadow: 0 4px 14px rgba(240, 165, 90, 0.4);
}

button:hover,
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(240, 165, 90, 0.5);
  background: linear-gradient(135deg, #F4C087 0%, #F0A55A 100%);
}

/* Typography */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--alt-font);
  color: var(--text-color);
  background: var(--background-color);
  line-height: 1.7;
}

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: 18px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 5px 20px var(--shadow-color);
  transition: all 0.35s ease;
  position: relative;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: var(--gradient-primary);
  border-radius: 18px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.stat-card:hover::before {
  opacity: 0.12;
}

.stat-card:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 10px 30px var(--shadow-color);
}

.stat-number {
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--primary-color);
  font-family: var(--main-font);
  line-height: 1;
}

.stat-text {
  font-size: 0.98rem;
  color: var(--text-color);
  margin-top: 0.7rem;
  font-weight: 500;
}

/* Trust Indicators */
.trust-indicator {
  background: white;
  padding: 1.8rem 1.5rem;
  border-radius: 14px;
  border: 2px solid var(--border-color);
  box-shadow: 0 4px 16px var(--shadow-color);
  transition: all 0.35s ease;
  text-align: center;
  position: relative;
}

.trust-indicator:hover {
  transform: translateY(-4px);
  box-shadow: 0 7px 24px var(--shadow-color);
  border-color: var(--accent-color);
}

.trust-indicator::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  background: var(--light-color);
  border-radius: 50%;
  transition: all 0.35s ease;
  z-index: 0;
}

.trust-indicator:hover::after {
  width: 100%;
  height: 100%;
}

/* Header and Footer */
header {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  color: var(--text-color);
  padding: 1.4rem 0;
  position: relative;
  z-index: 1000;
  box-shadow: 0 3px 18px var(--shadow-color);
}

footer {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 2.9rem 0 1rem;
}

/* 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(280px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

/* Pattern Background */
.pattern-bg {
  background-color: var(--light-color);
  background-image: 
    linear-gradient(135deg, rgba(240, 165, 90, 0.05) 25%, transparent 25%),
    linear-gradient(225deg, rgba(240, 165, 90, 0.05) 25%, transparent 25%),
    linear-gradient(45deg, rgba(240, 165, 90, 0.05) 25%, transparent 25%),
    linear-gradient(315deg, rgba(240, 165, 90, 0.05) 25%, transparent 25%);
  background-position: 10px 0, 10px 0, 0 0, 0 0;
  background-size: 20px 20px;
  background-repeat: repeat;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
  
  .navigation {
    display: none;
  }
  
  .mobile-nav {
    display: block;
  }
  
  .hero h1 {
    font-size: 2.7rem;
  }
  
  .container {
    padding: 0 1rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.1rem;
  }
  
  .feature-card,
  .testimonial,
  .faq-item {
    margin: 0.9rem 0;
    padding: 1.9rem 1.5rem;
  }

  .trust-indicator {
    margin: 0.9rem 0;
    padding: 1.5rem 1.2rem;
  }

  .stat-number {
    font-size: 2.1rem;
  }
}