/* =========================================================
   Cookio — Responsive Layer (min-width breakpoints)
   ========================================================= */

/* ---------- Small phones tighten spacing ---------- */
@media (max-width: 359px) {
  .hero-title { font-size: 1.85rem; }
  .btn-lg { padding: 14px 22px; font-size: 0.95rem; }
}

/* ---------- ≥600px : large phones / small tablets ---------- */
@media (min-width: 600px) {
  .offer-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-actions .btn { flex: 0 0 auto; }
}

/* ---------- ≥768px : tablets ---------- */
@media (min-width: 768px) {
  .section { padding: 96px 0; }

  .about-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .reach-grid { grid-template-columns: 1.1fr 0.9fr; }
  .reach-path { flex-direction: column; }

  .cta-title { font-size: 2.3rem; }
}

/* ---------- ≥1024px : desktop ---------- */
@media (min-width: 1024px) {
  /* Navigation switches to inline layout */
  .nav-toggle { display: none; }
  .nav-backdrop { display: none; }
  .nav-menu {
    position: static;
    width: auto;
    height: auto;
    background: transparent;
    padding: 0;
    flex-direction: row;
    align-items: center;
    gap: 32px;
    transform: none;
    box-shadow: none;
  }
  .nav-links {
    flex-direction: row;
    gap: 4px;
  }
  .nav-link { padding: 8px 14px; font-size: 0.98rem; }
  .nav-cta { width: auto; }

  /* Hero becomes two columns */
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 60px;
  }
  .hero { padding: 70px 0 90px; }
  .hero-shape { width: 520px; height: 520px; top: -180px; right: -220px; }

  /* Offer + feature grids widen */
  .offer-grid { grid-template-columns: repeat(4, 1fr); }
  .feature-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-grid { grid-template-columns: repeat(4, 1fr); }

  .timeline { padding-left: 128px; }
  .timeline-dot { left: -128px; width: 100px; font-size: 0.92rem; }

  /* Mobile sticky CTA only needed on small screens */
  .mobile-sticky-cta { display: none; }
  body { padding-bottom: 0; }

  /* No bottom bar on desktop, so the button can sit lower */
  .scroll-top-btn { bottom: 28px; right: 28px; }

  .section-title { font-size: clamp(2rem, 3vw, 2.7rem); }

  .eyebrow-badge { font-size: 1.05rem; padding: 12px 26px; }

  .footer-grid {
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 40px;
  }
}

/* ---------- ≥1280px : large desktop ---------- */
@media (min-width: 1280px) {
  .container { padding: 0 32px; }
  .hero-title { font-size: 3.6rem; }
}
