﻿/* ===================================================
   BOUYA PAPY — responsive.css
   Breakpoints : tablet (1024px), mobile (768px), xs (480px)
   =================================================== */

/* ---- Tablet ---- */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 48px;
    padding: 80px 24px 100px;
  }
  .hero-actions  { justify-content: center; }
  .hero-stats    { justify-content: center; }
  .hero-visual   { order: -1; }
  .phone-mockup  { margin: 0 auto; }

  .about-grid    { grid-template-columns: 1fr; gap: 40px; }
  .about-visual  { order: 2; }
  .about-content { order: 1; }

  .features-grid { grid-template-columns: repeat(2, 1fr); }

  .benefits-grid { grid-template-columns: 1fr; gap: 48px; }
  .benefits-visual { order: -1; }

  .funding-card  {
    grid-template-columns: 1fr;
    padding: 40px 36px;
    gap: 40px;
  }
  .funding-visual { order: -1; }

  .steps-connector { display: none; }
  .steps-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
}

/* ---- Mobile ---- */
@media (max-width: 768px) {
  .section-pad { padding: 64px 0; }

  /* Nav */
  .nav-links {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    position: absolute;
    top: 70px; left: 0; right: 0;
    background: rgba(15,28,53,.97);
    backdrop-filter: blur(12px);
    padding: 20px 24px 28px;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    color: rgba(255,255,255,.85) !important;
    font-size: 1rem;
    width: 100%;
    padding: 10px 12px;
  }
  .nav-links a:hover {
    background: rgba(255,255,255,.1) !important;
    color: var(--white) !important;
  }
  .nav-btn-outline {
    border-color: rgba(255,255,255,.3) !important;
  }
  .nav-btn {
    background: var(--blue-mid) !important;
    margin-top: 4px;
  }
  .nav-toggle { display: flex; }
  .navbar.scrolled .nav-links { background: rgba(255,255,255,.97); }
  .navbar.scrolled .nav-links a { color: var(--gray-600) !important; }

  /* Hero */
  .hero-title    { font-size: 3.2rem; }
  .hero-badge    { font-size: .75rem; }

  /* Features */
  .features-grid { grid-template-columns: 1fr; }

  /* About */
  .about-values  { gap: 10px; }

  /* Funding */
  .funding-card  { padding: 32px 24px; border-radius: var(--radius-lg); }

  /* Footer */
  .footer-grid   {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }
  .footer-social { justify-content: center; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* ---- Extra small ---- */
@media (max-width: 480px) {
  .hero-title  { font-size: 2.5rem; }
  .hero-stats  { gap: 16px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-actions      { flex-direction: column; }

  .phone-mockup { width: 220px; }
  .phone-frame  { width: 220px; min-height: 440px; }

  .papy-card    { padding: 28px 20px; }
  .step-card    { padding: 28px 20px; }

  .orbit-system { width: 260px; height: 260px; }
  .ring-1       { width: 160px; height: 160px; }
  .ring-2       { width: 250px; height: 250px; }
  .orbit-center { width: 75px; height: 75px; }

  .download-btns { flex-direction: column; align-items: center; }
  .btn-store     { width: 100%; max-width: 280px; justify-content: center; }
}
