/* ==========================================================================
   Guardião X — meuguardiaox.com.br
   Folha de estilo única do site institucional (tema dark fixo, seguindo a
   identidade visual do aplicativo: fundo azul-marinho profundo, verde de
   destaque e cartões em azul-ardósia). Sem dependências externas de CSS.

   Escala geral: +50% sobre a versão original (fontes, espaçamentos, cards,
   botões e demais dimensões). O logotipo e a tipografia do cabeçalho (topo)
   foram dobrados (2×) em relação ao original, para maior destaque de marca.
   Breakpoints de responsividade permanecem em px reais de viewport
   (não fazem parte da escala visual).
   ========================================================================== */

:root {
  /* Paleta — extraída das telas reais do app (login/cadastro/termos) */
  --bg: #0b141c;
  --bg-elevated: #14212e;
  --bg-card: #1e313f;
  --bg-card-hover: #263c4d;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);

  --text: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.72);
  --text-muted: rgba(255, 255, 255, 0.46);

  --primary: #4c7040;
  --primary-light: #9ccc65;
  --primary-dark: #33502b;
  --accent: #39ff14;
  --danger: #ef5350;
  --premium: #9c6bff;

  --radius-sm: 12px;
  --radius: 21px;
  --radius-lg: 33px;

  --shadow-card: 0 15px 45px rgba(0, 0, 0, 0.35);
  --container-w: 1680px;

  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 24px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overflow-wrap: break-word;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 24px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

p {
  margin: 0 0 24px;
}

.container {
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 36px;
}

section {
  padding: 132px 0;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 9px 21px;
  border-radius: 999px;
  background: rgba(76, 112, 64, 0.18);
  border: 1px solid rgba(156, 204, 101, 0.3);
  color: var(--primary-light);
  font-size: 19.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 27px;
}

.section-head {
  max-width: 960px;
  margin: 0 auto 84px;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(42px, 6vw, 57px);
}

.section-head p {
  color: var(--text-secondary);
  font-size: 25.5px;
}

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 21px 42px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 22.5px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease,
    border-color 0.15s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  color: #0b1409;
  box-shadow: 0 15px 36px rgba(156, 204, 101, 0.25);
}

.btn-primary:hover {
  box-shadow: 0 21px 45px rgba(156, 204, 101, 0.35);
}

.btn-outline {
  background: transparent;
  border-color: var(--border-strong);
  color: var(--text);
}

.btn-outline:hover {
  border-color: var(--primary-light);
  color: var(--primary-light);
}

.btn-whatsapp {
  background: #25d366;
  color: #06210f;
}

.btn-whatsapp:hover {
  box-shadow: 0 21px 45px rgba(37, 211, 102, 0.3);
}

.btn-block {
  width: 100%;
}

/* Botões com conteúdo longo e imprevisível (ex: endereço de e-mail) — evita
   que o texto transborde o card em vez de quebrar/reduzir dentro dele. */
.btn-wrap-text {
  white-space: normal;
  word-break: break-all;
  font-size: 19px;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 20, 28, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.site-header .nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 116px;
}

/* Marca do topo: logotipo e nome "Guardião X" DOBRADOS (2×) em relação ao
   tamanho original — destaque extra de marca no cabeçalho, acima da escala
   geral de +50% aplicada ao restante do site. */
.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 800;
  font-size: 36px;
  color: var(--text);
}

.brand img {
  width: 72px;
  height: 72px;
  border-radius: 18px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 51px;
}

.nav-links a {
  font-size: 21.75px;
  font-weight: 600;
  color: var(--text-secondary);
  transition: color 0.15s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary-light);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 8px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px;
}

.nav-toggle span {
  width: 36px;
  height: 3px;
  background: var(--text);
  border-radius: 2px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 138px 0 90px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 930px;
  background: radial-gradient(60% 60% at 50% 0%, rgba(76, 112, 64, 0.35), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 84px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10.5px 21px;
  border-radius: 999px;
  background: rgba(57, 255, 20, 0.08);
  border: 1px solid rgba(57, 255, 20, 0.25);
  color: var(--accent);
  font-size: 18.75px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.hero-eyebrow .dot {
  width: 10.5px;
  height: 10.5px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 15px var(--accent);
}

.hero h1 {
  font-size: clamp(51px, 7.5vw, 81px);
  line-height: 1.08;
}

.hero h1 span {
  background: linear-gradient(120deg, var(--primary-light), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p.lead {
  font-size: 27px;
  color: var(--text-secondary);
  max-width: 780px;
}

.hero-actions {
  display: flex;
  gap: 21px;
  flex-wrap: wrap;
  margin: 45px 0 51px;
}

.hero-trust {
  display: flex;
  gap: 39px;
  flex-wrap: wrap;
  color: var(--text-muted);
  font-size: 20.25px;
}

.hero-trust strong {
  color: var(--text);
  display: block;
  font-size: 30px;
}

.hero-art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-art .glow-ring {
  position: absolute;
  width: 630px;
  height: 630px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(76, 112, 64, 0.35), transparent 70%);
  filter: blur(15px);
}

.hero-art img {
  position: relative;
  width: 100%;
  max-width: 630px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
}

.store-badges {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.store-badge {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 27px;
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  min-width: 252px;
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.store-badge:hover {
  border-color: var(--primary-light);
  transform: translateY(-3px);
}

.store-badge svg {
  width: 39px;
  height: 39px;
  flex-shrink: 0;
}

.store-badge .txt small {
  display: block;
  font-size: 15.75px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.store-badge .txt strong {
  display: block;
  font-size: 22.5px;
  font-weight: 700;
}

.store-badge.soon {
  opacity: 0.72;
}

.store-badge.soon:hover {
  transform: none;
  border-color: var(--border-strong);
}

/* ---------- Logos / marquee de confiança ---------- */
.trust-strip {
  padding: 45px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-elevated);
}

.trust-strip .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  color: var(--text-muted);
  font-size: 40px;
  font-weight: 600;
  text-align: center;
}

.trust-strip .item {
  display: flex;
  align-items: center;
  gap: 12px;
}

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

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 42px 39px;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(156, 204, 101, 0.35);
  background: var(--bg-card-hover);
}

.feature-icon {
  width: 75px;
  height: 75px;
  border-radius: 21px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(76, 112, 64, 0.2);
  color: var(--primary-light);
  margin-bottom: 27px;
}

.feature-icon svg {
  width: 36px;
  height: 36px;
}

.feature-card h3 {
  font-size: 27px;
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 21.75px;
  margin-bottom: 0;
}

/* ---------- Como funciona (passos) ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  counter-reset: step;
}

.step-card {
  position: relative;
  padding: 45px 36px 36px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.step-card .step-num {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  color: #0b1409;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.step-card h3 {
  font-size: 25.5px;
  margin-bottom: 12px;
}

.step-card p {
  color: var(--text-secondary);
  font-size: 21.75px;
  margin-bottom: 0;
}

/* ---------- Planos / pricing ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 39px;
  align-items: stretch;
}

.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 51px 45px;
  display: flex;
  flex-direction: column;
}

.price-card.highlight {
  border: 1px solid rgba(156, 107, 255, 0.5);
  background: linear-gradient(180deg, rgba(156, 107, 255, 0.1), var(--bg-card) 40%);
  position: relative;
}

.price-card .badge-top {
  position: absolute;
  top: -20px;
  left: 45px;
  background: var(--premium);
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  padding: 7.5px 21px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.price-card h3 {
  font-size: 30px;
  margin-bottom: 9px;
}

.price-card .price {
  font-size: 51px;
  font-weight: 800;
  margin: 15px 0 6px;
}

.price-card .price span {
  font-size: 21px;
  color: var(--text-muted);
  font-weight: 600;
}

.price-card .price-note {
  color: var(--text-muted);
  font-size: 19.5px;
  margin-bottom: 33px;
}

.price-card ul {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 39px;
  flex: 1;
}

.price-card li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  font-size: 21.75px;
  color: var(--text-secondary);
}

.price-card li svg {
  width: 27px;
  height: 27px;
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--primary-light);
}

.price-card.highlight li svg {
  color: var(--premium);
}

.pricing-fineprint {
  max-width: 1140px;
  margin: 51px auto 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 19.5px;
}

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 1170px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 6px 33px;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 27px 0;
  font-weight: 700;
  font-size: 23.25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 33px;
  color: var(--primary-light);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  color: var(--text-secondary);
  font-size: 21.75px;
  padding-bottom: 30px;
  margin: 0;
}

/* ---------- CTA final ---------- */
.cta-final {
  text-align: center;
  background: linear-gradient(135deg, rgba(76, 112, 64, 0.25), rgba(57, 255, 20, 0.06));
  border-radius: var(--radius-lg);
  border: 1px solid rgba(156, 204, 101, 0.25);
  padding: 96px 48px;
}

.cta-final h2 {
  font-size: clamp(39px, 6vw, 51px);
}

.cta-final p {
  color: var(--text-secondary);
  max-width: 780px;
  margin: 0 auto 42px;
}

.cta-final .store-badges {
  justify-content: center;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  padding: 96px 0 42px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 54px;
  margin-bottom: 69px;
}

.footer-brand .brand {
  margin-bottom: 21px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 20px;
  max-width: 420px;
}

.footer-col h4 {
  font-size: 19.5px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-col a {
  color: var(--text-secondary);
  font-size: 21px;
  transition: color 0.15s ease;
}

.footer-col a:hover {
  color: var(--primary-light);
}

.footer-legal {
  border-top: 1px solid var(--border);
  padding-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  color: var(--text-muted);
  font-size: 19px;
}

.footer-legal strong {
  color: var(--text-secondary);
}

/* ==========================================================================
   Páginas de conteúdo jurídico / institucional (privacidade, termos,
   exclusão de dados, suporte)
   ========================================================================== */

.page-hero {
  padding: 90px 0 60px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(76, 112, 64, 0.12), transparent);
}

.page-hero .container {
  max-width: 1230px;
}

.page-hero h1 {
  font-size: clamp(42px, 6vw, 60px);
}

.page-hero p {
  color: var(--text-secondary);
  font-size: 24px;
}

.page-hero .updated-at {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 19.5px;
  margin-top: 9px;
}

.legal-layout {
  padding: 84px 0 150px;
}

.legal-layout .container {
  max-width: 1230px;
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 72px;
  align-items: start;
}

.legal-toc {
  position: sticky;
  top: 144px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.legal-toc a {
  font-size: 20px;
  color: var(--text-muted);
  padding: 10.5px 0;
  border-left: 2px solid transparent;
  padding-left: 18px;
}

.legal-toc a:hover {
  color: var(--text);
}

.legal-body .company-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 33px 36px;
  margin-bottom: 54px;
  font-size: 20px;
  color: var(--text-secondary);
}

.legal-body .company-card strong {
  color: var(--text);
  font-size: 22.5px;
  display: block;
  margin-bottom: 6px;
}

.legal-section {
  margin-bottom: 51px;
  scroll-margin-top: 144px;
}

.legal-section h2 {
  font-size: 28.5px;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  padding-bottom: 18px;
  margin-bottom: 21px;
}

.legal-section p,
.legal-section li {
  color: var(--text-secondary);
  font-size: 21.75px;
}

.legal-section ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0 0 24px;
  padding-left: 6px;
}

.legal-section li {
  padding-left: 27px;
  position: relative;
}

.legal-section li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 13.5px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--primary-light);
}

.callout {
  background: rgba(76, 112, 64, 0.12);
  border: 1px solid rgba(156, 204, 101, 0.3);
  border-radius: var(--radius);
  padding: 27px 30px;
  font-size: 20px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.callout.warn {
  background: rgba(239, 83, 80, 0.1);
  border-color: rgba(239, 83, 80, 0.35);
}

.footnote {
  color: var(--text-muted);
  font-size: 19px;
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius);
  padding: 24px 27px;
  margin-top: 60px;
}

/* ---------- Passo a passo (exclusão de dados / suporte) ---------- */
.deletion-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 30px 0 45px;
}

.deletion-step {
  display: flex;
  gap: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 33px;
}

.deletion-step .num {
  width: 51px;
  height: 51px;
  border-radius: 15px;
  background: rgba(156, 204, 101, 0.15);
  color: var(--primary-light);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.deletion-step h3 {
  font-size: 23px;
  margin-bottom: 6px;
}

.deletion-step p {
  color: var(--text-secondary);
  font-size: 21px;
  margin-bottom: 0;
}

/* ---------- Suporte ---------- */
.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: 33px;
  margin-bottom: 30px;
}

.support-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 39px 36px;
  text-align: center;
}

.support-card .feature-icon {
  margin: 0 auto 24px;
}

.support-card h3 {
  font-size: 24px;
}

.support-card p {
  color: var(--text-secondary);
  font-size: 20px;
  margin-bottom: 27px;
}

/* ---------- Utilidades ---------- */
.text-center {
  text-align: center;
}

.mt-0 {
  margin-top: 0;
}

/* ---------- Responsivo ---------- */
@media (max-width: 960px) {
  .hero .container {
    grid-template-columns: 1fr;
  }

  .hero-art {
    order: -1;
  }

  .hero-art img {
    max-width: 480px;
  }

  .features-grid,
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 660px;
    margin: 0 auto;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .legal-layout .container {
    grid-template-columns: 1fr;
  }

  .legal-toc {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 15px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 15px;
  }

  .legal-toc a {
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 9px 21px;
  }
}

@media (max-width: 720px) {
  .nav-links,
  .nav-cta .btn-outline {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  /* Cabeçalho compacto no celular: o logo/nome 2× e o botão de CTA cabem
     confortavelmente numa única linha (sem empurrar nada para fora da
     viewport) mantendo a marca em destaque. */
  .site-header .nav-wrap {
    height: 84px;
  }

  .brand {
    font-size: 26px;
    gap: 10px;
  }

  .brand img {
    width: 52px;
    height: 52px;
  }

  .nav-cta {
    gap: 10px;
  }

  .nav-cta .btn-primary {
    padding: 12px 20px;
    font-size: 16px;
  }

  body.nav-open .nav-links {
    display: flex;
    position: absolute;
    top: 84px;
    left: 0;
    right: 0;
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 12px 36px 30px;
  }

  body.nav-open .nav-links a {
    padding: 18px 0;
    width: 100%;
    border-bottom: 1px solid var(--border);
  }

  section {
    padding: 90px 0;
  }

  .container {
    padding: 0 24px;
  }

  .features-grid,
  .steps,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-legal {
    flex-direction: column;
    align-items: flex-start;
  }

  .trust-strip .container {
    font-size: 28px;
    gap: 24px;
  }

  .store-badges {
    width: 100%;
  }

  .store-badge {
    min-width: 0;
    flex: 1 1 220px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 20px;
  }

  .brand {
    font-size: 21px;
    gap: 8px;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .nav-cta .btn-primary {
    padding: 10px 16px;
    font-size: 14.5px;
  }

  .site-header .nav-wrap {
    height: 72px;
  }

  body.nav-open .nav-links {
    top: 72px;
  }

  .hero h1 {
    line-height: 1.15;
  }

  .store-badge {
    flex: 1 1 100%;
    min-width: 0;
    width: 100%;
  }

  .trust-strip .container {
    font-size: 22px;
    gap: 18px;
  }

  .price-card {
    padding: 36px 26px;
  }

  .feature-card,
  .step-card,
  .support-card {
    padding: 32px 24px;
  }
}
