:root {
  --red: #d90416;
  --red-dark: #a90512;
  --green: #1f7a28;
  --green-dark: #183d18;
  --cream: #fff8ef;
  --cream-soft: #fffaf4;
  --rose: #ffe9e6;
  --ink: #1f1f1f;
  --muted: #555555;
  --line: #eadfd7;
  --white: #ffffff;
  --shadow-soft: 0 14px 34px rgba(66, 40, 24, 0.08);
  --shadow-icon: 0 10px 24px rgba(66, 40, 24, 0.1);
  --radius: 8px;
  --container: 1280px;
  --header-height: 122px;
  font-family: Inter, "Nunito Sans", "Poppins", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: calc(100% - 144px);
  max-width: var(--container);
  margin: 0 auto;
}

.section {
  padding: 54px 0;
}

#inicio,
#beneficios,
#produtos,
#publicos,
#como-funciona,
#contato {
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.section-heading {
  margin-bottom: 34px;
}

.section-heading-centered {
  text-align: center;
}

.section-heading h2,
.final-cta h2,
.privacy-content h1 {
  margin: 0;
  color: var(--green-dark);
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(31, 31, 31, 0.07);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

.header-inner {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand {
  flex: 0 0 260px;
}

.brand img,
.footer-brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.brand strong,
.footer-brand strong {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.brand small,
.footer-brand small {
  display: block;
  color: var(--green-dark);
  font-size: 1.32rem;
  font-weight: 900;
  line-height: 0.98;
}

.brand small span,
.footer-brand small span {
  display: block;
}

.brand small span:last-child,
.footer-brand small span:last-child {
  color: var(--red);
  font-size: 2.24rem;
  letter-spacing: 0;
}

.main-menu {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  justify-content: space-between;
  gap: 38px;
}

.main-menu ul,
.footer-links {
  display: flex;
  align-items: center;
  gap: 62px;
  padding: 0;
  margin: 0 auto;
  list-style: none;
}

.nav-link {
  color: #111111;
  font-size: 0.92rem;
  font-weight: 750;
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--red);
}

.nav-link:focus-visible,
.menu-toggle:focus-visible {
  outline: 3px solid rgba(31, 122, 40, 0.24);
  outline-offset: 4px;
}

.menu-toggle {
  display: none;
}

.button {
  display: inline-flex;
  min-height: 66px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 0 28px;
  border: 1.5px solid transparent;
  border-radius: var(--radius);
  font-size: 0.94rem;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  white-space: nowrap;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button:focus-visible {
  outline: 3px solid rgba(31, 122, 40, 0.22);
  outline-offset: 3px;
}

.button-icon,
.icon,
.trust-icon,
.benefit-icon,
.audience-icon,
.step-icon,
.check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.button-icon {
  width: 26px;
  height: 26px;
  transition: transform 0.18s ease;
}

.button:hover .button-icon {
  transform: translateX(1px) scale(1.03);
}

.button-icon svg {
  width: 100%;
  height: 100%;
}

.button-icon--whatsapp svg {
  transform: translateY(0.5px);
}

.button-primary {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 12px 25px rgba(217, 4, 22, 0.18);
}

.button-primary:hover {
  background: var(--red-dark);
}

.button-outline {
  color: var(--green);
  background: var(--white);
  border-color: var(--green);
}

.button-outline:hover {
  color: var(--white);
  background: var(--green);
}

.btn-whatsapp {
  --btn-color: var(--green);
  --btn-focus: rgba(31, 122, 40, 0.24);
  color: var(--btn-color);
  background: var(--white);
  border-color: var(--btn-color);
  box-shadow: none;
}

.btn-whatsapp:hover {
  color: var(--white);
  background: var(--btn-color);
  border-color: var(--btn-color);
}

.btn-whatsapp:focus-visible {
  outline-color: var(--btn-focus);
  box-shadow: 0 0 0 5px var(--btn-focus);
}

.btn-whatsapp--home {
  --btn-color: var(--red);
  --btn-focus: rgba(217, 4, 22, 0.24);
}

.btn-whatsapp--empresa {
  --btn-color: var(--green);
  --btn-focus: rgba(31, 122, 40, 0.24);
}

.button-green {
  min-height: 58px;
  padding: 0 26px;
  color: var(--white);
  background: var(--green);
  box-shadow: 0 12px 22px rgba(31, 122, 40, 0.18);
}

.header-cta {
  gap: 10px;
}

.header-cta .button-icon {
  width: 24px;
  height: 24px;
}

.button-green:hover {
  background: var(--green-dark);
}

.button-light {
  min-height: 58px;
  color: var(--red);
  background: var(--white);
}

.button-red-outline {
  min-height: 58px;
  color: var(--white);
  background: rgba(122, 0, 0, 0.16);
  border-color: rgba(255, 255, 255, 0.95);
}

.button-red-outline:hover {
  color: var(--red);
  background: var(--white);
}

.hero {
  overflow: hidden;
  background: var(--white);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(580px, 0.96fr) minmax(500px, 1.04fr);
  align-items: stretch;
  min-height: 780px;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  max-width: 640px;
  flex-direction: column;
  justify-content: center;
  padding: 32px 0 58px;
}

.hero-content h1 {
  display: grid;
  gap: 0;
  margin: 0;
  font-size: clamp(4.1rem, 5.7vw, 5.15rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-content h1 span {
  display: block;
  white-space: nowrap;
}

.text-red {
  color: var(--red);
}

.text-green {
  color: var(--green-dark);
}

.hero-content p {
  max-width: 520px;
  margin: 28px 0 0;
  color: var(--ink);
  font-size: clamp(1.32rem, 1.75vw, 1.52rem);
  font-weight: 780;
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 42px;
}

.hero-actions .button {
  min-width: 238px;
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  max-width: 590px;
  padding: 0;
  margin: 50px 0 0;
  list-style: none;
}

.trust-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1px 12px;
  align-items: start;
}

.trust-icon {
  grid-row: span 2;
  width: 40px;
  height: 40px;
  color: var(--green);
  background: rgba(31, 122, 40, 0.1);
  border: 1px solid rgba(31, 122, 40, 0.14);
  border-radius: 999px;
}

.trust-item:nth-child(2) .trust-icon {
  color: var(--red);
  background: rgba(217, 4, 22, 0.09);
  border-color: rgba(217, 4, 22, 0.14);
}

.trust-item:nth-child(3) .trust-icon {
  color: var(--green-dark);
  background: rgba(31, 122, 40, 0.08);
}

.trust-icon svg {
  width: 23px;
  height: 23px;
}

.trust-item strong {
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1.2;
}

.trust-item span {
  color: var(--ink);
  font-size: 0.82rem;
  line-height: 1.3;
}

.hero-media {
  position: relative;
  min-height: 780px;
  margin-right: calc((100vw - min(100vw - 144px, var(--container))) / -2);
}

.hero-media::before {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 1;
  width: 210px;
  background: linear-gradient(90deg, var(--white) 0%, rgba(255, 255, 255, 0.92) 26%, rgba(255, 255, 255, 0) 100%);
  content: "";
  pointer-events: none;
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 780px;
  object-fit: cover;
  object-position: center right;
}

.benefits {
  background: linear-gradient(180deg, #fff9f1 0%, #fffdf9 100%);
}

.benefits .section-heading {
  margin-bottom: 26px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
}

.benefit-card {
  position: relative;
  display: grid;
  justify-items: center;
  min-height: 205px;
  padding: 0 48px 0;
  text-align: center;
}

.benefit-card + .benefit-card {
  border-left: 1px solid var(--line);
}

.benefit-icon {
  width: 86px;
  height: 86px;
  margin: 0 0 22px;
  color: var(--red);
  background: linear-gradient(180deg, #fff1ef 0%, #ffe4df 100%);
  border: 1px solid rgba(217, 4, 22, 0.12);
  border-radius: 999px;
  box-shadow: var(--shadow-icon), inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.benefit-icon svg {
  width: 38px;
  height: 38px;
}

.benefit-card:nth-child(2) .benefit-icon,
.benefit-card:nth-child(3) .benefit-icon {
  color: var(--green);
  background: linear-gradient(180deg, #f4fff1 0%, #e5f8df 100%);
  border-color: rgba(31, 122, 40, 0.14);
}

.benefit-card h3,
.product-card h3,
.audience-card h3,
.step-item h3 {
  margin: 0;
  color: #121212;
  font-size: 1.1rem;
  font-weight: 900;
  line-height: 1.2;
}

.benefit-card p,
.product-card p,
.audience-card p,
.step-item p {
  margin: 12px 0 0;
  color: #333333;
  font-size: 0.95rem;
  line-height: 1.52;
}

.products {
  background: var(--white);
}

.products .section-heading {
  margin-bottom: 38px;
}

.product-gallery {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 32px;
}

.product-card {
  display: grid;
  justify-items: center;
  gap: 16px;
  text-align: center;
}

.product-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 1.43 / 1;
  object-fit: cover;
  border-radius: var(--radius);
}

.product-card h3 {
  padding-top: 2px;
}

.product-card p {
  max-width: 205px;
  margin-top: 0;
}

.audiences {
  padding-top: 42px;
  background: var(--white);
}

.audience-heading {
  margin-bottom: 24px;
}

.audience-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  min-height: 360px;
  background: linear-gradient(90deg, #fff5ec 0%, #fff9f2 48%, #f5fff0 100%);
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
}

.audience-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  align-items: flex-start;
  padding: 40px 48px 38px;
}

.audience-card-business {
  background: rgba(31, 122, 40, 0.06);
}

.audience-title-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.audience-icon {
  width: 66px;
  height: 66px;
  color: var(--white);
  background: linear-gradient(180deg, #ef2030 0%, var(--red) 100%);
  border: 1px solid rgba(169, 5, 18, 0.16);
  border-radius: 50%;
  box-shadow: 0 14px 24px rgba(217, 4, 22, 0.16);
}

.audience-icon svg {
  width: 35px;
  height: 35px;
}

.audience-card-business .audience-icon {
  background: linear-gradient(180deg, #2f9639 0%, var(--green) 100%);
  border-color: rgba(24, 61, 24, 0.12);
  box-shadow: 0 14px 24px rgba(31, 122, 40, 0.16);
}

.audience-card h3 {
  color: var(--red);
  font-size: clamp(1.55rem, 2vw, 2rem);
}

.audience-card-business h3 {
  color: var(--green);
}

.audience-card p {
  max-width: 330px;
  margin-top: 0;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 36px 0 34px;
  color: #333333;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 0.98rem;
  line-height: 1.35;
}

.check-icon {
  width: 22px;
  height: 22px;
  color: var(--red);
  background: rgba(217, 4, 22, 0.11);
  border: 1px solid rgba(217, 4, 22, 0.16);
  border-radius: 999px;
  transform: translateY(-1px);
}

.check-icon svg {
  width: 14px;
  height: 14px;
  stroke-width: 2.8;
}

.audience-card-business .check-icon {
  color: var(--green);
  background: rgba(31, 122, 40, 0.11);
  border-color: rgba(31, 122, 40, 0.16);
}

.audience-card .button {
  min-width: 260px;
  min-height: 64px;
  margin-top: auto;
}

.steps {
  padding-top: 42px;
  padding-bottom: 54px;
  background: var(--white);
}

.steps-heading {
  margin-bottom: 34px;
}

.steps-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 44px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.step-item {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: start;
  text-align: center;
}

.step-item + .step-item::before {
  position: absolute;
  top: 74px;
  left: calc(-50% + 52px);
  width: calc(100% - 104px);
  border-top: 2px dashed rgba(31, 122, 40, 0.2);
  content: "";
  pointer-events: none;
}

.step-number {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  color: var(--red);
  background: var(--white);
  border: 1px solid rgba(217, 4, 22, 0.16);
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(66, 40, 24, 0.08);
  font-size: 0.8rem;
  font-weight: 950;
  line-height: 1;
}

.step-item:first-child .step-number {
  color: var(--green);
  border-color: rgba(31, 122, 40, 0.18);
}

.step-icon {
  width: 78px;
  height: 78px;
  margin-bottom: 20px;
  color: var(--red);
  background: linear-gradient(180deg, #fff3f1 0%, #ffe4df 100%);
  border: 1px solid rgba(217, 4, 22, 0.12);
  border-radius: 999px;
  box-shadow: var(--shadow-icon), inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

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

.step-item:first-child .step-icon {
  color: var(--green);
  background: linear-gradient(180deg, #f3fff0 0%, #e2f8dc 100%);
  border-color: rgba(31, 122, 40, 0.14);
}

.step-item:nth-child(3) .step-icon {
  color: var(--green-dark);
  background: linear-gradient(180deg, #f6fff3 0%, #e8f7e4 100%);
  border-color: rgba(31, 122, 40, 0.12);
}

.step-item h3 {
  margin-top: 2px;
}

.step-item p {
  max-width: 230px;
  color: #333333;
}

.final-cta {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: #d90416 url("../images/cta-morangos.png") center / cover no-repeat;
}

.final-cta-inner {
  position: relative;
  min-height: 292px;
}

.final-cta-content {
  position: relative;
  z-index: 2;
  width: min(620px, 54%);
  padding: 42px 0 44px 68px;
}

.final-cta h2 {
  max-width: 570px;
  color: var(--white);
  font-size: clamp(2.3rem, 4vw, 3.05rem);
  line-height: 1.03;
}

.final-cta p {
  max-width: 600px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.96);
  font-size: 1rem;
  font-weight: 600;
}

.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 26px;
}

.footer-cta__button {
  width: min(100%, 340px);
  min-height: 70px;
  gap: 13px;
  padding: 18px 30px;
  border: 2px solid currentColor;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.2;
  text-decoration: none;
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.2s ease;
}

.footer-cta__button .button-icon,
.footer-cta__button .button-icon svg {
  color: currentColor;
}

.footer-cta__button .button-icon {
  width: 28px;
  height: 28px;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.08));
}

.footer-cta__button--home {
  color: var(--red);
  background-color: var(--white);
  border-color: var(--white);
}

.footer-cta__button--home:hover {
  color: var(--white);
  background-color: rgba(122, 0, 0, 0.12);
  border-color: var(--white);
}

.footer-cta__button--empresa {
  color: var(--white);
  background-color: transparent;
  border-color: var(--white);
}

.footer-cta__button--empresa:hover {
  color: var(--red);
  background-color: var(--white);
  border-color: var(--white);
}

.footer-cta__button:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: 4px;
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.2);
}

.top-bar {
  background: var(--green-dark);
  color: var(--white);
  font-size: 0.86rem;
}

.top-bar-inner {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.top-bar p,
.top-bar span {
  margin: 0;
}

.privacy-main {
  min-height: 58vh;
  background: linear-gradient(180deg, var(--white), var(--cream));
}

.privacy-content {
  max-width: 840px;
  padding: 38px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.privacy-content p {
  color: var(--muted);
}

.section-label {
  margin: 0 0 10px;
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.privacy-content .button {
  margin-top: 20px;
}

.site-footer {
  padding: 30px 0;
  color: rgba(255, 255, 255, 0.72);
  background: #211819;
}

.footer-inner {
  display: grid;
  gap: 16px;
}

.footer-brand small {
  color: var(--white);
}

.footer-brand small span:last-child {
  color: #ff5260;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer p {
  margin: 0;
}

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (max-width: 1220px) {
  .container {
    width: calc(100% - 64px);
  }

  .main-menu ul {
    gap: 32px;
  }

  .hero-grid {
    grid-template-columns: minmax(360px, 0.86fr) minmax(460px, 1.14fr);
  }

  .hero-content h1 {
    font-size: clamp(3.9rem, 6.4vw, 4.9rem);
  }

  .benefit-card {
    padding-inline: 28px;
  }

  .product-gallery {
    gap: 22px;
  }
}

@media (max-width: 980px) {
  :root {
    --header-height: 82px;
  }

  .container {
    width: calc(100% - 36px);
  }

  .header-inner {
    min-height: var(--header-height);
  }

  .brand {
    flex: 1 1 auto;
  }

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

  .brand small {
    font-size: 1rem;
  }

  .brand small span:last-child {
    font-size: 1.62rem;
  }

  .menu-toggle {
    display: inline-grid;
    width: 46px;
    height: 46px;
    place-items: center;
    padding: 10px;
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    cursor: pointer;
  }

  .menu-toggle span:not(.sr-only) {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--ink);
    border-radius: 999px;
  }

  .main-menu {
    position: fixed;
    inset: var(--header-height) 0 auto 0;
    display: grid;
    gap: 18px;
    padding: 22px 18px 28px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
    transform: translateY(-130%);
    transition: transform 0.24s ease;
  }

  .main-menu.is-open {
    transform: translateY(0);
  }

  .main-menu ul {
    display: grid;
    gap: 14px;
    margin: 0;
  }

  .header-cta {
    width: 100%;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 52px;
  }

  .hero-content {
    max-width: 680px;
    padding: 0 0 22px;
  }

  .hero-media {
    min-height: 420px;
    margin: 0 -18px;
  }

  .hero-media::before {
    display: none;
  }

  .hero-media img {
    min-height: 420px;
    border-radius: 0;
  }

  .benefits-grid,
  .product-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .benefit-card + .benefit-card {
    border-left: 0;
  }

  .benefit-card:nth-child(even) {
    border-left: 1px solid var(--line);
  }

  .audience-panel {
    grid-template-columns: 1fr;
  }

  .audience-card-business {
    order: 2;
  }

  .steps-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 38px 24px;
  }

  .step-item + .step-item::before {
    display: none;
  }

  .final-cta-content {
    width: min(620px, 62%);
    padding: 54px 0 24px;
  }
}

@media (max-width: 640px) {
  .container {
    width: calc(100% - 24px);
  }

  .section {
    padding: 42px 0;
  }

  .section-heading h2,
  .privacy-content h1 {
    font-size: 2rem;
  }

  .hero-grid {
    padding-top: 42px;
  }

  .hero-content h1 {
    font-size: clamp(3rem, 13vw, 4.1rem);
  }

  .hero-content p {
    margin-top: 24px;
    font-size: 1.1rem;
  }

  .hero-actions,
  .final-actions {
    display: grid;
    gap: 12px;
  }

  .hero-actions .button,
  .final-actions .button,
  .button {
    width: 100%;
    min-width: 0;
    white-space: normal;
  }

  .trust-list {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 34px;
  }

  .hero-media {
    min-height: 330px;
    margin-inline: -12px;
  }

  .hero-media img {
    min-height: 330px;
  }

  .benefits-grid,
  .product-gallery,
  .steps-list {
    grid-template-columns: 1fr;
  }

  .benefit-card,
  .benefit-card:nth-child(even) {
    min-height: auto;
    padding: 0 18px 26px;
    border-left: 0;
  }

  .benefit-card + .benefit-card {
    border-top: 1px solid var(--line);
    padding-top: 26px;
  }

  .audience-card {
    padding: 30px 22px;
  }

  .audience-title-row {
    align-items: flex-start;
  }

  .audience-icon {
    width: 58px;
    height: 58px;
  }

  .audience-icon svg {
    width: 31px;
    height: 31px;
  }

  .audience-card .button {
    width: 100%;
    min-width: 0;
  }

  .steps-list {
    gap: 32px;
  }

  .final-cta h2 {
    font-size: 2.2rem;
  }

  .final-cta {
    background-position: 45% center;
  }

  .final-cta-content {
    width: 100%;
    padding: 42px 0 46px;
  }

  .top-bar-inner,
  .privacy-nav {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }

  .privacy-content {
    padding: 24px;
  }
}
