:root {
  --primary-color: #7A5010;
  --secondary-color: #5A3A08;
  --accent-color: #C89030;
  --light-color: #FBF5EC;
  --dark-color: #1C0E02;
  --gradient-primary: linear-gradient(135deg, #7A5010 0%, #5A3A08 100%);
  --background-color: #FDFAF3;
  --text-color: #1C0E02;
  --border-color: rgba(122, 80, 16, 0.18);
  --divider-color: rgba(90, 58, 8, 0.12);
  --shadow-color: rgba(122, 80, 16, 0.11);
  --highlight-color: #2A7A5A;
  --main-font: 'Bitter', serif;
  --alt-font: 'Cabin', sans-serif;
}

.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: var(--secondary-color); max-height: 0; overflow: hidden; opacity: 0;
  transition: all 0.4s ease; box-shadow: 0 8px 25px rgba(0,0,0,0.2); z-index: 1000;
}
.mobile-nav ul { padding: 2rem; margin: 0; list-style: none; }
.mobile-nav li { margin: 1rem 0; }
.mobile-nav a { display: block; padding: 1.1rem 1.6rem; color: var(--light-color); text-decoration: none; border-radius: 10px; 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.3); transform: translateX(5px); }

/* ── FEATURE CARDS — big number + colored underline ── */
.feature-card {
  position: relative; background: white; border-radius: 20px;
  padding: 2rem 2rem 2rem 6rem;
  border: 2px solid var(--border-color);
  box-shadow: 0 4px 14px var(--shadow-color);
  transition: all 0.35s ease; overflow: hidden;
}
.feature-num {
  position: absolute; left: 1.4rem; top: 50%; transform: translateY(-50%);
  font-size: 3.2rem; font-weight: 800; font-family: var(--main-font);
  color: var(--primary-color); line-height: 1; opacity: 0.18;
  transition: opacity 0.35s ease;
}
.feature-icon {
  display: block; font-size: 1.6rem; margin-bottom: 0.5rem;
  transition: transform 0.3s ease;
}
.feature-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 4px; background: var(--gradient-primary);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s ease;
}
.feature-card:nth-child(2)::after { background: linear-gradient(90deg, #C89030, #7A5010); }
.feature-card:nth-child(3)::after { background: linear-gradient(90deg, #2A7A5A, #7A5010); }
.feature-card:nth-child(4)::after { background: linear-gradient(90deg, #5A3A08, #C89030); }
.feature-card:nth-child(5)::after { background: linear-gradient(90deg, #7A5010, #2A7A5A); }
.feature-card:nth-child(6)::after { background: linear-gradient(90deg, #C89030, #2A7A5A); }
.feature-card:hover::after { transform: scaleX(1); }
.feature-card:hover .feature-num { opacity: 0.35; }
.feature-card:hover .feature-icon { transform: scale(1.2) rotate(-5deg); }
.feature-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 40px rgba(122,80,16,0.22);
  border-color: var(--accent-color);
}

.testimonial {
  background: white; border-radius: 16px; padding: 2.2rem 2rem;
  border: 2px solid var(--border-color); box-shadow: 0 4px 12px var(--shadow-color);
  position: relative; transition: all 0.3s ease;
  border-top: 5px solid var(--primary-color);
}
.testimonial:nth-child(2) { border-top-color: var(--accent-color); }
.testimonial:nth-child(3) { border-top-color: var(--highlight-color); }
.testimonial:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(122,80,16,0.2); }

.faq-item {
  border: 2px solid var(--border-color); background: white;
  padding: 2rem 2rem 2rem 3.6rem; margin: 1.4rem 0;
  border-radius: 16px; box-shadow: 0 3px 10px var(--shadow-color);
  position: relative; transition: all 0.3s ease;
}
.faq-item::before {
  content: '?'; position: absolute; top: 1.5rem; left: -15px;
  width: 36px; height: 36px; background: var(--gradient-primary); color: white;
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-weight: bold; font-size: 1.2rem;
}
.faq-item:hover { transform: translateX(8px); box-shadow: 0 8px 22px rgba(122,80,16,0.2); border-color: var(--primary-color); }

input, textarea {
  transition: all 0.3s ease; font-family: var(--alt-font);
  border: 2px solid var(--border-color); border-radius: 10px;
  padding: 1.1rem; 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 4px rgba(122,80,16,0.10); }
input:hover, textarea:hover { border-color: var(--accent-color); }

button, .btn {
  transition: all 0.3s ease; background: var(--gradient-primary); color: white;
  border: none; padding: 1.2rem 2.6rem; 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 16px rgba(122,80,16,0.35); text-transform: uppercase; letter-spacing: 1px;
}
button:hover, .btn:hover { transform: translateY(-4px); box-shadow: 0 10px 24px rgba(122,80,16,0.44); background: linear-gradient(135deg, #5A3A08 0%, #1C0E02 100%); }

html { scroll-behavior: smooth; }
body { font-family: var(--alt-font); color: var(--text-color); background-color: var(--background-color); line-height: 1.75; }
h1, h2, h3 { font-family: var(--main-font); font-weight: 700; line-height: 1.3; }
header { background: var(--primary-color); color: var(--light-color); padding: 1.4rem 0; position: relative; z-index: 1000; box-shadow: 0 3px 12px rgba(122,80,16,0.30); }
footer { background: var(--dark-color); color: var(--light-color); }

a:focus, button:focus, input:focus, textarea:focus { outline: 3px solid var(--highlight-color); outline-offset: 2px; }
.active-link { position: relative; font-weight: 600; }
.active-link::after { content: ''; position: absolute; bottom: -5px; left: 0; right: 0; height: 3px; background: var(--highlight-color); border-radius: 2px; }

.pattern-bg {
  background-image:
    radial-gradient(ellipse at 6% 18%, rgba(122,80,16,0.07) 0%, transparent 50%),
    radial-gradient(ellipse at 92% 78%, rgba(200,144,48,0.06) 0%, transparent 46%),
    radial-gradient(circle at 50% 50%, rgba(42,122,90,0.03) 0%, transparent 40%);
}

.info-banner {
  background: linear-gradient(135deg, #EDD89A 0%, #D8B860 100%);
  border-top: 4px solid var(--primary-color); border-bottom: 4px solid var(--primary-color);
  text-align: center; padding: 4rem 0;
}
.info-banner h2 { color: var(--primary-color); margin-bottom: 1.2rem; }
.info-banner p { color: var(--text-color); max-width: 780px; margin: 0 auto; font-size: 1.05rem; line-height: 1.8; }

.footer-main { padding: 2.5rem 0 1.5rem; border-bottom: 1px solid var(--divider-color); }
.footer-extra { padding: 2rem 0; }
.footer-bottom { padding: 1rem 0; border-top: 1px solid var(--divider-color); }
.footer-extra-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 3rem; }

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .navigation { display: none; }
  .mobile-nav { display: block; }
  #contact .grid { max-width: 100% !important; }
  .feature-card { padding: 1.8rem 1.4rem 1.8rem 5rem; }
  .feature-num { font-size: 2.4rem; left: 1rem; }
  .faq-item { padding: 1.5rem 1.2rem 1.5rem 3rem; }
  .testimonial { padding: 1.6rem 1.2rem; }
  .footer-extra-grid { grid-template-columns: 1fr !important; gap: 1.8rem !important; }
}
@media (max-width: 480px) {
  .feature-card { padding: 1.6rem 1.2rem 1.6rem 4.4rem; }
  .feature-num { font-size: 2rem; }
}
@media (min-width: 768px) { #contact .grid { max-width: 80% !important; } }