:root {
  --bg: #04080f;
  --bg-soft: #070d18;
  --text: #dde2ed;
  --text-soft: #6b7694;
  --primary: #5294e8;
  --cta: #1db954;
  --border: #131f2e;
  --card: #080f1c;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  background: var(--bg);
  background-image:
    radial-gradient(ellipse 80% 40% at 50% -10%, rgba(30, 60, 130, .18), transparent);
  color: var(--text);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

/* ── Header ─────────────────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(4, 8, 15, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 60px;
}

.logo {
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--primary);
  letter-spacing: .2px;
}

.nav { display: flex; gap: 1.4rem; }

.nav a {
  color: var(--text-soft);
  font-size: .9rem;
  font-weight: 600;
  transition: color .2s;
}

.nav a:hover { color: var(--text); }

.menu-toggle {
  display: none;
  border: 1px solid var(--border);
  background: var(--bg-soft);
  color: var(--text);
  font-size: 1.1rem;
  padding: .45rem .65rem;
  border-radius: 8px;
  cursor: pointer;
}

/* ── Hero ────────────────────────────── */
.hero {
  padding: 3.2rem 0 1.25rem;
  text-align: center;
}

.hero-copy {
  max-width: 600px;
  margin: 0 auto;
}

.badge {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  padding: .28rem .7rem;
  border-radius: 999px;
  color: #bfdbfe;
  background: rgba(37, 99, 235, .18);
  border: 1px solid rgba(96, 165, 250, .3);
  margin-bottom: .7rem;
  letter-spacing: .2px;
}

h1, h2, h3 { margin: .2rem 0 .6rem; line-height: 1.2; }
h1 { font-size: clamp(1.8rem, 5vw, 2.7rem); letter-spacing: -.3px; }
h2 { font-size: clamp(1.2rem, 3vw, 1.6rem); }

.logo-inline { color: var(--primary); }

.hero-copy p {
  color: var(--text-soft);
  font-size: 1rem;
  margin-bottom: 1.3rem;
}

.btn-hero {
  min-height: 46px;
  padding: .75rem 1.5rem;
  font-size: .93rem;
  border-radius: 10px;
}

.hero-divider {
  width: 48px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--cta));
  margin: 1.05rem auto 0;
  opacity: .6;
}

/* ── Section ─────────────────────────── */
.section { padding: 2rem 0 3rem; }

#produtos.section {
  padding-top: 1.1rem;
}

.section-header {
  text-align: center;
  margin-bottom: 1.4rem;
}

.section-lead {
  color: var(--text-soft);
  font-size: .96rem;
  margin-top: .2rem;
}

/* ── Products ────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 980px;
  margin: 0 auto;
}

.product-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--card);
  overflow: visible;
  display: flex;
  flex-direction: column;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
  position: relative;
  z-index: 1;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: #1a3352;
  box-shadow: 0 12px 32px rgba(0, 0, 0, .65);
}

.product-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  background: #080e1a;
  border-bottom: 1px solid var(--border);
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
  display: block;
}

/* Ajuste fino de enquadramento da imagem do produto Edição Basica */
.product-card[data-product-id="edicao-basica"] img {
  object-position: center 22%;
}

.product-card-body {
  padding: .85rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 600;
  color: var(--text-soft);
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: .18rem .5rem;
  margin-bottom: .45rem;
  letter-spacing: .02em;
}

.product-card h3 {
  font-size: .97rem;
  margin: 0 0 .45rem;
  color: var(--text);
}

.product-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
}

.product-title-row h3 {
  margin: 0 0 .45rem;
}

.product-help {
  position: relative;
  margin-top: -.1rem;
}

.product-help-trigger {
  width: 20px;
  height: 20px;
  border: 1px solid rgba(125, 211, 252, .45);
  border-radius: 999px;
  background: rgba(125, 211, 252, .08);
  color: #bae6fd;
  font-size: .78rem;
  font-weight: 800;
  line-height: 1;
  cursor: help;
  display: inline-grid;
  place-items: center;
  padding: 0;
}

.product-help-tooltip {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: min(320px, 76vw);
  background: #07111f;
  border: 1px solid #1d3f6a;
  border-radius: 10px;
  padding: .7rem .78rem;
  color: #dbeafe;
  font-size: .77rem;
  line-height: 1.5;
  box-shadow: 0 14px 35px rgba(0, 0, 0, .55);
  opacity: 0;
  visibility: hidden;
  transform: translateY(5px);
  transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
  pointer-events: none;
  z-index: 40;
}

.product-help-tooltip p {
  margin: 0;
}

.product-help-tooltip p + p {
  margin-top: .55rem;
}

.product-help:hover .product-help-tooltip,
.product-help:focus-within .product-help-tooltip,
.product-help.is-open .product-help-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.price {
  color: #7dd3fc;
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: .5rem;
  display: block;
}

.delivery-badge {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-size: .75rem;
  font-weight: 600;
  color: #4ade80;
  background: rgba(74, 222, 128, .08);
  border: 1px solid rgba(74, 222, 128, .2);
  border-radius: 6px;
  padding: .2rem .55rem;
  margin-bottom: .6rem;
  width: fit-content;
}

/* ── Payment Seal ────────────────────── */
.payment-seal {
  display: flex;
  justify-content: center;
  margin-top: 1.2rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.seal-secure {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .78rem;
  font-weight: 700;
  color: #4ade80;
  background: rgba(74, 222, 128, .07);
  border: 1px solid rgba(74, 222, 128, .2);
  border-radius: 8px;
  padding: .3rem .75rem;
}

/* ── How it works ────────────────────── */
.section-steps {
  padding-bottom: 0;
}

.steps-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: .75rem;
  max-width: 700px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .45rem;
  flex: 1;
  min-width: 130px;
  max-width: 180px;
  padding: 1.1rem .8rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
}

.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(82, 148, 232, .15);
  border: 1px solid rgba(82, 148, 232, .3);
  color: var(--primary);
  font-weight: 800;
  font-size: 1rem;
  display: grid;
  place-items: center;
}

.step strong {
  color: var(--text);
  font-size: .92rem;
}

.step span {
  color: var(--text-soft);
  font-size: .8rem;
  line-height: 1.45;
}

.step-arrow {
  color: var(--text-soft);
  font-size: 1.4rem;
  align-self: center;
  padding-top: .5rem;
  opacity: .4;
}

@media (max-width: 520px) {
  .step-arrow { display: none; }
  .steps-grid { gap: .6rem; }
  .step { min-width: 120px; }
}

/* ── Buttons ─────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  border-radius: 9px;
  border: 0;
  cursor: pointer;
  padding: .65rem .95rem;
  transition: filter .18s ease, transform .18s ease;
  font-size: .9rem;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(90deg, #22c55e, #16a34a);
}

.btn-primary:hover {
  filter: brightness(1.07);
  transform: translateY(-1px);
}

.btn-outline {
  border: 1px solid var(--border);
  color: var(--text);
  background: transparent;
}

.full { width: 100%; }

/* ── Contact / Discord ───────────────── */
.contact-box {
  max-width: 540px;
  margin: 0 auto;
}

.discord-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  border: 1px solid #0f1e30;
  border-radius: 14px;
  background: linear-gradient(135deg, #060d1a, #080f1e);
  padding: 1.1rem 1.2rem;
  flex-wrap: wrap;
}

.discord-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: #5865f2;
  display: grid;
  place-items: center;
  color: #fff;
  flex-shrink: 0;
}

.discord-info {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 120px;
}

.discord-info strong {
  color: var(--text);
  font-size: 1rem;
}

.discord-info span {
  color: var(--text-soft);
  font-size: .85rem;
  margin-top: .1rem;
}

.btn-discord {
  background: #5865f2;
  color: #fff;
  font-weight: 700;
  border-radius: 9px;
  padding: .6rem 1.1rem;
  font-size: .88rem;
  white-space: nowrap;
  transition: filter .18s, transform .18s;
}

.btn-discord:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
}

/* ── FAQ (simples) ───────────────────── */
.faq-section .container {
  max-width: 820px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .02), rgba(255, 255, 255, .01));
  padding: 1.1rem 1rem 1.2rem;
  position: relative;
}

.faq-section .container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 18px;
  right: 18px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(125, 211, 252, .6), transparent);
}

.faq-simple {
  max-width: 760px;
  margin: 0 auto 1.2rem;
  display: grid;
  gap: .75rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(255, 255, 255, .02);
  padding: .85rem .95rem;
}

.faq-item h3 {
  margin: 0 0 .35rem;
  font-size: .92rem;
  color: var(--text);
}

.faq-item p {
  margin: 0;
  font-size: .84rem;
  color: var(--text-soft);
}

/* ── Footer ──────────────────────────── */
.footer {
  margin-top: 2.5rem;
  border-top: 1px solid var(--border);
  background: var(--bg-soft);
}

.footer-bottom { padding: .9rem 0; text-align: center; }

.footer-bottom p {
  margin: 0;
  color: var(--text-soft);
  font-size: .82rem;
}

.footer-official {
  margin-bottom: .4rem !important;
  font-size: .78rem !important;
}

.footer-official a {
  color: #93c5fd;
  font-weight: 700;
}

.footer-official a:hover {
  color: #bfdbfe;
}

.footer-official-links {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-left: .25rem;
}

.footer-link-icon {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  border: 1px solid var(--border);
  border-radius: 7px;
  padding: .14rem .45rem;
  background: rgba(255, 255, 255, .02);
}

.footer-link-icon svg {
  opacity: .9;
}

/* ── Checkout ────────────────────────── */
.checkout-body {
  min-height: 100vh;
  background: var(--bg);
}

.co-header {
  border-bottom: 1px solid var(--border);
  background: rgba(4, 8, 15, .95);
  backdrop-filter: blur(10px);
  padding: .85rem 0;
  position: sticky;
  top: 0;
  z-index: 50;
}

.co-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.back-link {
  color: var(--text-soft);
  font-size: .85rem;
  transition: color .15s;
}

.back-link:hover { color: var(--text); }

.co-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  padding-top: 2.5rem;
  padding-bottom: 3rem;
  align-items: start;
}

/* Product side */
.co-product-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid var(--border);
  display: block;
  margin-bottom: 1.2rem;
}

/* Ajuste fino no checkout para Edição Basica */
.co-product[data-product-id="edicao-basica"] .co-product-img {
  object-position: center 22%;
}

.co-product-info {
  display: flex;
  flex-direction: column;
  gap: .55rem;
}

.co-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  color: var(--text-soft);
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: .18rem .5rem;
  width: fit-content;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.co-product-name {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--text);
  margin: 0;
  line-height: 1.25;
}

.co-price {
  font-size: 1.6rem;
  font-weight: 900;
  color: #7dd3fc;
  margin: 0;
}

.co-story {
  color: var(--text-soft);
  font-size: .88rem;
  line-height: 1.58;
  margin: .2rem 0 .4rem;
}

.co-seal { margin-top: .4rem; }

/* Requisito de item */
.co-requisito {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-top: .6rem;
  background: rgba(220, 38, 38, .07);
  border: 1px solid rgba(220, 38, 38, .28);
  border-radius: 10px;
  padding: .6rem .75rem;
}

.co-requisito-img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
  border: 1px solid rgba(220, 38, 38, .3);
}

.co-requisito-text {
  display: flex;
  flex-direction: column;
  gap: .15rem;
}

.co-requisito-text strong {
  font-size: .82rem;
  color: #fca5a5;
  font-weight: 700;
}

.co-requisito-text span {
  font-size: .78rem;
  color: var(--text-soft);
  line-height: 1.4;
}

.co-seal-checkout {
  width: 100%;
  justify-content: center;
  font-size: .88rem;
  font-weight: 800;
  padding: .5rem .9rem;
  margin: 0 0 .95rem;
  border-radius: 10px;
  color: #86efac;
  background: rgba(74, 222, 128, .12);
  border: 1px solid rgba(74, 222, 128, .38);
}

/* Form */
.co-form { display: flex; flex-direction: column; gap: 1rem; }

.co-order-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .7rem;
  background: linear-gradient(135deg, rgba(33, 70, 120, .3), rgba(15, 32, 56, .45));
  border: 1px solid #1d3f6a;
  border-radius: 10px;
  padding: .72rem .92rem;
  margin-bottom: .3rem;
}

.co-order-summary-name {
  font-size: .9rem;
  font-weight: 700;
  color: #dbeafe;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.co-order-summary-price {
  font-size: 1rem;
  font-weight: 900;
  color: #7dd3fc;
  white-space: nowrap;
}

.co-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: .2rem 0 .4rem;
}

.co-field {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.co-field label {
  font-size: .8rem;
  font-weight: 700;
  color: var(--text-soft);
  margin: 0;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.co-field input {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-size: .95rem;
  font-family: inherit;
  padding: .78rem 1rem;
  transition: border-color .18s, background .18s, box-shadow .18s;
  outline: none;
  width: 100%;
  box-sizing: border-box;
}

.co-field input:focus {
  border-color: var(--primary);
  background: rgba(82,148,232,.05);
  box-shadow: 0 0 0 3px rgba(82,148,232,.12);
}

.co-field input::placeholder {
  color: var(--text-soft);
  opacity: .4;
}

.co-submit {
  margin-top: .4rem;
  padding: .85rem;
  font-size: 1rem;
  letter-spacing: .02em;
}

/* Payment side */
.co-payment-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--card);
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
}

.co-payment-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 .25rem;
}

.co-payment-sub {
  color: var(--text-soft);
  font-size: .85rem;
  margin: 0 0 1rem;
}

.co-label {
  display: block;
  margin-bottom: .4rem;
  font-weight: 700;
  font-size: .88rem;
  color: var(--text-soft);
}

.required {
  color: #ef4444;
  font-weight: 800;
}

.form-alert {
  margin: .2rem 0 .9rem;
  border: 1px solid rgba(248, 113, 113, .35);
  background: rgba(248, 113, 113, .08);
  color: #fca5a5;
  border-radius: 8px;
  padding: .55rem .7rem;
  font-size: .82rem;
}

.pix-timer {
  margin: 0 0 .9rem;
  border: 1px solid rgba(250, 204, 21, .35);
  background: rgba(250, 204, 21, .08);
  color: #fde68a;
  border-radius: 8px;
  padding: .5rem .7rem;
  font-size: .84rem;
  font-weight: 700;
}

@media (max-width: 760px) {
  /* Mesmo visual do desktop, apenas empilhado */
  .co-layout {
    grid-template-columns: 1fr;
    gap: 1.1rem;
    padding-top: 1rem;
    padding-bottom: 1.8rem;
  }

  .co-product,
  .co-payment {
    order: initial;
  }

  /* Mantém card com borda e cantos no mobile */
  .co-payment-card {
    border-radius: 16px;
    border: 1px solid var(--border);
    padding: 1.2rem;
  }

  /* Mantém destaque de produto como no PC */
  .co-order-summary {
    padding: .72rem .92rem;
    border-radius: 10px;
  }

  .co-order-summary-name {
    font-size: .9rem;
  }

  .co-order-summary-price {
    font-size: 1rem;
  }

  /* Ajustes leves para caber melhor em telas pequenas */
  .co-product-img {
    aspect-ratio: 16 / 9;
    margin-bottom: .8rem;
  }

  .co-product-name { font-size: 1.18rem; }
  .co-price        { font-size: 1.32rem; }
  .co-story        { font-size: .84rem; line-height: 1.72; }
  .co-product-info { gap: .45rem; }

  /* 16px impede zoom automático no iOS/Android */
  .co-field input,
  textarea {
    font-size: 16px !important;
    padding: .85rem 1rem;
  }

  .co-submit {
    padding: 1rem;
    font-size: 1rem;
  }

  .qr-image {
    width: min(210px, 72%);
  }
}

/* ── States ──────────────────────────── */
.state-body {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: var(--bg);
}

.state-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--card);
  padding: 1.4rem;
  width: min(500px, 92%);
}

.qr-image {
  margin: .7rem auto 1rem;
  width: min(240px, 85%);
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #fff;
  padding: .4rem;
}

label { display: block; margin-bottom: .4rem; font-weight: 700; font-size: .9rem; color: var(--text-soft); }

textarea {
  width: 100%;
  min-height: 90px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  padding: .75rem;
  margin-bottom: .7rem;
  resize: vertical;
  font-family: inherit;
}

.status-box {
  margin-top: .9rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: .8rem;
  font-weight: 700;
  font-size: .95rem;
}

.status-note { color: var(--text-soft); font-size: .9rem; margin-top: .4rem; }
.state-actions { display: flex; gap: .7rem; flex-wrap: wrap; margin-top: 1.2rem; }

/* ── Success Page ────────────────────── */
.success-head h1 {
  margin: .4rem 0 .2rem;
  font-size: 2rem;
  line-height: 1.1;
}

.success-head p {
  margin: 0;
  color: var(--text-soft);
}

.success-badge {
  display: inline-block;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #4ade80;
  background: rgba(74, 222, 128, .08);
  border: 1px solid rgba(74, 222, 128, .25);
  border-radius: 999px;
  padding: .25rem .6rem;
}

.success-meta {
  display: grid;
  gap: .7rem;
  margin-top: 1rem;
}

.success-meta-item {
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(255, 255, 255, .02);
  padding: .65rem .8rem;
}

.success-meta-item span {
  display: block;
  font-size: .75rem;
  color: var(--text-soft);
  margin-bottom: .2rem;
}

.success-meta-item strong {
  color: var(--text);
  font-size: .9rem;
}

.success-delivery {
  margin-top: 1rem;
  border: 1px solid rgba(125, 211, 252, .28);
  background: rgba(125, 211, 252, .07);
  border-radius: 10px;
  padding: .75rem .85rem;
}

.success-delivery strong {
  display: block;
  color: #bae6fd;
  margin-bottom: .18rem;
}

.success-delivery p {
  margin: 0;
  color: var(--text-soft);
  font-size: .86rem;
}

.success-actions .btn {
  min-height: 42px;
}

/* ── Mobile ──────────────────────────── */
@media (max-width: 860px) {
  .menu-toggle { display: inline-flex; }

  .nav {
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    padding: .8rem 4%;
    background: #0a1220;
    border-bottom: 1px solid var(--border);
    gap: .2rem;
  }

  .nav.open { display: flex; }

  .nav a { padding: .5rem 0; }

  .official-proof {
    margin-bottom: .95rem;
  }

  .faq-section .container {
    border-radius: 12px;
    padding: .9rem .75rem .95rem;
    margin: 0 auto;
    background: rgba(255, 255, 255, .015);
  }

  .faq-section .container::before {
    left: 12px;
    right: 12px;
    opacity: .75;
  }

  .faq-section .section-header {
    margin-bottom: .95rem;
  }

  .faq-section .section-header h2 {
    font-size: 1.15rem;
  }

  .faq-section .section-lead {
    font-size: .86rem;
  }

  .faq-simple {
    gap: .55rem;
    margin-bottom: .2rem;
  }

  .faq-item {
    border-radius: 10px;
    padding: .72rem .78rem;
  }

  .faq-item h3 {
    font-size: .86rem;
    line-height: 1.35;
    margin-bottom: .25rem;
  }

  .faq-item p {
    font-size: .8rem;
    line-height: 1.45;
  }

  .footer-bottom {
    padding: 1rem 0 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .42rem;
  }

  .footer-bottom p {
    font-size: .9rem;
    line-height: 1.35;
  }

  .footer-official {
    margin-bottom: 0 !important;
    font-size: .9rem !important;
  }

  .footer-official-links {
    margin-left: 0;
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .45rem;
  }

  .footer-link-icon {
    padding: .26rem .62rem;
    font-size: .86rem;
  }

  .product-help-trigger {
    cursor: pointer;
  }

  .product-help-tooltip {
    position: fixed;
    left: 12px;
    right: 12px;
    top: auto;
    bottom: 14px;
    width: auto;
    max-width: none;
    max-height: 56vh;
    overflow-y: auto;
    border-radius: 12px;
    padding: .9rem .95rem;
    font-size: .9rem;
    z-index: 1200;
    transform: translateY(10px);
  }

  body.product-help-open::before { content: none; }
}

@media (min-width: 600px) {
  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 300px));
    justify-content: center;
  }
}

@media (min-width: 980px) {
  .products-grid {
    grid-template-columns: repeat(3, minmax(0, 300px));
    justify-content: center;
  }
}
