/* === Header === */
.siteHeader {
    background-color: #111;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 999;
    border-bottom: 1px solid #222;
  }
  
  .headerFlex {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo {
    color: var(--primary);
    font-size: 1.8rem;
    font-weight: bold;
  }
  
  
  .menuToggle {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text);
    cursor: pointer;
  }

.navLinks {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
  }
  
  .navLinks a {
    text-decoration: none;
    color: var(--text);
    transition: color 0.3s ease;
    font-weight: 500;
  }
  
  .navLinks a:hover {
    color: var(--primary);
  }

.iconBtn {
    background-color: var(--primary);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    padding: .5em;
    margin: .0em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /* font-size: 1.2rem; */
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
  }
  
  .iconBtn:hover {
    background-color: #2c7c47;
    transform: scale(1.1);
  }
  
  /* === Responsive Nav & Grid === */
@media (max-width: 868px) {
    .menuToggle {
      display: block;
    }
  
    .navLinks {
      flex-direction: column;
      position: absolute;
      /* top: 64px; */
      right: 0;
      background: #111;
      width: 220px;
      display: none;
      padding: 1rem;
      border-radius: 0 0 0 var(--radius);
    }
  
    .navLinks.show {
      display: flex;
    }
  
    .featuresGrid {
      grid-template-columns: 1fr;
    }
  
    .heroTitle {
      font-size: 2rem;
    }
  
    .ctaBtn {
      width: 100%;
    }
  }