:root {
  --primary-color: #8B3A2A;
  --secondary-color: #6B2A1C;
  --accent-color: #C4613F;
  --light-color: #F8F0EC;
  --dark-color: #1C0E0A;
  --gradient-primary: linear-gradient(135deg, #8B3A2A 0%, #C4613F 100%);
  --hover-color: #742F1F;
  --background-color: #FDFAF8;
  --text-color: #2E1A14;
  --border-color: rgba(139, 58, 42, 0.18);
  --divider-color: rgba(107, 42, 28, 0.15);
  --shadow-color: rgba(139, 58, 42, 0.1);
  --highlight-color: #D4943A;
  --main-font: 'Raleway', sans-serif;
  --alt-font: 'Source Sans Pro', sans-serif;
}

/* Mobile Menu */
.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 — horizontal layout */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 1.8rem;
  margin: 2.5rem 0;
}

.feature-card {
  background: white;
  border-radius: 12px;
  padding: 1.8rem 2rem;
  box-shadow: 0 3px 15px var(--shadow-color);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1.4rem;
  border-top: none;
  border-bottom: 3px solid transparent;
  position: relative;
  overflow: hidden;
}

.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--gradient-primary);
  transition: width 0.4s ease;
}

.feature-card:hover::after {
  width: 100%;
}

.feature-card:hover {
  transform: translateX(5px);
  box-shadow: 0 8px 28px var(--shadow-color);
}

.feature-icon {
  font-size: 1.8rem;
  color: var(--primary-color);
  width: 56px;
  height: 56px;
  background: var(--light-color);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 2px solid var(--border-color);
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  background: var(--gradient-primary);
  color: white;
  border-color: transparent;
  transform: rotate(5deg);
}

.feature-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-family: var(--main-font);
}

.feature-content p {
  font-size: 0.95rem;
  color: var(--text-color);
  line-height: 1.6;
  margin: 0;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 2.5rem;
  margin: 2.5rem 0;
}

.testimonial {
  background: white;
  border-radius: 14px;
  padding: 2.2rem 1.8rem;
  box-shadow: 0 4px 18px var(--shadow-color);
  position: relative;
  transition: all 0.3s ease;
  border-left: 4px solid var(--primary-color);
}

.testimonial:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px var(--shadow-color);
  border-left-color: var(--accent-color);
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 5rem;
  opacity: 0.07;
  color: var(--primary-color);
  font-family: Georgia, serif;
  line-height: 1;
}

/* FAQ */
.faq-item {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  margin: 1.2rem 0;
  padding: 2rem;
  box-shadow: 0 3px 14px var(--shadow-color);
  transition: all 0.3s ease;
  position: relative;
}

.faq-item:hover {
  border-color: var(--accent-color);
  box-shadow: 0 6px 22px var(--shadow-color);
}

.faq-item h3 {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.faq-item h3::before {
  content: '?';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 50%;
  font-size: 0.85rem;
  font-weight: bold;
  flex-shrink: 0;
}

/* Progress Block */
.progress-block {
  width: 100%;
  background: var(--dark-color);
  padding: 4rem 0;
  color: white;
}

.progress-block h2 {
  color: white;
  text-align: center;
  margin-bottom: 0.8rem;
}

.progress-block .subtitle {
  color: rgba(255,255,255,0.7);
  text-align: center;
  margin-bottom: 3rem;
  font-size: 1rem;
}

.progress-list {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  max-width: 760px;
  margin: 0 auto;
}

.progress-item {
  display: grid;
  grid-template-columns: 200px 1fr 60px;
  align-items: center;
  gap: 1.4rem;
}

.progress-label {
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  text-align: right;
}

.progress-bar-wrap {
  background: rgba(255,255,255,0.1);
  border-radius: 20px;
  height: 14px;
  overflow: hidden;
  position: relative;
}

.progress-bar-fill {
  height: 100%;
  border-radius: 20px;
  background: var(--gradient-primary);
  position: relative;
  transition: width 1s ease;
}

.progress-bar-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.25) 50%, transparent 100%);
  border-radius: 20px;
}

.progress-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent-color);
  text-align: center;
}

/* Forms */
input, textarea {
  transition: all 0.3s ease;
  font-family: var(--alt-font);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  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 3px rgba(139, 58, 42, 0.1);
}

/* Button */
button, .btn {
  transition: all 0.3s ease;
  background: var(--gradient-primary);
  color: white;
  border: none;
  padding: 1.2rem 2.6rem;
  border-radius: 6px;
  font-weight: 600;
  font-family: var(--alt-font);
  cursor: pointer;
  font-size: 1rem;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  box-shadow: 0 3px 14px rgba(139, 58, 42, 0.3);
}

button:hover, .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(139, 58, 42, 0.4);
}

/* Typography */
html { scroll-behavior: smooth; }

body {
  font-family: var(--alt-font);
  color: var(--text-color);
  background: var(--background-color);
  line-height: 1.7;
  overflow-x: hidden;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
  padding: 0 2rem;
}

h1, h2, h3 {
  font-family: var(--main-font);
  font-weight: 700;
  color: var(--primary-color);
}

/* Header & Footer */
header {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  color: var(--text-color);
  padding: 1.2rem 0;
  position: relative;
  z-index: 1000;
  box-shadow: 0 2px 18px var(--shadow-color);
}

footer {
  background: var(--dark-color);
  color: var(--light-color);
  padding: 3.5rem 0 1.5rem;
}

/* Pattern BG */
.pattern-bg {
  background-image:
    repeating-linear-gradient(
      45deg,
      rgba(139, 58, 42, 0.03) 0px,
      rgba(139, 58, 42, 0.03) 1px,
      transparent 1px,
      transparent 20px
    ),
    repeating-linear-gradient(
      -45deg,
      rgba(196, 97, 63, 0.03) 0px,
      rgba(196, 97, 63, 0.03) 1px,
      transparent 1px,
      transparent 20px
    );
}

/* Trust indicators */
.trust-indicator {
  background: white;
  padding: 1.6rem 1.3rem;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  box-shadow: 0 3px 16px var(--shadow-color);
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
}

.trust-indicator:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 24px var(--shadow-color);
  border-color: var(--accent-color);
}

/* Contact */
.contact-inner {
  width: 80%;
  margin: 0 auto;
}

/* Responsive */
* { box-sizing: border-box; }

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .navigation { display: none; }
  .mobile-nav { display: block; }

  .hero h1 {
    font-size: 2.4rem;
    line-height: 1.2;
    padding: 0 1rem;
  }

  .container {
    padding: 0 1rem;
    max-width: 100vw;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .feature-card {
    padding: 1.5rem;
  }

  .progress-item {
    grid-template-columns: 130px 1fr 48px;
    gap: 0.8rem;
  }

  .progress-label {
    font-size: 0.82rem;
  }

  .contact-inner {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.9rem; padding: 0 0.5rem; }
  .hero p { font-size: 1rem; padding: 0 0.5rem; }

  .feature-card {
    padding: 1.2rem;
    gap: 1rem;
  }

  .feature-icon {
    width: 46px;
    height: 46px;
    font-size: 1.5rem;
  }

  .progress-item {
    grid-template-columns: 1fr;
    gap: 0.4rem;
    text-align: left;
  }

  .progress-label {
    text-align: left;
  }

  .container { padding: 0 0.5rem; }

  input, textarea { font-size: 16px; padding: 1rem; }
  .btn { padding: 1rem 2rem; font-size: 0.95rem; }
}