/* ==========================================================================
   Responsive — Media queries (768px, 1024px, 1280px)
   ========================================================================== */

/* ---- Tablet (768px+) ---- */
@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .form-row {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .trust-strip .container {
    flex-direction: row;
    justify-content: center;
    gap: var(--space-48);
  }

  .hero {
    padding: var(--space-128) 0 var(--space-96);
  }

  .hero-grid {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero-content {
    flex: 1 1 55%;
    max-width: 600px;
  }

  .hero-image {
    flex: 0 0 35%;
    max-width: 340px;
  }

  .hero-image img {
    max-height: 480px;
  }
}

/* ---- Small desktop (1024px+) ---- */
@media (min-width: 1024px) {
  /* Show desktop nav */
  .main-nav {
    display: block;
  }

  .nav-toggle {
    display: none;
  }

  .header-utility-link {
    display: inline;
  }

  .header-cta {
    display: inline-flex;
  }

  .header-inner {
    height: 72px;
  }

  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }

  .grid-content-sidebar {
    grid-template-columns: 2fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  }

  .page-hero {
    padding: var(--space-96) 0 var(--space-64);
  }

  /* Step connector lines */
  .process-steps .grid-3 {
    position: relative;
  }

  .step-card {
    position: relative;
  }

  .step-card:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 28px;
    right: calc(-1 * var(--space-16));
    width: var(--space-32);
    height: 2px;
    background: var(--line-200);
  }
}

/* ---- Desktop (1280px+) ---- */
@media (min-width: 1280px) {
  :root {
    --container-padding: var(--space-32);
  }

  .hero-grid .hero-content {
    max-width: 680px;
    flex: 1 1 55%;
  }

  .hero-image {
    max-width: 380px;
  }

  .hero-image img {
    max-height: 540px;
  }
}

/* ---- Print ---- */
@media print {
  .site-header,
  .site-footer,
  .cta-band,
  .cookie-banner,
  .nav-toggle,
  .btn {
    display: none !important;
  }

  body {
    font-size: 12pt;
    color: #000;
  }

  .hero {
    background: none !important;
    color: #000;
    padding: 20pt 0;
  }

  .hero h1,
  .hero-subtitle {
    color: #000;
  }

  a[href]::after {
    content: ' (' attr(href) ')';
    font-size: 10pt;
    color: #666;
  }

  .container {
    max-width: 100%;
    padding: 0;
  }
}
