/* ===== HERO ===== */
.home-hero{
    position: relative;
    margin: 90px auto 32px;
    padding: clamp(28px, 6vw, 72px) 16px;
    max-width: 1100px;
    border-radius: 24px;
    border: 1px solid var(--border);
    background:
      radial-gradient(1200px 500px at 10% -10%, color-mix(in srgb, var(--primary, #d29b32) 16%, transparent), transparent),
      color-mix(in srgb, var(--card) 92%, transparent);
    box-shadow: var(--shadow);
  }
  
  .hero-content{
    max-width: 820px;
    margin-inline: auto;
    text-align: center;
  }
  
  .badge{
    display: inline-block;
    padding: 6px 10px;
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: .9rem;
    opacity: .9;
    background: color-mix(in srgb, var(--card) 88%, transparent);
    margin-bottom: 12px;
  }
  
  .home-hero h1{
    font-size: clamp(1.9rem, 4vw, 3rem);
    line-height: 1.15;
    margin: 6px 0 10px;
  }
  .home-hero h1 span{ color: var(--primary, #d29b32); }
  
  .lead{
    font-size: clamp(1rem, 2vw, 1.2rem);
    opacity: .9;
    margin-bottom: 18px;
  }
  
  .hero-actions{
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 10px;
  }
  
  .btn{
    padding: 10px 16px;
    border-radius: 12px;
    border: 1px solid var(--border);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .btn.primary{ background: var(--primary, #d29b32); color: #fff; border-color: transparent; }
  .btn.ghost{ background: transparent; color: var(--text); }
  .btn.outline{ background: transparent; color: var(--text); }
  
  .hero-metrics{
    margin-top: 8px;
    display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
    opacity: .9;
  }
  .hero-metrics li{ list-style: none; }
  
  /* ===== FEATURES GRID ===== */
  .features{
    max-width: 1100px;
    margin: 10px auto 36px;
    padding: 0 16px;
  }
  .features h2{
    font-size: clamp(1.4rem, 2.6vw, 2rem);
    text-align: center;
    margin-bottom: 14px;
  }
  
  .grid{
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 12px;
  }
  @media (max-width: 1100px){ .grid{ grid-template-columns: repeat(4, 1fr); } }
  @media (max-width: 740px){ .grid{ grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 430px){ .grid{ grid-template-columns: 1fr; } }
  
  .card{
    display: grid;
    gap: 6px;
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--card);
    text-decoration: none;
    color: inherit;
    transition: transform .15s ease, box-shadow .2s ease;
  }
  .card:hover{ transform: translateY(-2px); box-shadow: var(--shadow); }
  
  .card-ico{
    width: 42px; height: 42px; display: grid; place-items: center;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: color-mix(in srgb, var(--card) 88%, transparent);
    font-size: 1.2rem;
  }
  
  /* ===== CTA STRIP ===== */
  .cta-strip{
    margin: 0 auto 48px;
    max-width: 1100px;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 16px;
    background: color-mix(in srgb, var(--card) 92%, transparent);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    align-items: center;
  }
  .cta-content h3{ margin: 0 0 4px; }
  .cta-actions{ display: flex; gap: 10px; flex-wrap: wrap; }
  @media (max-width: 640px){
    .cta-strip{ grid-template-columns: 1fr; text-align: center; }
    .cta-actions{ justify-content: center; }
  }
  