:root {
  --primary-color: #C47A1E;
  --secondary-color: #A85F10;
  --accent-color: #5D6D7E;
  --light-color: #FFFBF2;
  --dark-color: #2C1A06;
  --gradient-primary: linear-gradient(135deg, #C47A1E 0%, #A85F10 100%);
  --hover-color: #A86618;
  --background-color: #FDFAF4;
  --text-color: #2E2410;
  --border-color: rgba(196, 122, 30, 0.2);
  --divider-color: rgba(168, 95, 16, 0.15);
  --shadow-color: rgba(196, 122, 30, 0.13);
  --highlight-color: #F7DC6F;
  --main-font: 'Lora', serif;
  --alt-font: 'Inter', sans-serif;
}

/* Mobile Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 8px;
  background: rgba(255,255,255,0.15);
  border-radius: 8px;
}
.hamburger .line {
  width: 28px;
  height: 3px;
  background-color: var(--light-color);
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}
#menu-toggle { display: none; }
#menu-toggle:checked ~ .mobile-nav {
  max-height: 420px;
  opacity: 1;
}
.mobile-nav {
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  background: linear-gradient(160deg, var(--dark-color) 0%, var(--secondary-color) 100%);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.4s ease;
  box-shadow: 0 8px 30px rgba(0,0,0,0.22);
  z-index: 1000;
}
.mobile-nav ul { padding: 2rem; margin: 0; list-style: none; }
.mobile-nav li { margin: 0.9rem 0; }
.mobile-nav a {
  display: block;
  padding: 1.1rem 1.6rem;
  color: var(--light-color);
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.3s ease;
  font-size: 1.05rem;
  font-weight: 500;
  border: 2px solid transparent;
}
.mobile-nav a:hover {
  background-color: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.28);
  transform: translateX(8px);
}

/* Feature Cards — number badge style, large step number top-left, minimal border */
.feature-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 2.2rem;
  box-shadow: 0 4px 18px rgba(196,122,30,0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}
.feature-card-number {
  position: absolute;
  top: 1.4rem;
  right: 1.6rem;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(196,122,30,0.08);
  font-family: var(--main-font);
  transition: all 0.4s ease;
  user-select: none;
}
.feature-card:hover .feature-card-number {
  color: rgba(196,122,30,0.16);
  transform: scale(1.1);
}
.feature-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-8px);
  box-shadow: 0 16px 38px rgba(196,122,30,0.18);
}
.feature-icon {
  font-size: 2.6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 62px;
  height: 62px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(196,122,30,0.12) 0%, rgba(247,220,111,0.15) 100%);
  margin: 0 auto 1.2rem auto;
  transition: transform 0.3s ease;
  text-align: center;
}
.feature-card:hover .feature-icon {
  transform: scale(1.18) rotate(5deg);
}

/* Testimonials */
.testimonial {
  background: #ffffff;
  border-radius: 18px;
  padding: 2.4rem;
  margin: 1.2rem 0;
  box-shadow: 0 4px 16px rgba(196,122,30,0.09);
  border-left: 5px solid var(--primary-color);
  position: relative;
  transition: all 0.35s ease;
}
.testimonial::after {
  content: '✦';
  position: absolute;
  bottom: 16px; right: 20px;
  font-size: 2.2rem;
  color: var(--primary-color);
  opacity: 0.1;
}
.testimonial:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 34px rgba(196,122,30,0.17);
  border-left-color: var(--secondary-color);
}

/* FAQ */
.faq-item {
  background: white;
  border-radius: 16px;
  padding: 2rem 2.2rem;
  margin: 1.1rem 0;
  box-shadow: 0 3px 14px rgba(196,122,30,0.08);
  border: 2px solid var(--border-color);
  transition: all 0.35s ease;
  position: relative;
}
.faq-item::before {
  content: '';
  position: absolute;
  top: -2px; left: -2px; right: -2px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--highlight-color));
  border-radius: 16px 16px 0 0;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.faq-item:hover::before { opacity: 1; }
.faq-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(196,122,30,0.15);
  border-color: var(--primary-color);
}

/* Inputs */
input, textarea {
  transition: all 0.3s ease;
  font-family: var(--alt-font);
  border: 2px solid var(--border-color);
  border-radius: 10px;
  padding: 1.1rem 1.3rem;
  background-color: #fffdf7;
  color: var(--text-color);
  font-size: 1rem;
}
input:focus, textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 5px rgba(196,122,30,0.1);
  background: white;
}
input:hover, textarea:hover { border-color: var(--secondary-color); }

/* Buttons */
button, .btn {
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
  background: var(--gradient-primary);
  color: white;
  border: none;
  padding: 1.1rem 2.6rem;
  border-radius: 50px;
  font-weight: 700;
  font-family: var(--alt-font);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}
button::before, .btn::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  background: rgba(255,255,255,0.22);
  border-radius: 50%;
  transform: translate(-50%,-50%);
  transition: width 0.4s, height 0.4s;
}
button:hover::before, .btn:hover::before { width: 300%; height: 300%; }
button:hover, .btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 26px rgba(168,95,16,0.42);
}

/* Base */
html { scroll-behavior: smooth; }
h1, h2, h3 {
  font-family: var(--main-font);
  font-weight: 700;
  text-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
body {
  font-family: var(--alt-font);
  color: var(--text-color);
  background-color: var(--background-color);
  line-height: 1.75;
}
.hero {
  position: relative;
  background: linear-gradient(150deg, var(--dark-color) 0%, var(--secondary-color) 65%, var(--primary-color) 100%);
}

/* Stats */
.stat-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 2.4rem 1.5rem;
  text-align: center;
  box-shadow: 0 4px 16px rgba(196,122,30,0.1);
  transition: all 0.3s ease;
  border-top: 4px solid var(--primary-color);
}
.stat-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 14px 30px rgba(196,122,30,0.2);
}
.stat-number {
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: var(--main-font);
}
.stat-text { font-size: 1rem; color: var(--text-color); margin-top: 0.4rem; }

/* Trust */
.trust-indicator {
  background: white;
  padding: 1.4rem;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(196,122,30,0.08);
  transition: all 0.3s ease;
}
.trust-indicator:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(196,122,30,0.14);
}

/* Header / Footer */
header {
  background: linear-gradient(135deg, var(--dark-color) 0%, var(--secondary-color) 100%);
  color: var(--light-color);
  padding: 1.2rem 0;
  position: relative;
  z-index: 1000;
  box-shadow: 0 3px 16px rgba(44,26,6,0.38);
}
footer {
  background: var(--dark-color);
  color: var(--light-color);
  padding: 4rem 0 1rem;
}
header img[alt="logo"], footer img[alt="logo"] { filter: brightness(0) invert(1); }

/* Pattern — warm honeycomb-like dots */
.pattern-bg {
  background-image:
    radial-gradient(circle at 25% 60%, rgba(196,122,30,0.07) 0%, transparent 48%),
    radial-gradient(circle at 78% 22%, rgba(247,220,111,0.09) 0%, transparent 44%),
    radial-gradient(circle, rgba(196,122,30,0.04) 1px, transparent 1px);
  background-size: auto, auto, 28px 28px;
}

/* Focus / Scrollbar */
a:focus, button:focus, input:focus, textarea:focus {
  outline: 3px solid var(--highlight-color);
  outline-offset: 3px;
}
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--light-color); }
::-webkit-scrollbar-thumb { background: var(--gradient-primary); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--secondary-color); }

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in-up { animation: fadeInUp 0.75s ease-out; }

/* Responsive */
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .navigation { display: none; }
  .mobile-nav { display: block; }
  .hero h1 { font-size: 2.1rem; }
  .container { padding: 0 1.2rem; }
  .feature-card, .testimonial, .faq-item, .stat-card { padding: 1.6rem; }
  #contact .grid { max-width: 100% !important; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 1.65rem; }
  .stat-number { font-size: 2.2rem; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
@media (prefers-contrast: high) {
  :root {
    --text-color: #000;
    --background-color: #fff;
    --border-color: #000;
    --primary-color: #000;
    --secondary-color: #000;
  }
}