  .hero {
    background: linear-gradient(160deg, #3B2507 0%, #6B3F1A 50%, #A0522D 100%);
    padding: 5rem 2rem 4rem;
    text-align: center;
    position: relative; overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.9);
    padding: 6px 16px; border-radius: 50px;
    font-size: 0.8rem; font-weight: 500;
    margin-bottom: 1.5rem;
    position: relative; z-index: 1;
  }
  .hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700; color: white;
    line-height: 1.2; margin-bottom: 1rem;
    position: relative; z-index: 1;
  }
  .hero h1 em { color: #C8956C; font-style: normal; }
  .hero p {
    color: rgba(255,255,255,0.75); font-size: 1.1rem;
    max-width: 600px; margin: 0 auto 2.5rem;
    line-height: 1.7; position: relative; z-index: 1;
  }
  .hero-cta {
    display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
    position: relative; z-index: 1;
  }
  .btn-hero-primary {
    background: white; color: var(--soil-dark);
    border: none; padding: 14px 32px;
    border-radius: 50px; font-family: 'DM Sans', sans-serif;
    font-weight: 600; font-size: 1rem;
    cursor: pointer; transition: all 0.2s;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  }
  .btn-hero-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.3); }
  .btn-hero-secondary {
    background: transparent; color: white;
    border: 1.5px solid rgba(255,255,255,0.4); padding: 14px 32px;
    border-radius: 50px; font-family: 'DM Sans', sans-serif;
    font-weight: 500; font-size: 1rem;
    cursor: pointer; transition: all 0.2s;
  }
  .btn-hero-secondary:hover { background: rgba(255,255,255,0.1); }

  .stats-bar {
    background: white;
    display: flex; justify-content: center; flex-wrap: wrap;
    gap: 0; border-bottom: 1px solid rgba(160,82,45,0.1);
  }
  .stat-item {
    padding: 1.5rem 3rem;
    text-align: center;
    border-right: 1px solid rgba(160,82,45,0.1);
  }
  .stat-item:last-child { border-right: none; }
  .stat-item .num {
    font-family: 'Playfair Display', serif;
    font-size: 2rem; font-weight: 700;
    color: var(--soil-dark);
  }
  .stat-item .lbl { font-size: 0.8rem; color: var(--text-light); margin-top: 2px; }

  .section { padding: 5rem 2rem; max-width: 1100px; margin: 0 auto; }
  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem; font-weight: 700;
    color: var(--soil-dark); margin-bottom: 0.5rem;
  }
  .section-sub { color: var(--text-light); margin-bottom: 3rem; font-size: 1.05rem; }

  .features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
  .feature-card {
    background: white; border-radius: var(--radius);
    padding: 2rem;
    border: 1.5px solid rgba(160,82,45,0.1);
    transition: all 0.3s;
  }
  .feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
  .feature-icon {
    width: 52px; height: 52px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; margin-bottom: 1.2rem;
  }
  .feature-card h3 {
    font-size: 1.05rem; font-weight: 600;
    color: var(--soil-dark); margin-bottom: 0.5rem;
  }
  .feature-card p { color: var(--text-light); font-size: 0.9rem; line-height: 1.6; }

  .how-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 0; }
  .how-step {
    padding: 2rem; text-align: center;
    position: relative;
  }
  .how-step::after {
    content: '→'; position: absolute; right: -10px; top: 50%;
    transform: translateY(-50%);
    color: var(--soil-light); font-size: 1.5rem;
  }
  .how-step:last-child::after { display: none; }
  .step-num {
    width: 48px; height: 48px; border-radius: 50%;
    background: var(--soil-pale); color: var(--soil-dark);
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1rem;
    border: 2px solid rgba(160,82,45,0.2);
  }
  .how-step h4 { font-size: 0.95rem; font-weight: 600; color: var(--soil-dark); margin-bottom: 0.4rem; }
  .how-step p { font-size: 0.82rem; color: var(--text-light); line-height: 1.5; }

  .about-section {
    background: linear-gradient(135deg, var(--soil-dark), var(--soil-mid));
    border-radius: 24px; padding: 4rem;
    color: white; margin: 0 2rem 3rem;
  }
  .about-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem; margin-bottom: 1rem;
  }
  .about-section p { opacity: 0.8; line-height: 1.8; max-width: 700px; }