/* ===========================
   PROMOS DO AURI — style.css
   Design System Completo
=========================== */

:root {
  --purple-deep: #1a0533;
  --purple-main: #6c10c4;
  --purple-mid:  #8b2cf5;
  --purple-light: #c084fc;
  --purple-glow: rgba(140, 40, 255, 0.35);
  --pink:        #f000b8;
  --cyan:        #00e5ff;
  --yellow:      #ffe600;
  --bg:          #0d0120;
  --bg-card:     #1a0a2e;
  --bg-light:    #f5f0ff;
  --white:       #ffffff;
  --text-muted:  #c4aee0;
  --radius:      16px;
  --radius-sm:   10px;
  --shadow-purple: 0 8px 40px rgba(140, 40, 255, 0.25);
}

/* ---- RESET ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Syne', sans-serif; }

.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

/* ---- HEADER ---- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 1, 32, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(140, 40, 255, 0.15);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--white);
}
.logo-icon { font-size: 2rem; line-height: 1; }
.logo-text {
  font-family: 'Syne', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.logo-text em {
  font-style: normal;
  color: var(--purple-light);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 28px;
}
.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a.active {
  color: var(--purple-light);
  font-weight: 700;
}

.btn-nav {
  background: linear-gradient(135deg, var(--purple-mid), var(--pink));
  color: var(--white);
  padding: 10px 22px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  white-space: nowrap;
  transition: box-shadow 0.2s, transform 0.2s;
  box-shadow: 0 4px 20px rgba(240, 0, 184, 0.3);
}
.btn-nav:hover { box-shadow: 0 6px 28px rgba(240, 0, 184, 0.5); transform: translateY(-1px); }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 12px;
  padding: 20px 24px;
  background: rgba(13, 1, 32, 0.98);
  border-top: 1px solid rgba(140, 40, 255, 0.1);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 1rem;
  font-weight: 500;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.mobile-menu a.btn-nav {
  text-align: center;
  margin-top: 8px;
  border: none;
  color: white;
}

/* ---- BLOBS ---- */
.hero-bg-blobs { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
}
.blob1 { width: 500px; height: 500px; background: var(--purple-main); top: -100px; right: -80px; animation: blobFloat 8s ease-in-out infinite; }
.blob2 { width: 350px; height: 350px; background: var(--pink); bottom: -60px; left: -60px; animation: blobFloat 10s ease-in-out infinite reverse; }
.blob3 { width: 280px; height: 280px; background: var(--cyan); top: 40%; left: 30%; animation: blobFloat 12s ease-in-out infinite; opacity: 0.2; }

@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(20px, -20px) scale(1.05); }
  66%       { transform: translate(-15px, 15px) scale(0.95); }
}

/* ---- HERO ---- */
.hero {
  position: relative;
  padding: 100px 0 0;
  min-height: 600px;
  overflow: hidden;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 60px;
  padding-bottom: 80px;
}

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  backdrop-filter: blur(8px);
}

.hero-text { flex: 1; min-width: 0; }

.hero-text h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.05;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.h1-purple {
  background: linear-gradient(90deg, var(--purple-light), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 460px;
}

.hero-cta { margin-bottom: 40px; }

.btn-main {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--purple-mid) 0%, var(--pink) 100%);
  color: var(--white);
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  box-shadow: 0 8px 32px rgba(240, 0, 184, 0.35);
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.btn-main:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(240, 0, 184, 0.5); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 2px solid var(--purple-mid);
  color: var(--purple-light);
  padding: 10px 22px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.btn-outline:hover { background: var(--purple-mid); color: white; }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}
.stat { text-align: center; }
.stat strong { display: block; font-family: 'Syne', sans-serif; font-size: 1.6rem; color: var(--white); }
.stat span { font-size: 0.78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.12); }

/* Hero visual / phone notifications */
.hero-visual { flex-shrink: 0; width: 360px; }

.hero-phone-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(140,40,255,0.2);
}

.phone-notif {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  animation: slideIn 0.5s ease forwards;
  opacity: 0;
}
.phone-notif:nth-child(1) { animation-delay: 0.1s; }
.phone-notif:nth-child(2) { animation-delay: 0.4s; }
.phone-notif:nth-child(3) { animation-delay: 0.7s; }
.phone-notif:nth-child(4) { animation-delay: 1.0s; }

@keyframes slideIn {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}

.phone-notif > span:first-child { font-size: 1.4rem; flex-shrink: 0; }
.phone-notif div { flex: 1; }
.phone-notif div strong { display: block; font-size: 0.82rem; font-weight: 700; color: white; }
.phone-notif div p { font-size: 0.75rem; color: var(--text-muted); }
.notif-time { font-size: 0.7rem; color: var(--purple-light); white-space: nowrap; }

.hero-platforms {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.08);
}
.hero-platforms span { font-size: 0.75rem; color: var(--text-muted); }
.hero-platforms img { filter: brightness(0) invert(1); opacity: 0.8; }

/* Wave */
.hero-wave { line-height: 0; margin-top: 40px; }
.hero-wave svg { display: block; width: 100%; }

/* ---- FEATURES STRIP ---- */
.features-strip {
  background: var(--bg-light);
  padding: 48px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: white;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 4px 20px rgba(108, 16, 196, 0.08);
  border: 1px solid rgba(108, 16, 196, 0.1);
}

.feat-icon {
  font-size: 2rem;
  line-height: 1;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #ede0ff, #f9d9ff);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-card h3 {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--purple-deep);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.feature-card p {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.5;
}

/* ---- CATEGORIES ---- */
.categories { padding: 80px 0; }

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 8px;
  color: var(--white);
}
.section-sub { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 40px; }

.cat-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 16px;
}

.cat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 20px 10px;
  text-decoration: none;
  color: var(--text-muted);
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
  cursor: pointer;
}
.cat-card:hover { background: rgba(140,40,255,0.15); border-color: var(--purple-mid); color: white; transform: translateY(-3px); }
.cat-card span { font-size: 1.8rem; }
.cat-card p { font-size: 0.75rem; font-weight: 700; text-align: center; letter-spacing: 0.03em; text-transform: uppercase; }

/* ---- LATEST OFFERS ---- */
.latest-offers { padding: 0 0 100px; }

.section-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
  gap: 16px;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.offer-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}
.offer-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(140,40,255,0.25); }

.highlight-card {
  border-color: var(--purple-mid);
  box-shadow: 0 0 0 1px var(--purple-mid), 0 8px 30px rgba(140,40,255,0.2);
}

.bug-card {
  border-color: #ff4444;
  box-shadow: 0 0 0 1px #ff4444, 0 8px 30px rgba(255,68,68,0.15);
}

.offer-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: linear-gradient(135deg, var(--purple-mid), var(--pink));
  color: white;
  font-family: 'Syne', sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 50px;
  z-index: 1;
}
.bug-badge { background: linear-gradient(135deg, #ff4444, #ff8800); }

.offer-img {
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.offer-info { padding: 16px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.offer-store { font-size: 0.75rem; color: var(--text-muted); font-weight: 600; }
.offer-info h4 { font-size: 0.9rem; font-family: 'Syne', sans-serif; font-weight: 700; line-height: 1.3; }

.offer-prices { display: flex; align-items: center; gap: 8px; margin-top: 4px; }
.old-price { font-size: 0.78rem; color: var(--text-muted); text-decoration: line-through; }
.new-price { font-family: 'Syne', sans-serif; font-size: 1.2rem; font-weight: 800; color: var(--yellow); }

.btn-offer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(140,40,255,0.15);
  color: var(--purple-light);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.82rem;
  margin-top: auto;
  transition: background 0.2s, color 0.2s;
}
.btn-offer:hover { background: var(--purple-mid); color: white; }
.btn-offer span { font-size: 1rem; }

/* ---- CTA BANNER ---- */
.cta-banner {
  background: linear-gradient(135deg, #1a0035, #2d0060);
  padding: 80px 0;
  margin: 0 0 80px;
  overflow: hidden;
}

.cta-inner {
  position: relative;
  text-align: center;
  z-index: 2;
}
.cta-blobs { position: absolute; inset: -100px; pointer-events: none; }
.cta-inner h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 12px; }
.cta-inner p { color: var(--text-muted); font-size: 1.05rem; margin-bottom: 36px; }

/* ---- TESTIMONIALS ---- */
.testimonials { padding: 0 0 100px; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.test-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.test-stars { font-size: 1rem; }
.test-card > p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; flex: 1; }
.test-author { display: flex; align-items: center; gap: 12px; }
.test-avatar {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--purple-mid), var(--pink));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.test-author strong { display: block; font-size: 0.9rem; }
.test-author span { font-size: 0.78rem; color: var(--text-muted); }

/* ---- FOOTER ---- */
.footer {
  background: #070012;
  border-top: 1px solid rgba(140,40,255,0.15);
  padding: 64px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-col > p { font-size: 0.85rem; color: var(--text-muted); margin-top: 16px; line-height: 1.7; max-width: 260px; }
.footer-col h4 { font-family: 'Syne', sans-serif; font-size: 0.9rem; font-weight: 800; margin-bottom: 16px; color: var(--purple-light); letter-spacing: 0.05em; text-transform: uppercase; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { text-decoration: none; color: var(--text-muted); font-size: 0.875rem; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--white); }

.footer-socials { display: flex; gap: 12px; margin-top: 20px; }
.footer-socials a {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.2s, border-color 0.2s;
}
.footer-socials a:hover { background: var(--purple-mid); border-color: var(--purple-mid); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 24px;
  text-align: center;
}
.footer-bottom p { font-size: 0.8rem; color: var(--text-muted); }

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  position: relative;
  padding: 80px 0 60px;
  text-align: center;
  overflow: hidden;
}
.page-hero-inner { position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 14px; }
.page-hero p { color: var(--text-muted); font-size: 1.05rem; max-width: 500px; margin: 0 auto; }

/* ---- OFFERS PAGE ---- */
.offers-page { padding: 48px 0 100px; }

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}
.filter-btn {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text-muted);
  padding: 8px 18px;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: 0.2s;
}
.filter-btn:hover { background: rgba(140,40,255,0.15); color: white; border-color: var(--purple-mid); }
.filter-btn.active { background: var(--purple-mid); border-color: var(--purple-mid); color: white; }
.bug-btn.active { background: #ff4444; border-color: #ff4444; }

.offers-full-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.empty-state {
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 80px 0;
  text-align: center;
  grid-column: 1/-1;
}
.empty-state span { font-size: 3rem; }
.empty-state p { color: var(--text-muted); max-width: 400px; font-size: 1rem; }

/* ---- HOW IT WORKS PAGE ---- */
.steps-section { padding: 64px 0 100px; }

.steps-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 720px;
  margin: 0 auto;
}

.step-item {
  display: flex;
  gap: 24px;
  position: relative;
}

.step-number {
  font-family: 'Syne', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--purple-light);
  background: rgba(140,40,255,0.15);
  border: 2px solid var(--purple-mid);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.step-connector {
  position: absolute;
  left: 21px;
  top: 44px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--purple-mid), transparent);
}

.step-content {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-bottom: 24px;
  flex: 1;
}

.step-emoji { font-size: 2rem; margin-bottom: 10px; }
.step-content h3 { font-size: 1.15rem; margin-bottom: 8px; }
.step-content p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; }
.step-content p strong { color: var(--purple-light); }

.step-item.last .step-content {
  border-color: var(--purple-mid);
  box-shadow: 0 0 0 1px rgba(140,40,255,0.2), 0 8px 30px rgba(140,40,255,0.15);
}

/* ---- FAQ ---- */
.faq-section {
  background: var(--bg-card);
  padding: 80px 0;
  margin-bottom: 80px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.faq-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s;
}
.faq-item:hover, .faq-item.open { border-color: var(--purple-mid); }

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  gap: 16px;
}
.faq-q span:first-child { font-weight: 700; font-size: 0.95rem; }
.faq-icon {
  font-size: 1.4rem;
  color: var(--purple-light);
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s;
}
.faq-item.open .faq-a { max-height: 200px; }
.faq-a p {
  padding: 0 24px 20px;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ---- BENEFITS ---- */
.what-you-get { padding: 0 0 100px; }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.benefit-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.2s, transform 0.2s;
}
.benefit-card:hover { border-color: var(--purple-mid); transform: translateY(-3px); }

.ben-icon {
  font-size: 2rem;
  width: 56px; height: 56px;
  background: rgba(140,40,255,0.12);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.benefit-card h3 { font-size: 1rem; margin-bottom: 8px; }
.benefit-card p { font-size: 0.87rem; color: var(--text-muted); line-height: 1.6; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .cat-grid { grid-template-columns: repeat(4, 1fr); }
  .offers-grid, .offers-full-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .btn-nav { display: none; }
  .menu-toggle { display: block; }
  .hero-inner { flex-direction: column; gap: 40px; padding-bottom: 40px; }
  .hero-visual { width: 100%; }
  .features-grid { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: repeat(4, 1fr); }
  .offers-grid, .offers-full-grid { grid-template-columns: repeat(2, 1fr); }
  .section-header-row { flex-direction: column; align-items: flex-start; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .faq-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .cat-grid { grid-template-columns: repeat(4, 1fr); }
  .offers-grid, .offers-full-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; justify-content: center; }
  .benefits-grid { grid-template-columns: 1fr; }
  .filter-bar { gap: 8px; }
}
