/* ==========================================================================
   Digital Root Billing Software - Public Responsive Stylesheet
   ========================================================================== */

@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.6rem;
  }

  .grid-3, .steps-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
    flex-direction: column;
    padding: 2rem 1.5rem;
    gap: 1.5rem;
    display: none;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
  }

  .nav-menu.active {
    display: flex;
  }

  .hero {
    padding: 3rem 0 2.5rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.05rem;
  }

  .grid-3, .steps-wrapper, .contact-layout, .footer-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card {
    padding: 2rem 1.5rem;
  }

  .price-val {
    font-size: 2.75rem;
  }

  .comp-table {
    font-size: 0.85rem;
  }

  .comp-table th, .comp-table td {
    padding: 0.75rem;
  }
}
