/* ============================================================
   MEMO MATRIX — FUNIL 3
   Stack: HTML5 + CSS3 (no jQuery, no framework)
   Paleta:
     - Dark (hero/sections):  #032737  (azul-petróleo escuro)
     - Teal (CTA secundário):  #4FBDB5
     - Laranja CTA principal:  #F26B3A
     - Amarelo Most Popular:   #FFF8C8
     - Off-white background:   #f0f2f0
============================================================ */

/* ============================================================
   RESET & BASE
============================================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: #1a1a1a;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* ============================================================
   UTILITIES
============================================================ */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-center { text-align: center; }
.white { color: #fff; }

/* ============================================================
   NAVBAR — sticky, branca, sombra suave
============================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 300;
  background: #fff;
  border-bottom: 1px solid #e8e8e8;
  box-shadow: 0 2px 10px rgba(0,0,0,0.07);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 62px;
  gap: 20px;
}

.nav-logo {
  font-family: 'Oswald', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #032737;
  letter-spacing: 1px;
  text-decoration: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  transition: color 0.2s;
}

.nav-links a:hover { color: #F26B3A; }
.nav-links a b { color: #F26B3A; }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #F26B3A;
  color: #fff !important;
  font-size: 13px;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: 6px;
  transition: background 0.2s;
}

.nav-cta:hover { background: #d8552a; }
.nav-cta svg { width: 16px; height: 16px; }

/* Mobile hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #333;
  border-radius: 2px;
  transition: all 0.3s;
}

/* ============================================================
   HERO — fundo claro pra acomodar PNGs sem fundo
============================================================ */
.hero {
  background: linear-gradient(180deg, #ffffff 0%, #eef2f3 100%);
  padding: 60px 0;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.hero-product-img {
  max-height: 320px;
  width: auto;
  object-fit: contain;
}

.hero-comments {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}

.hero-comment {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #fff;
  border: 1px solid #e2e8eb;
  border-radius: 10px;
  padding: 12px 14px;
  box-shadow: 0 1px 3px rgba(3,39,55,0.04);
}

.hero-comment-avatar {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 0%;
  background: #f0f2f0;
  border: 2px solid #e2e8eb;
}

.hero-comment-body { flex: 1; }

.hero-comment-stars {
  color: #f59e0b;
  font-size: 12px;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.hero-comment-text {
  font-size: 13px;
  color: #444;
  line-height: 1.5;
  font-style: italic;
}

.hero-comment-author {
  font-size: 12px;
  color: #888;
  margin-top: 4px;
}

.hero-comment-author b { color: #1a1a1a; }

.hero-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 700;
  color: #032737;
  line-height: 1.05;
}

.hero-subtitle {
  font-size: 19px;
  font-weight: 400;
  color: #444;
  line-height: 1.5;
}

.hero-subtitle b { color: #032737; }

.hero-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #F26B3A;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 8px;
  margin-top: 8px;
  max-width: 360px;
  animation: cta-pulse 2s ease-in-out infinite;
  transition: background 0.2s;
}

.hero-cta-btn:hover { background: #d8552a; animation: none; }

@keyframes cta-pulse {
  0%, 100% { box-shadow: 0 3px 12px rgba(242,107,58,0.3); transform: scale(1); }
  50% { box-shadow: 0 0 0 8px rgba(242,107,58,0.1), 0 3px 14px rgba(242,107,58,0.35); transform: scale(1.008); }
}

/* ============================================================
   CLAIM BANNER — teal Memo Matrix
============================================================ */
.claim-banner {
  background: #4FBDB5;
  padding: 28px 24px;
}

.claim-banner h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(22px, 4vw, 36px);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

/* ============================================================
   PACKAGES SECTION
============================================================ */
.packages-section {
  background: #f0f2f0;
  padding: 0 0 56px;
}

/* Triângulo decorativo (teal) */
.packages-triangle {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.packages-triangle svg {
  display: block;
  width: 100%;
}

.packages-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-top: 28px;
  align-items: start;
}

/* Card de pacote */
.pkg-card {
  background: #fff;
  border: 2px solid #d0d0d0;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: #1a1a1a;
  transition: transform 0.2s, box-shadow 0.2s;
}

.pkg-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.pkg-card.featured {
  border-color: #032737;
  background: #FFF8C8;
}

.pkg-card-header {
  background: #626f72;
  padding: 10px 16px;
  text-align: center;
}

.pkg-card-header h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 1px;
}

.pkg-card.featured .pkg-card-header {
  background: #032737;
}

.pkg-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pkg-qty {
  font-family: 'Oswald', sans-serif;
  font-size: 38px;
  font-weight: 700;
  color: #4FBDB5;
  text-align: center;
  line-height: 1;
}

.pkg-card.featured .pkg-qty { color: #032737; }

.pkg-supply {
  font-size: 14px;
  font-weight: 600;
  color: #555;
  text-align: center;
  margin-top: 2px;
}

.pkg-product-img {
  max-height: 180px;
  width: auto;
  object-fit: contain;
  margin: 0 auto;
}

.pkg-price {
  font-family: 'Oswald', sans-serif;
  font-size: 72px;
  font-weight: 700;
  color: #4FBDB5;
  text-align: center;
  line-height: 1;
}

.pkg-card.featured .pkg-price { color: #032737; }

.pkg-price-per {
  font-size: 14px;
  color: #666;
  text-align: center;
  margin-top: 2px;
}

.pkg-badges {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pkg-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
}

.pkg-badge-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.pkg-badge.green { color: #4FBDB5; }
.pkg-badge.red { color: #F26B3A; }

/* Botão BUY NOW */
.pkg-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(180deg, #fbff56 48%, #fcd838 52%);
  border: 2px solid #ecbf33;
  border-radius: 10px;
  padding: 12px 16px;
  box-shadow: 0 0 0 2px #d4af3b;
  cursor: pointer;
  transition: opacity 0.2s;
}

.pkg-btn:hover { opacity: 0.9; }

.pkg-btn-text {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #032737;
  text-shadow: -1px 1px 1px #fff;
}

.pkg-btn-cart {
  background: #4FBDB5;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 9px;
}

.pkg-btn-cart svg { width: 100%; height: 100%; }

.pkg-hand {
  align-self: flex-end;
  max-width: 44px;
  margin-top: -26px;
}

.pkg-cards-img {
  max-width: 100%;
  margin: 0 auto;
}

/* ============================================================
   GUARANTEE
============================================================ */
.guarantee-section {
  background: #fff;
  padding: 72px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.guarantee-inner {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.guarantee-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 700;
  color: #032737;
  line-height: 1.15;
}

.guarantee-body {
  display: flex;
  align-items: center;
  gap: 28px;
}

.guarantee-seal {
  width: 160px;
  min-width: 160px;
  height: 160px;
  object-fit: contain;
}

.guarantee-text {
  font-size: 17px;
  line-height: 1.7;
  color: #333;
}

.guarantee-fda {
  max-width: 680px;
  margin: 0 auto;
  width: 100%;
}

.guarantee-made {
  font-size: 16px;
  color: #444;
}

/* ============================================================
   BONUS
============================================================ */
.bonus-section {
  background: #032737;
  padding: 72px 0;
}

.bonus-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 36px;
}

.bonus-title .highlight { color: #FFD93D; }
.bonus-title .underline { color: #FFD93D; text-decoration: underline; }

.bonus-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
}

.bonus-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bonus-card img {
  border: 3px solid #4FBDB5;
  border-radius: 12px;
  width: 100%;
  object-fit: cover;
  background: #fff;
}

.bonus-card-number {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #4FBDB5;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.bonus-card-title {
  font-family: 'Oswald', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
  line-height: 1.15;
}

.bonus-card-text {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.78);
  line-height: 1.6;
}

/* ============================================================
   FREE SHIPPING BANNER — teal Memo Matrix
============================================================ */
.shipping-banner {
  background: #4FBDB5;
  padding: 32px 0;
}

.shipping-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
}

.shipping-icon { max-height: 90px; }

.shipping-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.shipping-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 700;
  color: #fff;
}

.shipping-sub {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.95);
}

.shipping-sub span { color: #FFD93D; font-weight: 700; }

/* ============================================================
   SCIENTIFIC DISCOVERY
============================================================ */
.science-section {
  padding: 72px 0;
  background: #fff;
}

.science-inner {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.science-label {
  font-size: 14px;
  font-weight: 700;
  color: #F26B3A;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.science-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(22px, 3.5vw, 36px);
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.2;
}

.science-subtitle {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 500;
  color: #333;
  font-style: italic;
  line-height: 1.25;
}

.science-intro {
  font-size: 17px;
  color: #444;
  line-height: 1.75;
}

.science-content {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 32px;
  align-items: start;
}

.science-content img { border-radius: 10px; width: 100%; }

.science-body {
  font-size: 17px;
  color: #333;
  line-height: 1.75;
}

.science-body b { color: #1a1a1a; }

.science-full {
  font-size: 17px;
  color: #333;
  line-height: 1.75;
}

.science-full b { color: #1a1a1a; }

.science-ref {
  font-size: 12px;
  color: #aaa;
  line-height: 1.6;
}

/* ============================================================
   PRODUCT INTRO — fundo claro pra acomodar PNG sem fundo
============================================================ */
.product-section {
  background: #f0f2f0;
  padding: 72px 0;
}

.product-eyebrow {
  font-size: 16px;
  font-weight: 400;
  color: #666;
  text-align: center;
  margin-bottom: 6px;
}

.product-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(40px, 6vw, 65px);
  font-weight: 700;
  color: #032737;
  text-align: center;
  margin-bottom: 40px;
}

.product-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.product-inner img { width: 100%; border-radius: 10px; }

.product-copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.product-copy h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.3;
}

.product-copy h2 b { font-weight: 700; color: #032737; }

.product-copy p {
  font-size: 17px;
  font-weight: 500;
  color: #444;
  line-height: 1.7;
}

/* ============================================================
   INGREDIENTS
============================================================ */
.ingredients-section {
  padding: 72px 0;
  background: #f9f9f9;
}

.ingredients-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(22px, 3.5vw, 34px);
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.ingredients-subtitle {
  font-size: 17px;
  color: #444;
  margin-bottom: 36px;
}

.ingredients-subtitle b { color: #1a1a1a; }

.ingredients-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.ingredient-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ingredient-card img {
  border: 3px solid #ddd;
  border-radius: 12px;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #fff;
}

.ingredient-name {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  text-align: center;
  line-height: 1.2;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ingredient-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ingredient-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: #444;
  line-height: 1.4;
}

.ingredient-item .chk {
  width: 16px;
  height: 16px;
  min-width: 16px;
  margin-top: 2px;
}

.ingredient-item .chk path { fill: #4FBDB5; }

/* ============================================================
   BENEFITS STRIP
============================================================ */
.benefits-strip {
  background: #eee;
  border-top: 3px solid #e0e0e0;
  padding: 48px 0;
}

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

.benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.benefit-icon-wrap {
  background: #fff;
  border-radius: 50%;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 12px;
}

.benefit-icon-wrap svg { width: 100%; height: 100%; }
.benefit-icon-wrap svg path { fill: #4FBDB5; }

.benefit-label {
  font-size: 13px;
  font-weight: 700;
  color: #333;
  line-height: 1.3;
}

/* ============================================================
   TESTIMONIALS (users)
============================================================ */
.testimonials-section {
  padding: 72px 0;
  background: #fff;
}

.testimonials-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 40px;
}

.testimonial-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid #f0f0f0;
}

.testimonial-item:last-child { border-bottom: none; }

.testimonial-avatar {
  width: 74px;
  height: 74px;
  min-width: 74px;
  border-radius: 50%;
  object-fit: cover;
  background: #f0f2f0;
  border: 4px solid #e0e0e0;
}

.testimonial-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.testimonial-result {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #032737;
}

.testimonial-stars {
  font-size: 14px;
  color: #f59e0b;
  letter-spacing: 1px;
}

.testimonial-text {
  font-size: 16px;
  color: #444;
  line-height: 1.7;
  font-style: italic;
}

.testimonial-product {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 4px;
}

.testimonial-product img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.testimonial-product-text {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

.testimonial-product-text span {
  display: block;
  font-weight: 700;
  color: #032737;
}

/* ============================================================
   FAQ
============================================================ */
.faq-section {
  background: #032737;
  padding: 72px 0;
}

.faq-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 40px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: #fff;
  border-radius: 10px;
  padding: 14px 18px;
  cursor: pointer;
  user-select: none;
}

.faq-question h3 {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.3;
}

.faq-arrow {
  width: 22px;
  min-width: 22px;
  transition: transform 0.3s;
}

.faq-answer {
  display: none;
  padding: 18px 20px;
  font-size: 16px;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  border-left: 3px solid rgba(255,255,255,0.1);
  margin-left: 8px;
}

.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }

/* ============================================================
   LABEL
============================================================ */
.label-section {
  padding: 72px 0;
  background: #fff;
}

.label-img {
  max-width: 800px;
  margin: 0 auto;
}

/* ============================================================
   REFERENCES
============================================================ */
.references-section {
  padding: 0 0 64px;
  background: #fff;
}

.references-label {
  font-size: 13px;
  font-weight: 700;
  color: #aaa;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.references-logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: center;
  justify-items: center;
  margin-bottom: 12px;
}

.references-logos img { max-height: 60px; width: auto; }

.references-disclaimer {
  font-size: 12px;
  color: #bbb;
  text-align: center;
  margin-bottom: 24px;
}

.references-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.references-cols p {
  font-size: 12px;
  color: #aaa;
  line-height: 1.65;
  margin-bottom: 10px;
}

/* ============================================================
   FOOTER
============================================================ */
.site-footer {
  background: #032737;
  padding: 40px 0;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
  margin-bottom: 20px;
}

.footer-links a {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}

.footer-links a:hover { color: #fff; }

.footer-disclaimer {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.footer-disclaimer b { color: rgba(255,255,255,0.5); }

/* ============================================================
   CART SVG (reutilizável)
============================================================ */
.cart-svg { width: 100%; height: 100%; }

/* ============================================================
   RESPONSIVO
============================================================ */
@media (max-width: 991px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 62px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 20px 24px;
    border-bottom: 1px solid #eee;
    z-index: 400;
    gap: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  }

  .hero-inner { grid-template-columns: 1fr; }
  .hero-comments { display: none; }
  .hero-right { text-align: center; align-items: center; }

  .bonus-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .benefits-grid { grid-template-columns: repeat(3, 1fr); }
  .science-content { grid-template-columns: 1fr; }
  .product-inner { grid-template-columns: 1fr; }
  .references-cols { grid-template-columns: 1fr; }
  .ingredients-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
  .packages-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; margin-top: 28px; }
  .guarantee-body { flex-direction: column; align-items: center; text-align: center; }
  .shipping-inner { flex-direction: column; text-align: center; }
  .ingredients-row { grid-template-columns: 1fr; }
  .ingredient-card { max-width: 360px; margin: 0 auto; width: 100%; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .references-logos { grid-template-columns: repeat(2, 1fr); }
  .testimonial-item { flex-direction: column; }
}

@media (max-width: 479px) {
  .benefits-grid { grid-template-columns: 1fr; }
  .hero-cta-btn { max-width: 100%; }
}

/* =====================================================================
   DISCLAIMER CONTAINER (Digistore)
===================================================================== */
#disclaimer-container { width: 100%; padding: 8px 12px; font-size: 0.85rem; line-height: 1.4; text-align: center; }
#disclaimer, #disclaimer * { box-sizing: border-box !important; max-width: 100% !important; white-space: normal !important; overflow-wrap: break-word !important; word-break: break-word !important; display: inline !important; vertical-align: middle !important; margin: 0 !important; padding: 0 !important; line-height: 1.3 !important; }
#disclaimer p, #disclaimer div { display: block !important; width: 100% !important; }
#disclaimer img, #disclaimer-container img { max-width: 320px !important; height: auto !important; width: 100% !important; display: block !important; margin: 0 auto !important; }
