/* ─── Tablet (< 1024px) ──────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .process-steps {
    grid-template-columns: 1fr 1fr;
  }

  .process-step:nth-child(2) {
    border-right: none;
  }

  .process-step:nth-child(3) {
    border-right: none;
    border-top: 1px solid var(--border);
    grid-column: 1 / -1;
    padding-top: 40px;
  }
}

/* ─── Mobile (< 768px) ───────────────────────────────────────────────────────── */
@media (max-width: 768px) {

  /* ── Cursor — hard override ── */
  .cursor-dot,
  .cursor-ring {
    display: none !important;
  }

  * {
    cursor: auto !important;
  }

  /* ── Nav ── */
  .nav {
    padding: 18px 20px;
  }

  .nav.scrolled {
    padding: 14px 20px;
  }

  .nav-logo img {
    height: 42px;
    max-width: 200px;
  }

  .nav-cta {
    font-size: 11px;
    padding: 7px 14px;
  }

  /* ── Hero ── */
  .hero-content {
    padding: 0 20px;
    padding-top: 100px;
  }

  .hero-headline {
    font-size: clamp(42px, 11vw, 64px);
    line-height: 1.0;
  }

  .hero-sub {
    font-size: 15px;
    margin-bottom: 32px;
  }

  .hero-banner {
    display: none;
  }

  .hero-cta {
    display: none;
  }

  .hero-scroll-hint {
    display: none;
  }

  /* ── Services — vertical stack, override GSAP horizontal transform ── */
  .services-section {
    margin-top: -20px;
    overflow: visible;
    border-radius: 14px 14px 0 0;
  }

  .services-track {
    flex-direction: column;
    height: auto !important;
    transform: none !important;
  }

  .services-intro-panel {
    min-width: 100%;
    width: 100%;
    padding: 60px 20px 48px;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .service-panel {
    min-width: 100%;
    width: 100%;
    padding: 48px 20px;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .service-num {
    font-size: 72px;
    top: 12px;
    right: 12px;
  }

  .service-name {
    font-size: 28px;
  }

  .services-progress {
    display: none;
  }

  /* ── Process ── */
  .process-section {
    padding: 80px 20px;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .process-step {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 36px 0;
  }

  .process-step:last-child {
    border-bottom: none;
  }

  /* Reset tablet's 3rd-step override */
  .process-step:nth-child(3) {
    border-top: none;
    grid-column: auto;
    padding-top: 36px;
  }

  .process-title {
    font-size: clamp(26px, 7vw, 40px);
  }

  .step-title {
    font-size: 26px;
  }

  .step-deco-num {
    font-size: 80px;
    top: 10px;
    right: 0;
  }

  /* ── Marquee ── */
  .marquee-section {
    padding: 48px 0;
  }

  .marquee-inner {
    gap: 20px;
  }

  .marquee-inner span {
    font-size: clamp(22px, 6vw, 36px);
  }

  .marquee-left .marquee-inner {
    animation-duration: 20s;
  }

  .marquee-right .marquee-inner {
    animation-duration: 16s;
  }

  /* ── Why ── */
  .why-section {
    padding: 80px 20px;
  }

  .why-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 28px 0;
  }

  .why-statement {
    font-size: clamp(18px, 5.5vw, 28px);
  }

  /* ── CTA ── */
  .cta-inner {
    padding: 0 20px;
  }

  .cta-heading {
    font-size: clamp(40px, 11vw, 64px);
  }

  .cta-phone {
    font-size: clamp(18px, 5vw, 28px);
  }

  .cta-email {
    font-size: 13px;
  }

  /* ── Footer ── */
  .footer {
    padding: 20px;
    flex-direction: column;
    gap: 6px;
    text-align: center;
    font-size: 11px;
  }
}
