/* ============================================================
   POINTS MISTERIOSOS — Landing Page Valorant — style.css
   Dark Gamer Theme | AIDA Structure
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:        #ff4655;
  --red-dark:   #cc2233;
  --green:      #00ff88;
  --green-dark: #00cc6a;
  --gold:       #ffd700;
  --bg-deep:    #0a0a0f;
  --bg-dark:    #0f0f18;
  --bg-medium:  #16161f;
  --bg-card:    #1c1c28;
  --bg-card2:   #20202e;
  --border:     rgba(255,255,255,0.07);
  --text:       #ffffff;
  --text-muted: rgba(255,255,255,0.6);
  --text-dim:   rgba(255,255,255,0.35);
  --font-body:  'Inter', sans-serif;
  --font-head:  'Teko', sans-serif;
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: var(--font-body);
  background: var(--bg-deep);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ──────────────────────────────────────────
   NAVBAR
────────────────────────────────────────── */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10,10,15,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.navbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1200px; margin: 0 auto;
  padding: 0.875rem 1.5rem;
}
.logo-link { display: flex; align-items: center; gap: 0.625rem; text-decoration: none; }
.logo-icon  { width: 32px; height: 32px; object-fit: contain; border-radius: 8px; }
.logo-text  { font-size: 1.125rem; font-weight: 800; color: var(--text); letter-spacing: -0.02em; }

.hamburger { display: flex; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; }

.nav-desktop { display: none; align-items: center; gap: 2rem; }
.nav-links   { display: flex; align-items: center; gap: 1.75rem; }
.nav-links a { color: var(--text-muted); font-size: .875rem; font-weight: 500; text-decoration: none; transition: color .2s; }
.nav-links a:hover { color: var(--text); }
.nav-actions { display: flex; align-items: center; gap: .75rem; }

.btn-nav-primary {
  background: var(--red); color: #fff;
  padding: .5rem 1.25rem; border-radius: 10px;
  font-size: .875rem; font-weight: 700;
  text-decoration: none; white-space: nowrap;
  box-shadow: 0 4px 16px rgba(255,70,85,.3);
  transition: background .2s, transform .15s;
}
.btn-nav-primary:hover { background: var(--red-dark); transform: translateY(-1px); }

/* Mobile Menu */
.mobile-menu {
  display: none; position: fixed; inset: 0;
  background: var(--bg-dark); z-index: 200;
  flex-direction: column; padding: 1.5rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2rem; }
.close-btn { background: var(--bg-card); border: none; border-radius: 50%; width: 36px; height: 36px; cursor: pointer; font-size: 1rem; color: var(--text-muted); display: flex; align-items: center; justify-content: center; }
.mobile-nav-links { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.mobile-nav-links a { color: var(--text); font-size: 1.125rem; font-weight: 600; text-decoration: none; padding: .75rem 0; border-bottom: 1px solid var(--border); }
.mobile-nav-actions { display: flex; flex-direction: column; gap: .75rem; margin-top: auto; }
.btn-mobile-primary { background: var(--red); color: #fff; text-align: center; padding: 1rem; border-radius: 14px; font-weight: 700; text-decoration: none; font-size: 1rem; }

/* ──────────────────────────────────────────
   HERO
────────────────────────────────────────── */
.hero-section {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #0a0a0f 0%, #120a14 40%, #0a0a1a 100%);
  padding: 5rem 1.5rem 4rem;
  display: flex; flex-direction: column; align-items: center;
  min-height: 80vh; justify-content: center;
}
.hero-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(255,70,85,0.12) 0%, transparent 65%);
  pointer-events: none;
}

/* Floating particles */
.hero-particles { position: absolute; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.particle {
  position: absolute; line-height: 1;
  animation: floatParticle 8s ease-in-out infinite;
  opacity: 0.4;
}
@keyframes floatParticle {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.4; }
  50% { transform: translateY(-18px) rotate(8deg); opacity: 0.7; }
}

.hero-inner {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; max-width: 760px; width: 100%;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,70,85,0.12); color: var(--red);
  font-size: .6875rem; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase;
  padding: .375rem 1rem; border-radius: 100px;
  border: 1px solid rgba(255,70,85,0.25);
  margin-bottom: 1.5rem;
}
.badge-dot { width: 7px; height: 7px; background: var(--red); border-radius: 50%; animation: pulse-dot 2s infinite; }
@keyframes pulse-dot { 0%,100%{transform:scale(1);opacity:1} 50%{transform:scale(1.4);opacity:.7} }

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -.02em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.title-highlight { color: var(--red); }
.title-sub { font-family: var(--font-body); font-size: clamp(1rem, 2.5vw, 1.5rem); font-weight: 400; color: var(--text-muted); text-transform: none; letter-spacing: 0; }

.hero-subtitle {
  font-size: 1.0625rem; color: var(--text-muted);
  line-height: 1.7; margin-bottom: 1.5rem; max-width: 580px;
}
.hero-subtitle strong { color: var(--green); }

.hero-proof { display: flex; align-items: center; gap: .5rem; margin-bottom: 2rem; justify-content: center; flex-wrap: wrap; }
.proof-stars { color: #ffd700; font-size: 1rem; letter-spacing: .1em; }
.proof-text  { font-size: .875rem; font-weight: 600; color: var(--text-muted); }

.hero-cta-group { display: flex; flex-direction: column; align-items: center; gap: .875rem; margin-bottom: 1rem; }

.btn-hero-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: .625rem;
  background: var(--red); color: #fff;
  padding: 1.1rem 2.25rem; border-radius: 16px;
  font-weight: 800; font-size: 1.125rem;
  border: none; cursor: pointer;
  box-shadow: 0 8px 32px rgba(255,70,85,.4), 0 0 0 0 rgba(255,70,85,.3);
  transition: all .25s;
  text-decoration: none;
  animation: heroPulse 3s ease-in-out infinite;
}
@keyframes heroPulse {
  0%,100% { box-shadow: 0 8px 32px rgba(255,70,85,.4); }
  50%      { box-shadow: 0 8px 48px rgba(255,70,85,.65), 0 0 0 8px rgba(255,70,85,.08); }
}
.btn-hero-primary:hover { background: var(--red-dark); transform: translateY(-2px); }

.btn-hero-ghost { color: var(--text-muted); font-size: .9375rem; font-weight: 600; text-decoration: none; transition: color .2s; }
.btn-hero-ghost:hover { color: var(--text); }

.hero-disclaimer { font-size: .8125rem; color: var(--text-dim); font-weight: 500; }

/* ──────────────────────────────────────────
   SECTION HELPERS
────────────────────────────────────────── */
.section-inner { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; text-align: center; }
.section-label {
  display: inline-block; font-size: .75rem; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--red); background: rgba(255,70,85,0.1);
  padding: .375rem 1rem; border-radius: 100px;
  border: 1px solid rgba(255,70,85,0.2);
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 5vw, 3rem); font-weight: 700;
  color: var(--text); letter-spacing: -.02em; line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-desc { font-size: 1.0625rem; color: var(--text-muted); max-width: 520px; margin: 0 auto 3rem; line-height: 1.7; }

/* ──────────────────────────────────────────
   PAIN
────────────────────────────────────────── */
.pain-section { background: rgba(255,70,85,0.05); border-top: 1px solid rgba(255,70,85,0.15); border-bottom: 1px solid rgba(255,70,85,0.15); padding: 5rem 1.5rem; }
.pain-label { font-size: .75rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; color: var(--red); text-align: center; margin-bottom: 1rem; }
.pain-title { font-family: var(--font-head); font-size: clamp(1.75rem,5vw,2.75rem); font-weight: 700; color: var(--text); letter-spacing: -.02em; line-height: 1.1; text-align: center; text-transform: uppercase; margin-bottom: 1rem; }
.pain-desc  { text-align: center; color: var(--text-muted); font-size: 1rem; max-width: 520px; margin: 0 auto 2.5rem; line-height: 1.7; }
.pain-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; max-width: 560px; margin: 0 auto 2rem; }
.pain-card  { background: var(--bg-card); border-radius: 16px; padding: 1.25rem; text-align: center; border: 1px solid var(--border); }
.pain-emoji { font-size: 1.75rem; display: block; margin-bottom: .5rem; }
.pain-card-text { font-size: .875rem; font-weight: 600; color: var(--text-muted); }
.pain-bridge { text-align: center; background: var(--bg-card); border-radius: 16px; padding: 1.25rem 2rem; max-width: 480px; margin: 0 auto; border: 1px solid rgba(0,255,136,.2); box-shadow: 0 0 24px rgba(0,255,136,0.06); }
.pain-bridge p { font-size: 1.0625rem; font-weight: 700; color: var(--text); }
.pain-bridge strong { color: var(--green); }

/* ──────────────────────────────────────────
   HOW IT WORKS
────────────────────────────────────────── */
.how-section { background: var(--bg-dark); padding: 5rem 1.5rem; }
.steps-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; max-width: 960px; margin: 0 auto; }
.step-card {
  background: var(--bg-card); border-radius: 20px; padding: 2rem;
  text-align: left; border: 1px solid var(--border);
  position: relative; overflow: hidden;
  transition: transform .25s, border-color .25s, box-shadow .25s;
}
.step-card:hover { transform: translateY(-4px); border-color: rgba(255,70,85,0.3); box-shadow: 0 12px 40px rgba(255,70,85,0.08); }
.step-number { font-family: var(--font-head); font-size: 4rem; font-weight: 700; color: var(--red); opacity: .08; position: absolute; top: 0.5rem; right: 1.25rem; line-height: 1; }
.step-icon  { font-size: 2rem; margin-bottom: .75rem; }
.step-title { font-size: 1.125rem; font-weight: 700; color: var(--text); margin-bottom: .625rem; }
.step-desc  { font-size: .9375rem; color: var(--text-muted); line-height: 1.65; }

/* ──────────────────────────────────────────
   GUARANTEE
────────────────────────────────────────── */
.guarantee-section { background: var(--bg-medium); padding: 5rem 1.5rem; text-align: center; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.guarantee-icon  { font-size: 3rem; margin-bottom: 1.25rem; }
.guarantee-title { font-family: var(--font-head); font-size: clamp(1.75rem,5vw,3rem); font-weight: 700; color: var(--text); letter-spacing: -.02em; line-height: 1.1; text-transform: uppercase; margin-bottom: 1rem; }
.guarantee-desc  { font-size: 1rem; color: var(--text-muted); max-width: 520px; margin: 0 auto 2.5rem; line-height: 1.7; font-weight: 500; }
.guarantee-cards { display: grid; grid-template-columns: 1fr; gap: 1rem; max-width: 720px; margin: 0 auto; }
.guarantee-card  { background: var(--bg-card); border-radius: 16px; padding: 1.5rem; border: 1px solid var(--border); text-align: center; transition: border-color .2s; }
.guarantee-card:hover { border-color: rgba(255,70,85,0.2); }
.guarantee-card span { font-size: 2rem; display: block; margin-bottom: .625rem; }
.g-card-title { font-size: .9375rem; font-weight: 700; color: var(--text); margin-bottom: .25rem; }
.g-card-desc  { font-size: .8125rem; color: var(--text-muted); line-height: 1.6; }

/* ──────────────────────────────────────────
   TESTIMONIALS
────────────────────────────────────────── */
.testimonials-section { background: var(--bg-dark); padding: 5rem 1.5rem; }
.stars-row  { color: #ffd700; font-size: 1.5rem; letter-spacing: .15em; text-align: center; margin-bottom: .5rem; }
.stars-label{ text-align: center; font-weight: 700; color: var(--text); font-size: 1rem; margin-bottom: 2.5rem; }
.testimonials-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; max-width: 1100px; margin: 0 auto; }
.testimonial-card { background: var(--bg-card); border-radius: 20px; overflow: hidden; border: 1px solid var(--border); transition: transform .25s, box-shadow .25s; }
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,.3); }
.testimonial-img { width: 100%; display: block; object-fit: cover; }

/* ──────────────────────────────────────────
   URGENCY
────────────────────────────────────────── */
.urgency-section { background: rgba(255,70,85,0.08); border-top: 1px solid rgba(255,70,85,0.2); border-bottom: 1px solid rgba(255,70,85,0.2); padding: 3.5rem 1.5rem; }
.urgency-label { font-size: .75rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; color: var(--red); text-align: center; margin-bottom: .875rem; }
.urgency-title { font-family: var(--font-head); font-size: clamp(1.25rem,4vw,2rem); font-weight: 700; color: var(--text); text-align: center; text-transform: uppercase; margin-bottom: .75rem; line-height: 1.2; }
.urgency-sub   { font-size: 1rem; color: var(--text-muted); text-align: center; font-weight: 500; }

/* ──────────────────────────────────────────
   OFFER SECTION
────────────────────────────────────────── */
.offer-section { background: var(--bg-deep); padding: 5rem 1.5rem; border-top: 1px solid var(--border); }
.offer-inner   { max-width: 1100px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; text-align: center; }

.offer-reconnect {
  background: var(--bg-card); border-radius: 16px; padding: 1.25rem 1.5rem;
  border: 1px solid var(--border); margin-bottom: 2rem;
  font-size: 1rem; color: var(--text-muted); line-height: 1.7; font-weight: 500;
  max-width: 680px;
}

.offer-title { font-family: var(--font-head); font-size: clamp(1.75rem,5vw,3rem); font-weight: 700; color: var(--text); letter-spacing: -.02em; text-transform: uppercase; margin-bottom: .5rem; }
.offer-subtitle { font-size: .9375rem; color: var(--text-muted); font-weight: 400; margin-bottom: 2.5rem; }

/* 3-column grid for offers */
.offers-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  width: 100%;
  max-width: 1060px;
  margin: 0 auto;
  align-items: stretch;
}

/* ── Base offer card ── */
.offer-card {
  background: var(--bg-card);
  border-radius: 24px;
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  position: relative;
}
.offer-card:hover { transform: translateY(-6px); }

/* Card image — fixed height container, image scales inside without cropping */
.offer-card-img-wrap {
  width: 100%;
  background: var(--bg-card2);
  overflow: hidden;
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
}
.offer-card-img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  margin: 0 auto;
}

/* Card body */
.offer-card-body { padding: 1.5rem 1.75rem 1.75rem; display: flex; flex-direction: column; flex: 1; text-align: left; }
.offer-card-name { font-family: var(--font-head); font-size: 1.75rem; font-weight: 700; color: var(--text); text-transform: uppercase; margin-bottom: .25rem; }
.offer-card-codes { font-size: .875rem; font-weight: 700; color: var(--text-dim); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 1rem; }
.offer-price-row { display: flex; align-items: baseline; gap: .375rem; margin-bottom: 1.25rem; }
.offer-price { font-family: var(--font-head); font-size: 2.5rem; font-weight: 700; color: var(--text); line-height: 1; }
.offer-period { font-size: .9375rem; color: var(--text-muted); }
.offer-features { list-style: none; display: flex; flex-direction: column; gap: .625rem; margin-bottom: 1.5rem; flex: 1; }
.offer-features li { display: flex; align-items: flex-start; gap: .5rem; font-size: .875rem; color: var(--text-muted); line-height: 1.5; }
.feat-check { width: 16px; height: 16px; color: var(--green); flex-shrink: 0; margin-top: 1px; }

/* ── Entry card (Pobre) ── */
.offer-entry { border-color: var(--border); }
.offer-entry:hover { border-color: rgba(255,70,85,0.3); box-shadow: 0 20px 60px rgba(255,70,85,0.08); }

/* ── Popular card (Premium) ── */
.offer-popular { border: 2px solid var(--green); box-shadow: 0 0 40px rgba(0,255,136,0.08); }
.offer-popular:hover { box-shadow: 0 20px 80px rgba(0,255,136,0.18); }

/* ── Ultra card ── */
.offer-ultra { border-color: rgba(255,215,0,0.3); }
.offer-ultra:hover { border-color: var(--gold); box-shadow: 0 20px 60px rgba(255,215,0,0.1); }

/* Badges */
.badge-mais-vendido {
  position: absolute; top: 14px; right: 14px; z-index: 10;
  background: var(--green); color: #000;
  font-size: .625rem; font-weight: 900;
  padding: .3rem .75rem; border-radius: 8px;
  text-transform: uppercase; letter-spacing: .08em;
}
.badge-max-vp {
  position: absolute; top: 14px; right: 14px; z-index: 10;
  background: var(--gold); color: #000;
  font-size: .625rem; font-weight: 900;
  padding: .3rem .75rem; border-radius: 8px;
  text-transform: uppercase; letter-spacing: .08em;
}

/* CTA Buttons inside cards */
.btn-offer-entry, .btn-offer-popular, .btn-offer-ultra {
  display: flex; align-items: center; justify-content: center;
  width: 100%; padding: .9rem;
  border-radius: 12px; font-size: 1rem; font-weight: 800;
  text-decoration: none; letter-spacing: .04em;
  transition: background .2s, transform .15s;
  margin-top: auto;
}
.btn-offer-entry  { background: rgba(255,70,85,0.15); color: var(--red); border: 1.5px solid rgba(255,70,85,0.3); }
.btn-offer-entry:hover { background: var(--red); color: #fff; transform: translateY(-1px); }
.btn-offer-popular { background: var(--green); color: #000; box-shadow: 0 4px 24px rgba(0,255,136,.3); }
.btn-offer-popular:hover { background: var(--green-dark); transform: translateY(-1px); }
.btn-offer-ultra  { background: var(--gold); color: #000; box-shadow: 0 4px 24px rgba(255,215,0,.25); }
.btn-offer-ultra:hover { background: #e6c200; transform: translateY(-1px); }

.offer-secure-note { font-size: .8125rem; color: var(--text-dim); margin-top: 2rem; }

/* ──────────────────────────────────────────
   FAQ
────────────────────────────────────────── */
.faq-section { background: var(--bg-dark); padding: 5rem 1.5rem; }
.faq-list { max-width: 720px; margin: 2rem auto 0; border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question { display: flex; justify-content: space-between; align-items: center; width: 100%; padding: 1.375rem 0; background: none; border: none; cursor: pointer; text-align: left; gap: 1rem; }
.faq-question span { font-size: 1rem; font-weight: 700; color: var(--text); flex: 1; }
.faq-icon { width: 1.5rem; height: 1.5rem; color: var(--text-muted); flex-shrink: 0; transition: transform .3s; }
.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--red); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .5s ease; }
.faq-answer p { color: var(--text-muted); font-size: .9375rem; line-height: 1.7; padding-bottom: 1.375rem; }
.faq-item.open .faq-answer { max-height: 400px; }

/* ──────────────────────────────────────────
   FOOTER
────────────────────────────────────────── */
.footer { background: var(--bg-deep); color: var(--text-muted); padding: 4rem 1.5rem 2rem; border-top: 1px solid var(--border); }
.footer-top { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 2.5rem; padding-bottom: 3rem; border-bottom: 1px solid var(--border); }
.footer-brand .logo-text { color: var(--text); }
.footer-tagline { font-size: .875rem; color: var(--text-dim); margin-top: .5rem; }
.footer-links-group { display: flex; flex-direction: column; gap: .625rem; }
.footer-links-group h4 { color: var(--text); font-size: .8125rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; margin-bottom: .75rem; }
.footer-links-group a { color: var(--text-muted); font-size: .875rem; text-decoration: none; transition: color .2s; }
.footer-links-group a:hover { color: var(--text); }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding-top: 2rem; display: flex; flex-direction: column; align-items: center; gap: .5rem; text-align: center; }
.copyright    { font-size: .8125rem; color: var(--text-dim); }
.footer-secure{ font-size: .8125rem; color: var(--text-dim); }

.footer-legal-btn {
  background: none; border: none; cursor: pointer; padding: 0;
  color: var(--text-muted); font-size: .875rem;
  font-family: inherit; text-align: left;
  transition: color .2s; text-decoration: underline;
  text-decoration-color: transparent;
}
.footer-legal-btn:hover { color: var(--text); text-decoration-color: rgba(255,255,255,.3); }

/* ──────────────────────────────────────────
   RESPONSIVE
────────────────────────────────────────── */
@media (max-width: 379px) {
  .navbar-inner { padding: .75rem 1rem; }
  .hero-section { padding: 3.5rem 1rem 3rem; }
  .hero-title { font-size: 2.25rem; }
  .pain-cards { gap: .625rem; }
  .offer-card-body { padding: 1.25rem 1rem; }
}

@media (max-width: 639px) {
  .pain-cards { grid-template-columns: 1fr 1fr; max-width: 100%; }
  .section-desc { margin-bottom: 2rem; }
  .how-section, .testimonials-section, .guarantee-section,
  .offer-section, .faq-section, .urgency-section, .pain-section,
  .guarantee-section { padding-left: 1rem; padding-right: 1rem; }
  .footer-top { gap: 2rem; padding-bottom: 2.5rem; }
  /* image zone tighter on mobile — still fixed so all cards match */
  .offer-card-img-wrap { height: 200px; }
}

@media (min-width: 540px) {
  .hero-cta-group { flex-direction: row; justify-content: center; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 640px) {
  .pain-cards { grid-template-columns: repeat(4, 1fr); max-width: 860px; }
  .guarantee-cards { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 768px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .offers-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 900px) {
  .testimonials-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 1024px) {
  .hamburger { display: none; }
  .nav-desktop { display: flex; }
  .steps-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-top { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}
