/* ═══════════════════════════════════════════════════════════
   GrowthLab Studio — responsive.css
   Mobile-First Responsive Design  |  320px → 4K
   Linked LAST — overrides all other stylesheets
═══════════════════════════════════════════════════════════ */

/* ── Base Mobile Resets ─────────────────────────────────── */
html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}
body {
  overflow-x: hidden;
  min-width: 320px;
}
*, *::before, *::after {
  box-sizing: border-box;
}
img, video, svg {
  max-width: 100%;
}

/* ── Container ──────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* ── Touch-friendly base ────────────────────────────────── */
button, a, [role="button"], input, select, textarea {
  -webkit-tap-highlight-color: transparent;
}

/* ═══════════════════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(5,5,14,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(124,58,237,0.1);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 0 1.5rem;
  max-width: 1240px;
  margin: 0 auto;
  gap: 1rem;
}
.nav-logo-text {
  font-size: 0.9375rem;
  white-space: nowrap;
}

/* Mobile menu full-width */
.mobile-menu {
  background: rgba(5,5,14,0.98);
  border-bottom: 1px solid rgba(124,58,237,0.12);
  padding: 0.75rem 1rem 1rem;
}
.mobile-menu a {
  display: block;
  padding: 0.875rem 1rem;
  min-height: 48px;
  font-size: 1rem;
  border-radius: 0.625rem;
  font-weight: 600;
  color: rgba(220,215,255,0.7);
}
.mobile-menu a:active {
  background: rgba(124,58,237,0.12);
}
.btn-mobile-cta {
  margin-top: 0.625rem;
  display: block;
  text-align: center;
}

/* Hamburger button — touch friendly */
.btn-hamburger {
  min-width: 44px;
  min-height: 44px;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 0.625rem;
  cursor: pointer;
  flex-shrink: 0;
}

/* Earn pill — compact on small screens */
.earn-pill {
  white-space: nowrap;
  flex-shrink: 0;
}

/* "Get Started" nav button — hide on tablet/mobile (it's in the mobile menu) */
.btn-nav-cta {
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════════════════════════ */
#hero {
  min-height: 100svh;
  padding: 6rem 0 4rem;
  display: flex;
  align-items: center;
}
.hero-inner {
  width: 100%;
}
.hero-title {
  word-break: break-word;
  hyphens: auto;
}
.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.btn-hero-primary,
.btn-hero-outline {
  min-height: 48px;
  flex: 1 1 auto;
  max-width: 260px;
}

/* ═══════════════════════════════════════════════════════════
   SECTIONS
═══════════════════════════════════════════════════════════ */
section {
  position: relative;
  z-index: 1;
}
.section-header {
  margin-bottom: 2.5rem;
}
.section-subtitle {
  padding: 0 0.5rem;
}

/* ═══════════════════════════════════════════════════════════
   LIVE STATS
═══════════════════════════════════════════════════════════ */
.live-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.live-stat-card {
  padding: 1.5rem 1rem;
}

/* ═══════════════════════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

/* ═══════════════════════════════════════════════════════════
   OFFER SECTION
═══════════════════════════════════════════════════════════ */
.offer-wrap {
  padding: 3.5rem 2.5rem;
}

/* ═══════════════════════════════════════════════════════════
   CALCULATOR
═══════════════════════════════════════════════════════════ */
.calc-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

/* ═══════════════════════════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════════════════════════ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

/* ═══════════════════════════════════════════════════════════
   WHY US
═══════════════════════════════════════════════════════════ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

/* ═══════════════════════════════════════════════════════════
   ORDER FORM
═══════════════════════════════════════════════════════════ */
.order-wrap {
  max-width: 680px;
  margin: 0 auto;
  width: 100%;
}
.order-card {
  padding: 2rem 1.75rem;
}
.step-indicator {
  flex-wrap: nowrap;
  overflow-x: visible;
  gap: 0;
}
.step-dot {
  width: 2.25rem;
  height: 2.25rem;
  min-width: 2.25rem;
  min-height: 2.25rem;
}
.service-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.service-btn {
  min-height: 44px;
  flex: 1 1 auto;
  justify-content: center;
}
.btn-order-submit,
.btn-primary.btn-order-submit {
  min-height: 52px;
  width: 100%;
  font-size: 1rem;
}
.price-preview {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 1rem;
}

/* ═══════════════════════════════════════════════════════════
   PAYMENT SECTION
═══════════════════════════════════════════════════════════ */
.payment-amount-value {
  font-size: 2.5rem;
}
.trust-badges-row {
  gap: 0.75rem;
}
.wa-big-btn {
  min-height: 56px;
}

/* ═══════════════════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════════════════ */
.testimonials-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

/* ═══════════════════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.contact-card {
  min-height: 44px;
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
}
.footer-bottom {
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* ═══════════════════════════════════════════════════════════
   MODALS
═══════════════════════════════════════════════════════════ */
.modal-overlay {
  padding: 1rem;
  align-items: center;
}
.modal-box {
  max-height: 90vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

/* ═══════════════════════════════════════════════════════════
   BUTTONS — global touch targets
═══════════════════════════════════════════════════════════ */
.btn-primary,
.btn-hero-outline,
.btn-back,
.btn-claim,
.wa-big-btn {
  min-height: 48px;
}
.btn-back {
  flex-shrink: 0;
}
.step-btn-row {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

/* ═══════════════════════════════════════════════════════════
   INPUTS
═══════════════════════════════════════════════════════════ */
.input-base,
.textarea-base {
  font-size: 1rem;
  min-height: 48px;
}

/* Prevent iOS zoom on input focus */
@supports (-webkit-touch-callout: none) {
  .input-base,
  .textarea-base,
  select {
    font-size: max(16px, 1rem);
  }
}

/* ═══════════════════════════════════════════════════════════
   LARGE DESKTOP  (≥1440px)
═══════════════════════════════════════════════════════════ */
@media (min-width: 1440px) {
  .container {
    max-width: 1320px;
    padding: 0 2rem;
  }
  .hero-title {
    font-size: 5.75rem;
  }
  .live-stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  .steps-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ═══════════════════════════════════════════════════════════
   4K / ULTRA-WIDE  (≥2000px)
═══════════════════════════════════════════════════════════ */
@media (min-width: 2000px) {
  html { font-size: 18px; }
  .container { max-width: 1600px; }
}

/* ═══════════════════════════════════════════════════════════
   LAPTOP  (≤1100px)
═══════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .calc-wrap {
    grid-template-columns: 1fr;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ═══════════════════════════════════════════════════════════
   TABLET  (≤900px)
═══════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  /* Nav */
  .nav-links {
    display: none !important;
  }
  .btn-hamburger {
    display: flex !important;
  }
  .nav-inner {
    padding: 0 1rem;
  }
  /* Hide "Get Started" from top bar — it lives in the mobile menu */
  .btn-nav-cta {
    display: none !important;
  }

  /* Grids → 2-col */
  .live-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.875rem;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.875rem;
  }
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .testimonials-track {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  /* Offer */
  .offer-wrap {
    padding: 3rem 2rem;
  }

  /* Section spacing */
  section {
    padding: 4rem 0;
  }
  .section-header {
    margin-bottom: 2.25rem;
  }

  /* Order card */
  .order-card {
    padding: 1.75rem 1.5rem;
  }
}

/* ═══════════════════════════════════════════════════════════
   MOBILE  (≤640px)
═══════════════════════════════════════════════════════════ */
@media (max-width: 640px) {
  /* Container */
  .container {
    padding: 0 0.875rem;
  }

  /* Section spacing */
  section {
    padding: 3rem 0;
  }
  .section-header {
    margin-bottom: 2rem;
  }
  .section-title {
    font-size: clamp(1.625rem, 6vw, 2.25rem);
  }
  .section-subtitle {
    font-size: 0.9375rem;
  }

  /* Nav */
  .nav-inner {
    height: 56px;
    padding: 0 0.875rem;
  }
  .earn-pill {
    font-size: 0.75rem;
    padding: 0.3rem 0.75rem;
  }
  .nav-logo-text {
    font-size: 0.875rem;
  }

  /* Hero */
  #hero {
    padding: 5.5rem 0 3.5rem;
    min-height: 100svh;
  }
  .hero-title {
    font-size: clamp(2.25rem, 9vw, 3.25rem);
    line-height: 1.08;
    margin-bottom: 1.125rem;
  }
  .hero-sub {
    font-size: 0.9375rem;
    margin-bottom: 2rem;
    padding: 0 0.25rem;
  }
  .hero-badge {
    font-size: 0.75rem;
    padding: 0.4rem 1rem;
    margin-bottom: 1.5rem;
  }
  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    margin-bottom: 2.25rem;
  }
  .btn-hero-primary,
  .btn-hero-outline {
    max-width: 100%;
    width: 100%;
    font-size: 1rem;
    padding: 1rem 1.5rem;
  }
  .hero-icons {
    gap: 0.875rem;
    margin-bottom: 2rem;
  }
  .hero-icon-box {
    width: 2.75rem;
    height: 2.75rem;
  }
  .hero-icon-label {
    font-size: 0.6875rem;
  }
  .hero-bottom-fade {
    height: 80px;
  }

  /* Live Stats */
  .live-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  .live-stat-card {
    padding: 1.25rem 0.875rem;
  }
  .live-stat-num {
    font-size: 1.75rem;
  }
  .live-stat-label {
    font-size: 0.8125rem;
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .service-card {
    padding: 1.5rem 1.25rem;
  }
  .service-icon {
    width: 2.75rem;
    height: 2.75rem;
    margin-bottom: 1rem;
  }

  /* Offer Section */
  .offer-wrap {
    padding: 2.25rem 1.25rem;
    border-radius: 1.25rem;
  }
  .offer-pct {
    font-size: clamp(2.5rem, 12vw, 4rem);
    margin-bottom: 0.5rem;
  }
  .offer-title {
    font-size: clamp(1.25rem, 5vw, 1.625rem);
  }
  .offer-desc {
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
  }
  .countdown-row {
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
  }
  .countdown-block {
    min-width: 2.75rem;
    height: 2.75rem;
    font-size: 1.375rem;
  }
  .offer-orb-l,
  .offer-orb-r {
    display: none;
  }

  /* Calculator */
  .calc-wrap {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .calc-card {
    padding: 1.5rem 1.25rem;
  }
  .calc-result-num {
    font-size: 2.5rem;
  }

  /* Steps */
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.875rem;
  }
  .step-content {
    padding: 1rem 0.875rem;
  }
  .step-title {
    font-size: 0.875rem;
  }

  /* Features */
  .features-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .feature-card {
    padding: 1.25rem;
    gap: 1rem;
  }
  .feature-icon {
    width: 2.5rem;
    height: 2.5rem;
    flex-shrink: 0;
  }

  /* Order Form */
  .order-card {
    padding: 1.5rem 1.125rem;
  }
  .order-step-title {
    font-size: 1.25rem;
  }
  .step-indicator {
    gap: 0;
    margin-bottom: 2rem;
  }
  .step-dot {
    width: 2rem;
    height: 2rem;
    min-width: 2rem;
    font-size: 0.8125rem;
  }
  .step-dot-label {
    font-size: 0.6875rem;
  }
  .step-line {
    max-width: 48px;
    margin: 0 0.375rem;
    margin-bottom: 1.25rem;
  }
  .service-btn {
    font-size: 0.8125rem;
    padding: 0.5rem 0.875rem;
    min-height: 44px;
  }

  /* Price Preview */
  .price-preview {
    padding: 0.875rem 1rem;
    flex-direction: column;
    gap: 0.375rem;
    align-items: stretch;
  }
  #preview-final {
    font-size: 1.625rem !important;
  }

  /* Instagram Mock */
  .ig-mock {
    margin-bottom: 1.25rem;
  }
  .ig-header {
    gap: 0.75rem;
    padding: 1rem 1rem 0.625rem;
  }

  /* Order Summary */
  .order-summary {
    padding: 1.125rem;
    margin-bottom: 1.25rem;
  }
  .summary-value {
    max-width: 160px;
    font-size: 0.8125rem;
  }

  /* Step button row */
  .step-btn-row {
    flex-direction: row;
    gap: 0.625rem;
  }
  .btn-back {
    padding: 0.875rem 1rem;
    font-size: 0.8125rem;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .btn-primary.flex-1, .step-btn-row .btn-primary {
    flex: 1;
    min-width: 0;
  }

  /* Payment */
  .payment-amount {
    padding: 1.25rem 1rem;
  }
  .payment-amount-value {
    font-size: 2.25rem;
  }
  .trust-badges-row {
    gap: 0.625rem;
  }
  .trust-badge {
    font-size: 0.75rem;
  }
  .payment-card {
    padding: 1.25rem 1rem;
  }
  .qr-placeholder {
    width: 140px;
    height: 140px;
  }
  .pay-steps-box {
    padding: 1rem;
    margin-bottom: 1.25rem;
  }

  /* WhatsApp Button */
  .wa-big-btn {
    font-size: 0.9375rem;
    padding: 1rem 1.5rem;
    min-height: 56px;
  }

  /* Testimonials */
  .testimonials-track {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .testimonial-card {
    padding: 1.375rem 1.25rem;
  }

  /* FAQ */
  .faq-q {
    padding: 1rem 1.125rem;
  }
  .faq-q-text {
    font-size: 0.875rem;
  }
  .faq-a-inner {
    padding: 0.25rem 1.125rem 1rem;
    font-size: 0.8375rem;
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
    gap: 0.75rem;
  }
  .contact-card {
    padding: 1.5rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
  }
  .contact-icon {
    margin: 0;
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  .footer-desc {
    max-width: 100%;
  }
  footer {
    padding: 2.5rem 0 1.5rem;
  }

  /* Success step */
  .success-icon {
    width: 4rem;
    height: 4rem;
  }
  .success-title {
    font-size: 1.375rem;
  }
  .order-id-display {
    font-size: 0.875rem;
    padding: 0.625rem 1.125rem;
    word-break: break-all;
  }

  /* Track order form */
  #track-order-form {
    padding: 1.5rem 1.125rem !important;
  }

  /* Modal */
  .modal-overlay {
    padding: 0.75rem;
    align-items: flex-end;
  }
  .modal-box {
    border-radius: 1.5rem 1.5rem 0.75rem 0.75rem;
    max-height: 92vh;
    width: 100%;
    padding: 1.5rem 1.25rem;
  }
  .terms-list {
    margin-bottom: 1rem;
  }
  .terms-item {
    padding: 0.625rem 0;
  }

  /* Offer popup */
  .offer-popup-box {
    padding: 2rem 1.25rem;
    border-radius: 1.25rem;
  }
  .offer-popup-pct {
    font-size: 2.75rem;
  }

  /* Announcement bar */
  #announcement-bar {
    font-size: 0.75rem;
    padding: 0.5rem 2.5rem 0.5rem 0.75rem;
    text-align: left;
    justify-content: flex-start;
    gap: 0.5rem;
    flex-wrap: wrap;
  }
  .ann-link-btn {
    font-size: 0.6875rem;
    padding: 0.175rem 0.625rem;
  }

  /* Sound settings panel */
  .sound-settings-panel {
    bottom: 4.5rem;
    right: 0.75rem;
    min-width: 200px;
  }

  /* Scroll progress bar */
  #scroll-progress {
    height: 2px;
  }

  /* Toast */
  #toast-container {
    bottom: 1rem !important;
    left: 0.75rem !important;
    right: 0.75rem !important;
    max-width: 100%;
  }

  /* Earn page */
  .earn-hero {
    padding: 5.5rem 0 2rem;
  }
  .earn-wallet {
    padding: 1.25rem;
  }
  .earn-wallet-balance {
    font-size: 2.5rem;
  }

  /* UPI row — prevent overflow */
  .upi-row {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
  }
  .upi-id {
    font-size: 0.875rem;
    word-break: break-all;
  }

  /* Notice boxes */
  .notice-box {
    padding: 0.875rem 1rem;
    gap: 0.625rem;
  }

  /* Min order warning */
  .min-order-warning {
    font-size: 0.75rem;
    flex-wrap: wrap;
  }
}

/* ═══════════════════════════════════════════════════════════
   SMALL MOBILE  (≤480px)
═══════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .container {
    padding: 0 0.75rem;
  }

  .hero-title {
    font-size: clamp(2rem, 9.5vw, 2.75rem);
  }

  /* Live Stats → 2-col always */
  .live-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.625rem;
  }
  .live-stat-num {
    font-size: 1.625rem;
  }
  .live-stat-badge {
    font-size: 0.625rem;
  }

  /* Steps → 2-col */
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  /* Offer */
  .offer-wrap {
    padding: 2rem 1rem;
  }
  .countdown-block {
    min-width: 2.5rem;
    height: 2.5rem;
    font-size: 1.25rem;
  }

  /* Order form */
  .order-card {
    padding: 1.25rem 1rem;
  }
  .order-step-title {
    font-size: 1.125rem;
  }
  .step-dot {
    width: 1.875rem;
    height: 1.875rem;
    min-width: 1.875rem;
    font-size: 0.75rem;
  }
  .step-dot-label {
    font-size: 0.625rem;
  }
  .step-line {
    max-width: 36px;
    margin: 0 0.25rem;
    margin-bottom: 1.125rem;
  }

  /* Payment amount big number */
  .payment-amount-value {
    font-size: 2rem;
  }

  /* Summary value — prevent overflow */
  .summary-value {
    max-width: 140px;
    font-size: 0.8125rem;
    word-break: break-word;
  }

  /* Track order form input row */
  #track-order-form .flex {
    flex-direction: column;
    gap: 0.75rem;
  }
  #track-order-form input {
    width: 100%;
  }
  #track-order-form button {
    width: 100%;
  }

  /* Hero icons — 5 items in a row compactly */
  .hero-icons {
    gap: 0.625rem;
  }
  .hero-icon-box {
    width: 2.5rem;
    height: 2.5rem;
  }
  .hero-icon-box svg {
    width: 16px;
    height: 16px;
  }

  /* Testimonials */
  .testimonials-track {
    grid-template-columns: 1fr;
  }

  /* Footer badges row wrapping */
  .footer-badges {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
}

/* ═══════════════════════════════════════════════════════════
   TINY MOBILE  (≤360px)
═══════════════════════════════════════════════════════════ */
@media (max-width: 360px) {
  html {
    font-size: 14px;
  }
  .container {
    padding: 0 0.625rem;
  }
  .hero-title {
    font-size: 2rem;
  }
  .nav-inner {
    padding: 0 0.625rem;
  }
  .earn-pill {
    display: none;
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .live-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .order-card {
    padding: 1rem 0.875rem;
  }
  .step-dot-label {
    display: none;
  }
  .step-line {
    max-width: 28px;
  }
}

/* ═══════════════════════════════════════════════════════════
   TRACK ORDER PAGE — responsive
═══════════════════════════════════════════════════════════ */
@media (max-width: 640px) {
  .track-box {
    padding: 1.75rem 1.25rem;
    border-radius: 1.25rem;
  }
  .track-result-card {
    padding: 1.125rem;
  }
}
@media (max-width: 480px) {
  .track-box {
    padding: 1.5rem 1rem;
  }
}

/* ═══════════════════════════════════════════════════════════
   FREE / EARN PAGE — responsive
═══════════════════════════════════════════════════════════ */
@media (max-width: 640px) {
  .task-card {
    padding: 1rem 1.125rem;
    gap: 0.875rem;
  }
  .task-card-title {
    font-size: 0.875rem;
  }
  .offerwall-grid {
    grid-template-columns: 1fr;
  }
  .promo-box-row {
    flex-direction: column;
  }
}

/* ═══════════════════════════════════════════════════════════
   PERFORMANCE — reduce motion for users who prefer it
═══════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero-orb-1, .hero-orb-2, .hero-orb-3 {
    animation: none;
  }
}

/* ═══════════════════════════════════════════════════════════
   HOVER — only on non-touch devices
═══════════════════════════════════════════════════════════ */
@media (hover: none) {
  .glass-card:hover,
  .service-card:hover,
  .feature-card:hover,
  .contact-card:hover,
  .testimonial-card:hover,
  .live-stat-card:hover,
  .task-card:hover,
  .offerwall-card:hover {
    transform: none !important;
  }
  .btn-primary:hover,
  .btn-hero-outline:hover,
  .wa-big-btn:hover {
    transform: none !important;
  }
}

/* ═══════════════════════════════════════════════════════════
   ADMIN PAGE — responsive (basic)
═══════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .admin-sidebar {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 9999;
    width: 280px;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }
  .admin-sidebar.open {
    display: flex;
    transform: translateX(0);
  }
  .admin-content {
    margin-left: 0 !important;
    padding: 1rem !important;
  }
}
