:root {
  --color-ink: #170f0a;
  --color-copper: #a15317;
  --color-brown: #3a2116;
  --color-paper: #fbfaf6;
  --color-muted: #f3f3f3;
  --color-line: #d9d9d9;
  --color-whatsapp: #00af06;
  --shadow-card: 0 5px 6px rgba(0, 0, 0, 0.22);
  --shadow-soft: 0 8px 20px rgba(23, 15, 10, 0.12);
  --container: 1330px;
  --container-wide: 1460px;
  --container-narrow: 1180px;
  --fs-nav: clamp(0.8125rem, 0.78vw, 0.9375rem);
  --fs-small: clamp(0.8125rem, 0.76vw, 0.9375rem);
  --fs-body: clamp(0.9375rem, 0.82vw, 1.0625rem);
  --fs-card-title: clamp(1rem, 1.05vw, 1.25rem);
  --fs-section-title: clamp(1.75rem, 2.2vw, 2.5rem);
  --fs-hero-title: clamp(2rem, 4.1vw, 3.5rem);
  --fs-specialist-title: clamp(1.75rem, 2.45vw, 2.75rem);
  --fs-machine-title: clamp(1.75rem, 2.35vw, 2.625rem);
  --fs-lead: clamp(1rem, 1.22vw, 1.375rem);
  --fs-step-number: clamp(1.25rem, 1.5vw, 1.6875rem);
  --fs-stat-number: clamp(2rem, 2.5vw, 3rem);
  --fs-proof-line: clamp(1rem, 1.05vw, 1.125rem);
  --fs-faq-question: clamp(1rem, 1.2vw, 1.375rem);
  --fs-faq-answer: clamp(0.9375rem, 1.05vw, 1.25rem);
  --fs-final-title: clamp(1.75rem, 2.2vw, 2.375rem);
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

body {
  margin: 0;
  background: #ffffff;
  color: var(--color-ink);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overflow-wrap: break-word;
}

body.is-menu-open,
body.is-proposal-open {
  overflow: hidden;
}

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

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

button,
summary {
  font: inherit;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

.sr-only {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.site-shell {
  background: #ffffff;
  min-height: 100vh;
  overflow-x: hidden;
}

.section {
  position: relative;
  width: 100%;
}

.section[id] {
  scroll-margin-top: 112px;
}

.section-inner {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

.js-enabled .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 720ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.js-enabled .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js-enabled .reveal--fade {
  transform: none;
}

.js-enabled .reveal--scale {
  transform: scale(0.975);
}

.js-enabled .reveal--scale.is-visible {
  transform: scale(1);
}

.js-enabled .site-header {
  animation: header-enter 620ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes header-enter {
  from {
    opacity: 0;
    transform: translate(-50%, -12px);
  }

  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .js-enabled .reveal,
  .js-enabled .reveal.is-visible,
  .js-enabled .reveal--scale,
  .js-enabled .reveal--scale.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .js-enabled .site-header {
    animation: none;
  }
}

.site-header {
  align-items: center;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 999px;
  box-shadow: none;
  display: flex;
  height: 84px;
  left: 50%;
  max-width: 1200px;
  padding: 0;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  transition:
    top 220ms ease;
  width: 100%;
  z-index: 45;
}

.site-header > * {
  position: relative;
  z-index: 1;
}

.site-header.is-floating {
  position: fixed;
  top: 18px;
}

.site-header::before {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(58, 33, 22, 0.08);
  border-radius: 999px;
  box-shadow: 0 14px 36px rgba(23, 15, 10, 0.13);
  content: "";
  inset: 0 -32px;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transition: opacity 220ms ease;
  z-index: -1;
}

.site-header.is-floating::before {
  opacity: 1;
}

.brand-link img {
  height: auto;
  width: 188px;
}

.main-nav {
  align-items: center;
  display: flex;
  gap: 64px;
  margin-left: 150px;
}

.site-header .button {
  margin-left: auto;
}

.menu-toggle {
  align-items: center;
  background: var(--color-ink);
  border: 0;
  border-radius: 999px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.18);
  cursor: pointer;
  display: none;
  flex: 0 0 48px;
  flex-direction: column;
  gap: 5px;
  height: 40px;
  justify-content: center;
  margin-left: auto;
  padding: 0;
  transition: background-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
  width: 48px;
}

.menu-toggle span:not(.sr-only) {
  background: #ffffff;
  border-radius: 999px;
  display: block;
  height: 2px;
  transition: transform 180ms ease, width 180ms ease;
  width: 20px;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  background: #25170f;
  box-shadow: 0 9px 18px rgba(23, 15, 10, 0.24);
  transform: translateY(-1px);
}

.mobile-menu-backdrop {
  background: rgba(23, 15, 10, 0.36);
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  transition: opacity 220ms ease;
  z-index: 50;
}

.mobile-canvas {
  background: var(--color-paper);
  box-shadow: -18px 0 40px rgba(23, 15, 10, 0.18);
  display: flex;
  flex-direction: column;
  gap: 34px;
  height: 100dvh;
  max-width: 420px;
  padding: 28px 4vw 32px;
  position: fixed;
  right: 0;
  top: 0;
  transform: translateX(105%);
  transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1);
  width: min(420px, 88vw);
  z-index: 60;
}

.is-menu-open .mobile-menu-backdrop {
  opacity: 1;
  pointer-events: auto;
}

.is-menu-open .mobile-canvas {
  transform: translateX(0);
}

.mobile-canvas__header {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.mobile-canvas__header .brand-link img {
  width: 154px;
}

.menu-close {
  align-items: center;
  background: var(--color-ink);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  height: 40px;
  justify-content: center;
  padding: 0;
  position: relative;
  transition: background-color 180ms ease, transform 180ms ease;
  width: 40px;
}

.menu-close span {
  background: #ffffff;
  border-radius: 999px;
  height: 2px;
  position: absolute;
  width: 18px;
}

.menu-close span:first-child {
  transform: rotate(45deg);
}

.menu-close span:last-child {
  transform: rotate(-45deg);
}

.menu-close:hover,
.menu-close:focus-visible {
  background: #25170f;
  transform: translateY(-1px);
}

.mobile-nav {
  display: grid;
  gap: 6px;
}

.mobile-nav a {
  border-bottom: 1px solid rgba(23, 15, 10, 0.12);
  font-size: clamp(1.125rem, 2.2vw, 1.375rem);
  font-weight: 600;
  line-height: 1.2;
  padding: 18px 0;
  transition: color 180ms ease, padding-left 180ms ease;
}

.mobile-nav a:hover,
.mobile-nav a:focus-visible {
  color: var(--color-copper);
  padding-left: 6px;
}

.mobile-canvas__cta {
  margin-top: auto;
  width: 100%;
}

.proposal-modal {
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  transition: opacity 220ms ease;
  z-index: 60;
}

.proposal-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.proposal-modal__backdrop {
  background: rgba(23, 15, 10, 0.56);
  inset: 0;
  position: absolute;
}

.proposal-modal__panel {
  background: #fffdf8;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(23, 15, 10, 0.32);
  left: 50%;
  max-height: calc(100vh - 48px);
  max-width: 720px;
  overflow-y: auto;
  padding: 34px;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -46%);
  transition: transform 220ms ease;
  width: min(calc(100% - 32px), 720px);
}

.proposal-modal.is-open .proposal-modal__panel {
  transform: translate(-50%, -50%);
}

.proposal-modal__close {
  align-items: center;
  background: var(--color-ink);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  height: 38px;
  justify-content: center;
  position: absolute;
  right: 18px;
  top: 18px;
  transition: background-color 180ms ease, transform 180ms ease;
  width: 38px;
}

.proposal-modal__close span {
  background: #ffffff;
  border-radius: 999px;
  height: 2px;
  position: absolute;
  width: 16px;
}

.proposal-modal__close span:first-child {
  transform: rotate(45deg);
}

.proposal-modal__close span:last-child {
  transform: rotate(-45deg);
}

.proposal-modal__close:hover,
.proposal-modal__close:focus-visible {
  background: var(--color-copper);
  transform: translateY(-1px);
}

.proposal-modal__intro {
  max-width: 560px;
  padding-right: 42px;
}

.proposal-modal__intro span {
  color: var(--color-copper);
  display: block;
  font-size: var(--fs-small);
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.proposal-modal__intro h2 {
  font-size: clamp(1.625rem, 2.2vw, 2.25rem);
  line-height: 1.08;
  margin: 0;
}

.proposal-modal__intro p {
  color: rgba(23, 15, 10, 0.72);
  font-size: var(--fs-body);
  line-height: 1.5;
  margin: 14px 0 0;
}

.proposal-form {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 28px;
}

.proposal-form label {
  display: grid;
  gap: 8px;
}

.proposal-form label span {
  font-size: var(--fs-small);
  font-weight: 700;
}

.proposal-form label strong {
  color: var(--color-copper);
}

.proposal-form input,
.proposal-form select,
.proposal-form textarea {
  background: #ffffff;
  border: 1px solid rgba(58, 33, 22, 0.2);
  border-radius: 8px;
  color: var(--color-ink);
  font: inherit;
  min-height: 48px;
  outline: 0;
  padding: 12px 14px;
  transition: border-color 180ms ease, box-shadow 180ms ease;
  width: 100%;
}

.proposal-form textarea {
  min-height: 112px;
  resize: vertical;
}

.proposal-form__consent {
  align-items: flex-start;
  display: grid;
  gap: 9px;
  grid-template-columns: 16px minmax(0, 1fr);
  margin-top: -2px;
}

.proposal-form__consent input {
  accent-color: var(--color-copper);
  height: 16px;
  margin: 3px 0 0;
  min-height: 0;
  padding: 0;
  width: 16px;
}

.proposal-form__consent span {
  color: rgba(23, 15, 10, 0.62);
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.4;
  max-width: 600px;
}

.proposal-form__consent a {
  color: var(--color-copper);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.proposal-form input:focus,
.proposal-form select:focus,
.proposal-form textarea:focus {
  border-color: var(--color-copper);
  box-shadow: 0 0 0 4px rgba(161, 83, 23, 0.12);
}

.proposal-form__full,
.proposal-form__submit,
.proposal-form__status {
  grid-column: 1 / -1;
}

.proposal-form__submit {
  justify-self: start;
  margin-top: 4px;
  position: relative;
}

.proposal-form__submit:disabled {
  cursor: wait;
  opacity: 0.78;
  transform: none;
}

.proposal-form.is-submitting .proposal-form__submit img {
  display: none;
}

.proposal-form.is-submitting .proposal-form__submit::after {
  animation: proposal-submit-spin 850ms linear infinite;
  border: 2px solid rgba(255, 255, 255, 0.38);
  border-top-color: #ffffff;
  border-radius: 999px;
  content: "";
  display: block;
  height: 18px;
  width: 18px;
}

.proposal-form__status {
  color: rgba(23, 15, 10, 0.72);
  font-size: var(--fs-small);
  font-weight: 700;
  line-height: 1.35;
  margin: -4px 0 0;
  min-height: 19px;
}

.cookie-banner {
  bottom: 18px;
  left: 50%;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  transform: translate(-50%, 16px);
  transition: opacity 220ms ease, transform 220ms ease;
  width: min(calc(100% - 32px), 860px);
  z-index: 55;
}

.cookie-banner.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.cookie-banner__content {
  align-items: center;
  background: #fffdf8;
  border: 1px solid rgba(58, 33, 22, 0.12);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(23, 15, 10, 0.2);
  display: grid;
  gap: 20px;
  grid-template-columns: 30px minmax(0, 1fr) auto;
  padding: 16px 16px 16px 20px;
}

.cookie-banner__icon {
  font-size: 1.375rem;
  line-height: 1;
  text-align: center;
}

.cookie-banner__actions {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
  gap: 12px;
}

.cookie-banner p {
  color: rgba(23, 15, 10, 0.72);
  font-size: 0.875rem;
  line-height: 1.45;
  margin: 0;
}

.cookie-banner p a {
  color: var(--color-copper);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner__button {
  flex: 0 0 auto;
  min-height: 42px;
  min-width: 118px;
  padding: 10px 22px;
}

.cookie-banner__button--secondary {
  background: transparent;
  border: 1px solid rgba(23, 15, 10, 0.16);
  border-radius: 999px;
  color: rgba(23, 15, 10, 0.52);
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 600;
  min-height: 42px;
  min-width: 104px;
  padding: 10px 18px;
  transition: border-color 180ms ease, color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.cookie-banner__button--secondary:hover,
.cookie-banner__button--secondary:focus-visible {
  background: rgba(23, 15, 10, 0.03);
  border-color: rgba(23, 15, 10, 0.26);
  color: var(--color-copper);
  outline: 0;
  transform: translateY(-1px);
}

.back-to-top {
  align-items: center;
  background: var(--color-ink);
  border: 0;
  border-radius: 999px;
  bottom: 28px;
  box-shadow: 0 12px 28px rgba(23, 15, 10, 0.24);
  cursor: pointer;
  display: inline-flex;
  height: 48px;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  right: 28px;
  transform: translateY(14px);
  transition: opacity 220ms ease, transform 220ms ease, background-color 180ms ease;
  width: 48px;
  z-index: 54;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top span {
  border-left: 3px solid #ffffff;
  border-top: 3px solid #ffffff;
  height: 12px;
  transform: translateY(3px) rotate(45deg);
  width: 12px;
}

.back-to-top:hover,
.back-to-top:focus-visible {
  background: var(--color-copper);
  outline: 0;
  transform: translateY(-2px);
}

@keyframes proposal-submit-spin {
  to {
    transform: rotate(360deg);
  }
}

.main-nav a {
  font-size: var(--fs-nav);
  line-height: 20px;
  position: relative;
  transition: color 180ms ease, transform 180ms ease;
}

.main-nav a::after {
  background: var(--color-copper);
  border-radius: 999px;
  content: "";
  height: 1.5px;
  left: 0;
  position: absolute;
  top: 24px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  width: 100%;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--color-copper);
  transform: translateY(-1px);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.button {
  align-items: center;
  border-radius: 32px;
  display: inline-flex;
  gap: 16px;
  justify-content: center;
  min-height: 45px;
  max-width: 100%;
  padding: 0 25px;
  transition: background-color 180ms ease, box-shadow 180ms ease, color 180ms ease, transform 180ms ease;
  white-space: nowrap;
}

.button img {
  flex: 0 0 auto;
  height: auto;
  transition: transform 220ms ease;
  width: 25px;
}

.button-label {
  min-width: 0;
}

.button--dark {
  background: var(--color-ink);
  color: #ffffff;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.button--dark:hover,
.button--dark:focus-visible {
  background: #25170f;
  box-shadow: 0 9px 18px rgba(23, 15, 10, 0.25);
  transform: translateY(-2px);
}

.button--dark:hover img,
.button--dark:focus-visible img {
  transform: translateX(5px);
}

.button--light {
  background: var(--color-paper);
  box-shadow: var(--shadow-soft);
  color: var(--color-ink);
}

.button--light:hover,
.button--light:focus-visible {
  color: var(--color-copper);
  transform: translateY(-2px);
}

.button--small {
  font-size: var(--fs-nav);
  min-height: 36px;
  padding: 0 32px;
}

.button--whatsapp {
  background: var(--color-paper);
  border: 2px solid var(--color-whatsapp);
  color: var(--color-ink);
  min-width: 286px;
  padding-left: 20px;
  padding-right: 24px;
}

.button--whatsapp:hover,
.button--whatsapp:focus-visible {
  box-shadow: 0 9px 18px rgba(0, 175, 6, 0.14);
  transform: translateY(-2px);
}

.whatsapp-icon {
  display: grid;
  flex: 0 0 32px;
  height: 32px;
  min-width: 32px;
  place-items: center;
  position: relative;
  width: 32px;
}

.whatsapp-icon img {
  grid-area: 1 / 1;
  width: 32px;
}

.whatsapp-icon img:nth-child(2) {
  width: 16px;
}

.hero-section {
  background: #f4f4f4;
  min-height: 954px;
  overflow: hidden;
}

.hero-section picture {
  display: contents;
}

.hero-bg {
  filter: drop-shadow(0 4px 19px rgba(0, 0, 0, 0.25));
  height: 954px;
  inset: 0;
  object-fit: cover;
  object-position: center top;
  position: absolute;
  width: 100%;
  z-index: 0;
}

.hero-layout {
  align-items: flex-start;
  display: flex;
  min-height: 860px;
  padding-top: 252px;
  position: relative;
  z-index: 1;
}

.hero-section .section-inner {
  max-width: 1188px;
}

.hero-copy {
  max-width: 650px;
}

.hero-copy h1 {
  font-size: var(--fs-hero-title);
  letter-spacing: 0;
  line-height: 70px;
  margin: 0;
}

.hero-copy h1,
.problem-section h2,
.section-copy h2,
.specialist-copy h2,
.process-section h2,
.section-heading h2,
.proof-section h2,
.faq-section h2,
.final-cta-copy h2,
.info-card h3,
.benefit-card h3,
.machine-card h3 {
  text-wrap: balance;
}

.hero-copy h1 span {
  color: var(--color-copper);
}

.hero-actions {
  align-items: center;
  display: flex;
  gap: 22px;
  margin-top: 70px;
}

.hero-metrics {
  background: rgba(255, 252, 247, 0.92);
  border: 1px solid rgba(58, 33, 22, 0.12);
  border-radius: 14px;
  display: grid;
  gap: 18px 42px;
  grid-template-columns: repeat(2, max-content);
  list-style: none;
  margin-top: 48px;
  padding: 16px 18px;
  width: fit-content;
}

.hero-metrics li {
  align-items: center;
  color: rgba(23, 15, 10, 0.82);
  display: flex;
  font-size: var(--fs-small);
  font-weight: 600;
  gap: 14px;
}

.hero-metrics img {
  height: 24px;
  width: 24px;
}

.problem-section {
  background: #f4f4f4;
  padding: 92px 0 100px;
}

.problem-section .section-inner {
  width: min(var(--container-wide), calc(100% - 48px));
}

.problem-section h2,
.process-section h2,
.proof-section h2,
.faq-section h2 {
  font-size: var(--fs-section-title);
  line-height: 46px;
  margin: 0;
  text-align: center;
}

.problem-section h2 span,
.proof-section h2 span {
  color: var(--color-copper);
}

.problem-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 70px;
}

.info-card,
.benefit-card,
.step-card {
  background: var(--color-paper);
  border: 1px solid var(--color-line);
  border-radius: 8px;
  box-shadow: var(--shadow-card);
  min-width: 0;
}

.info-card {
  min-height: 249px;
  padding: 24px 26px 30px;
}

.card-icon {
  height: 44px;
  margin-bottom: 40px;
  object-fit: contain;
  object-position: left center;
  width: 44px;
}

.info-card h3 {
  font-size: var(--fs-card-title);
  line-height: 23px;
  margin: 0 0 18px;
}

.info-card p,
.benefit-card p,
.section-copy p,
.machine-card p,
.specialist-copy p,
.faq-item p,
.final-cta-copy p {
  font-size: var(--fs-body);
  line-height: 20px;
  margin: 0;
}

.service-section {
  background: var(--color-paper);
  padding: 106px 0 110px;
}

.service-layout {
  align-items: center;
  display: grid;
  gap: 92px;
  grid-template-columns: 340px 1fr;
}

.section-copy h2 {
  font-size: var(--fs-section-title);
  line-height: 46px;
  margin: 0 0 18px;
}

.section-copy p {
  margin-bottom: 38px;
}

.benefit-grid {
  display: grid;
  gap: 23px 18px;
  grid-template-columns: repeat(2, 1fr);
}

.benefit-card {
  min-height: 97px;
  padding: 20px 24px 20px 54px;
  position: relative;
}

.benefit-card img {
  height: 18px;
  left: 24px;
  object-fit: contain;
  position: absolute;
  top: 22px;
  width: 18px;
}

.benefit-card h3 {
  font-size: var(--fs-card-title);
  line-height: 23px;
  margin: 0 0 11px;
}

.specialist-section {
  background: #f4f4f4;
  padding: 118px 0 118px;
}

.specialist-layout {
  align-items: center;
  display: grid;
  gap: clamp(56px, 6vw, 86px);
  grid-template-columns: minmax(420px, 0.95fr) minmax(0, 1fr);
}

.specialist-image {
  aspect-ratio: 588 / 590;
  border-radius: 22px;
  height: auto;
  max-width: 588px;
  object-fit: cover;
  width: 100%;
}

.specialist-copy h2 {
  font-size: clamp(1.45rem, 2.25vw, 2.25rem);
  line-height: 1.08;
  margin: 0 0 10px;
  max-width: none;
}

.specialist-copy .specialist-subtitle {
  color: var(--color-copper);
  font-size: clamp(1.25rem, 2vw, 2rem);
  font-weight: 700;
  line-height: 1.12;
  max-width: none;
  margin: 0 0 48px;
  text-wrap: balance;
}

.text-list {
  display: grid;
  gap: 38px;
}

.text-list-title {
  align-items: center;
  display: flex;
  gap: 14px;
  margin-bottom: 14px;
}

.text-list-title img {
  height: 24px;
  width: 24px;
}

.text-list-title h3 {
  font-size: clamp(1rem, 1vw, 1.1875rem);
  line-height: 22px;
  margin: 0;
}

.process-section {
  background: var(--color-paper);
  padding: 112px 0 102px;
}

.process-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 72px;
}

.step-card {
  background: #f3f3f3;
  min-height: 151px;
  padding: 20px 22px 24px;
  transition: background-color 180ms ease, transform 180ms ease;
}

.step-card:hover {
  background: var(--color-paper);
  transform: translateY(-2px);
}

.step-heading {
  align-items: center;
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
}

.step-heading span {
  align-items: center;
  background: var(--color-brown);
  border-radius: 8px;
  color: #ffffff;
  display: inline-flex;
  font-size: var(--fs-step-number);
  font-weight: 700;
  height: 41px;
  justify-content: center;
  line-height: 32px;
  min-width: 48px;
}

.step-heading h3,
.machine-card h3 {
  font-size: var(--fs-body);
  line-height: 22px;
  margin: 0;
}

.step-card p {
  font-size: clamp(0.8125rem, 0.76vw, 0.875rem);
  line-height: 19px;
  margin: 0;
}

.process-cta {
  display: flex;
  justify-content: center;
  margin-top: 42px;
}

.machines-section {
  background: var(--color-paper);
  padding: 92px 0 94px;
}

.machines-section .section-inner {
  max-width: 1060px;
}

.section-heading {
  margin: 0 auto;
  max-width: 820px;
  text-align: center;
}

.section-heading h2 {
  font-size: var(--fs-machine-title);
  line-height: 48px;
  margin: 0 0 24px;
}

.section-heading p {
  color: #666666;
  font-size: clamp(0.9375rem, 1vw, 1rem);
  line-height: 1.65;
  margin: 0;
}

.machine-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 56px;
}

.machine-card {
  background: #ffffff;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-width: 0;
}

.machine-card-image {
  height: 210px;
  overflow: hidden;
  width: 100%;
}

.machine-card-image img {
  display: block;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
  width: 100%;
}

.machine-card:hover .machine-card-image img,
.machine-card:focus-within .machine-card-image img {
  transform: scale(1.045);
}

.machine-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px 22px 26px;
}

.machine-card-body > span {
  align-items: center;
  align-self: flex-start;
  background: #f0ece7;
  border-radius: 100px;
  color: #666666;
  display: inline-flex;
  font-size: clamp(0.75rem, 0.82vw, 0.8125rem);
  line-height: 1;
  margin-bottom: 14px;
  min-height: 29px;
  padding: 0 13px;
  white-space: nowrap;
}

.machine-card p {
  color: #555555;
  flex: 1;
  font-size: clamp(0.875rem, 0.9vw, 0.9375rem);
  line-height: 1.65;
  margin-bottom: 20px;
  margin-top: 14px;
  min-height: 0;
}

.machine-card ul {
  border-top: 1px solid #ebebeb;
  color: #444444;
  font-size: clamp(0.8125rem, 0.82vw, 0.875rem);
  line-height: 2;
  margin: auto 0 0;
  padding: 18px 0 0 18px;
}

.machines-cta {
  display: flex;
  justify-content: center;
  margin: 70px auto 0;
}

.proof-section {
  background: #f4f4f4;
  padding: 72px 0 80px;
}

.proof-section h2 {
  font-size: clamp(25px, 1.9vw, 32px);
  line-height: 1.22;
  margin-inline: auto;
  max-width: 880px;
}

.proof-section h2 span {
  display: block;
  font-size: clamp(22px, 1.7vw, 28px);
  margin-top: 8px;
}

.stats-grid {
  background: var(--color-paper);
  border: 1px solid #bdbdbd;
  border-radius: 12px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 46px auto 34px;
  max-width: 1246px;
  overflow: hidden;
}

.stats-grid div {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 140px;
  padding: 22px 18px;
}

.stats-grid div + div {
  border-left: 1px solid #bdbdbd;
}

.stats-grid strong {
  font-size: var(--fs-stat-number);
  line-height: 54px;
  text-align: center;
}

.stats-grid span {
  font-size: var(--fs-body);
  line-height: 22px;
  max-width: 210px;
  text-align: center;
}

.proof-list {
  display: grid;
  gap: 16px;
  list-style: none;
  margin: 0 auto;
  max-width: 898px;
}

.proof-list li {
  align-items: center;
  background: #d9d9d9;
  display: grid;
  grid-template-columns: 40px 1fr 40px;
  font-size: var(--fs-proof-line);
  line-height: 22px;
  min-height: 41px;
  padding: 7px 10px;
  text-align: center;
}

.proof-list img {
  justify-self: start;
  height: 15px;
  width: 23px;
}

.proof-list span {
  grid-column: 2;
  white-space: normal;
}

.faq-section {
  background: #ffffff;
  padding: 108px 0 96px;
}

.faq-inner {
  max-width: 966px;
}

.faq-accordion {
  margin-top: 92px;
}

.faq-item {
  border-bottom: 1px solid #e5e5e5;
  overflow: clip;
}

.faq-item summary {
  align-items: center;
  cursor: pointer;
  display: flex;
  font-size: var(--fs-faq-question);
  font-weight: 600;
  justify-content: space-between;
  line-height: 26px;
  min-height: 61px;
  padding: 18px 32px 17px 0;
}

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

.faq-item summary::after {
  border-bottom: 4px solid #757575;
  border-right: 4px solid #757575;
  content: "";
  flex: 0 0 auto;
  height: 9px;
  margin-left: 32px;
  margin-right: 4px;
  transform: rotate(45deg);
  transition: transform 180ms ease;
  width: 9px;
}

.faq-item.is-expanded summary::after {
  transform: rotate(225deg);
}

.faq-item p {
  font-size: var(--fs-faq-answer);
  line-height: 23px;
  margin: -2px 52px 20px 0;
}

.faq-item[open] p {
  animation: faq-answer-in 320ms ease both;
}

@keyframes faq-answer-in {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.final-cta-section {
  background: var(--color-paper);
  padding: 168px 0 72px;
  overflow: hidden;
}

.final-cta-section::before {
  background: #ffffff;
  clip-path: polygon(
    0 0,
    100% 0,
    100% 53%,
    92% 40%,
    82% 30%,
    72% 23%,
    62% 24%,
    52% 31%,
    42% 42%,
    31% 50%,
    20% 45%,
    9% 30%,
    0 8%
  );
  content: "";
  height: 150px;
  left: 0;
  position: absolute;
  top: -1px;
  width: 100%;
}

.final-cta-section .section-inner {
  max-width: 1260px;
}

.final-cta-layout {
  align-items: start;
  display: grid;
  gap: 62px;
  grid-template-columns: minmax(0, 640px) 587px;
  position: relative;
  z-index: 1;
}

.final-cta-copy h2 {
  font-size: var(--fs-final-title);
  line-height: 46px;
  margin: 0 0 36px;
}

.final-cta-copy p {
  color: var(--color-copper);
  font-size: var(--fs-lead);
  font-weight: 600;
  line-height: 24px;
  max-width: 610px;
}

.final-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 24px 32px;
  margin-top: 62px;
}

.final-cta-image {
  border-radius: 17px;
  height: 392px;
  margin-top: -36px;
  object-fit: cover;
  width: 587px;
}

.site-footer {
  background: var(--color-paper);
  padding: 32px 0 28px;
}

.site-footer .section-inner {
  max-width: 1180px;
}

.footer-inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.footer-inner img {
  width: 155px;
}

.footer-inner p {
  font-size: var(--fs-small);
  line-height: 20px;
  margin: 0;
}

.footer-inner a {
  transition: color 180ms ease;
}

.footer-inner a:hover,
.footer-inner a:focus-visible {
  color: #ff7f00;
}

.privacy-page {
  background: var(--color-paper);
  overflow-x: visible;
}

.privacy-body {
  overflow-x: visible;
}

.privacy-hero {
  background:
    linear-gradient(90deg, rgba(251, 250, 246, 0.98) 0%, rgba(251, 250, 246, 0.88) 58%, rgba(251, 250, 246, 0.62) 100%),
    url("assets/images/hero-office-coffee.avif") center / cover no-repeat;
  min-height: 430px;
  padding: 150px 0 76px;
}

.privacy-hero .section-inner {
  max-width: 980px;
}

.privacy-hero span {
  color: var(--color-copper);
  display: block;
  font-size: var(--fs-small);
  font-weight: 700;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.privacy-hero h1 {
  color: var(--color-ink);
  font-size: clamp(2.25rem, 4vw, 4rem);
  line-height: 1.06;
  margin: 0;
}

.privacy-hero p {
  color: rgba(23, 15, 10, 0.76);
  font-size: var(--fs-lead);
  line-height: 1.58;
  margin: 22px 0 0;
  max-width: 720px;
}

.privacy-hero small {
  color: rgba(23, 15, 10, 0.58);
  display: block;
  font-size: var(--fs-small);
  font-weight: 600;
  margin-top: 20px;
}

.privacy-content {
  background: #ffffff;
  padding: 78px 0 92px;
}

.privacy-layout {
  align-items: start;
  display: grid;
  gap: 56px;
  grid-template-columns: 320px minmax(0, 1fr);
}

.privacy-summary {
  align-self: start;
  background: #fffdf8;
  border: 1px solid rgba(58, 33, 22, 0.1);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  padding: 24px;
  position: sticky;
  top: 136px;
}

.privacy-summary strong {
  color: var(--color-copper);
  display: block;
  font-size: var(--fs-card-title);
  line-height: 1.25;
  margin-bottom: 12px;
}

.privacy-summary p {
  color: rgba(23, 15, 10, 0.72);
  font-size: var(--fs-body);
  line-height: 1.62;
  margin: 0;
}

.privacy-article {
  display: grid;
  gap: 28px;
}

.privacy-article article {
  border-bottom: 1px solid rgba(58, 33, 22, 0.1);
  padding-bottom: 28px;
}

.privacy-article article:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.privacy-article h2 {
  color: var(--color-ink);
  font-size: clamp(1.25rem, 1.45vw, 1.625rem);
  line-height: 1.2;
  margin: 0 0 12px;
}

.privacy-article p {
  color: rgba(23, 15, 10, 0.74);
  font-size: var(--fs-body);
  line-height: 1.72;
  margin: 0;
}

@media (min-width: 1201px) and (max-width: 1366px) {
  .section-inner,
  .hero-section .section-inner,
  .problem-section .section-inner,
  .machines-section .section-inner,
  .final-cta-section .section-inner,
  .site-footer .section-inner {
    max-width: 1100px;
    width: 1100px;
  }

  .site-header {
    max-width: 1100px;
  }

  .specialist-copy h2 {
    font-size: 2rem;
    white-space: nowrap;
  }

  .final-cta-layout {
    gap: 40px;
    grid-template-columns: 540px 520px;
  }

  .final-cta-copy h2 {
    line-height: 40px;
  }

  .final-cta-copy p {
    max-width: 540px;
  }

  .final-actions {
    flex-wrap: wrap;
    gap: 18px 24px;
    max-width: 540px;
    width: 100%;
  }

  .final-actions .button {
    gap: 12px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .final-actions .button--whatsapp {
    min-width: 286px;
  }

  .final-cta-image {
    height: 347px;
    width: 520px;
  }
}

@media (max-width: 1200px) {
  .section-inner,
  .hero-section .section-inner,
  .problem-section .section-inner,
  .machines-section .section-inner,
  .final-cta-section .section-inner,
  .site-footer .section-inner {
    max-width: none;
    padding-left: 4vw;
    padding-right: 4vw;
    width: 100%;
  }

  .site-header {
    align-items: center;
    gap: 28px;
    height: 84px;
    justify-content: space-between;
    max-width: none;
    padding-left: 4vw;
    padding-right: 4vw;
    width: 100%;
  }

  .site-header.is-floating {
    background: rgba(255, 255, 255, 0.96);
    border-color: rgba(58, 33, 22, 0.08);
    box-shadow: 0 14px 36px rgba(23, 15, 10, 0.13);
    padding-left: 4vw;
    padding-right: 4vw;
    top: 14px;
    width: calc(100% - 32px);
  }

  .site-header::before {
    display: none;
  }

  .main-nav,
  .site-header > .button--small {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .mobile-canvas__cta {
    width: 100%;
  }

  .hero-copy,
  .section-copy,
  .specialist-copy,
  .final-cta-copy,
  .section-heading,
  .faq-inner,
  .problem-grid,
  .benefit-grid,
  .process-grid,
  .machine-grid,
  .stats-grid,
  .proof-list,
  .final-actions {
    max-width: 100%;
    min-width: 0;
    width: 100%;
  }

  .hero-layout {
    justify-content: center;
  }

  .hero-copy {
    max-width: 820px;
    text-align: center;
  }

  .hero-copy h1 {
    font-size: var(--fs-hero-title);
    line-height: 1.15;
  }

  .hero-actions {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-metrics {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-metrics li {
    justify-content: center;
  }

  .hero-metrics li:nth-child(3) {
    grid-column: 1 / -1;
    justify-self: center;
  }

  .service-layout,
  .specialist-layout,
  .final-cta-layout {
    justify-items: center;
    grid-template-columns: 1fr;
  }

  .service-layout {
    gap: 58px;
  }

  .section-copy {
    max-width: 680px;
    text-align: center;
  }

  .section-copy .button {
    margin-left: auto;
    margin-right: auto;
  }

  .benefit-grid {
    max-width: 1000px;
  }

  .specialist-layout {
    gap: 56px;
  }

  .specialist-image {
    aspect-ratio: 588 / 590;
    height: auto;
    max-width: 680px;
    width: 100%;
  }

  .specialist-copy {
    max-width: 820px;
    text-align: center;
  }

  .specialist-copy h2,
  .specialist-copy .specialist-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .specialist-copy .text-list {
    margin-left: auto;
    margin-right: auto;
    max-width: 860px;
    text-align: left;
  }

  .final-cta-layout {
    gap: 48px;
    text-align: center;
  }

  .final-cta-copy {
    max-width: 760px;
  }

  .final-actions {
    justify-content: center;
  }

  .final-cta-image {
    height: auto;
    aspect-ratio: 587 / 392;
    margin-top: 0;
    max-width: 720px;
    width: 100%;
  }

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

  .privacy-header .main-nav {
    display: flex;
    gap: 34px;
    margin-left: auto;
  }

  .privacy-header .button {
    display: inline-flex;
    margin-left: 28px;
  }

  .privacy-layout {
    gap: 36px;
    grid-template-columns: 1fr;
  }

  .privacy-summary {
    position: static;
    top: auto;
  }
}

@media (max-width: 820px) {
  .section[id] {
    scroll-margin-top: 104px;
  }

  .section-inner,
  .hero-section .section-inner,
  .problem-section .section-inner,
  .machines-section .section-inner,
  .final-cta-section .section-inner,
  .site-footer .section-inner {
    max-width: none;
    padding-left: 4vw;
    padding-right: 4vw;
    width: 100%;
  }

  .site-header {
    align-items: center;
    flex-direction: row;
    gap: 16px;
    height: 76px;
    justify-content: space-between;
    left: 50%;
    max-width: none;
    padding-left: 4vw;
    padding-right: 4vw;
    padding-top: 0;
    transform: translateX(-50%);
    width: 100%;
  }

  .site-header.is-floating {
    background: rgba(255, 255, 255, 0.96);
    border-color: rgba(58, 33, 22, 0.08);
    box-shadow: 0 14px 36px rgba(23, 15, 10, 0.13);
    padding-left: 4vw;
    padding-right: 4vw;
    position: fixed;
    top: 12px;
    width: calc(100% - 24px);
  }

  .site-header::before {
    display: none;
  }

  .site-header .brand-link {
    flex: 0 0 auto;
  }

  .site-header .menu-toggle {
    margin-left: auto;
  }

  .brand-link img {
    width: 150px;
  }

  .main-nav {
    display: none;
  }

  .hero-section,
  .hero-bg {
    min-height: 830px;
  }

  .hero-layout {
    min-height: 780px;
    padding-top: 180px;
    width: 100%;
  }

  .hero-copy,
  .hero-actions,
  .hero-metrics,
  .problem-section h2,
  .problem-grid,
  .info-card,
  .service-layout,
  .section-copy,
  .benefit-grid,
  .benefit-card,
  .specialist-layout,
  .specialist-copy,
  .text-list,
  .process-grid,
  .step-card,
  .machine-grid,
  .machine-card,
  .stats-grid,
  .proof-list,
  .faq-inner,
  .faq-accordion,
  .final-cta-layout,
  .final-cta-copy,
  .final-actions,
  .final-cta-image {
    max-width: 100% !important;
    min-width: 0 !important;
    width: 100% !important;
  }

  .hero-copy h1,
  .section-heading h2,
  .final-cta-copy h2 {
    font-size: var(--fs-final-title);
    line-height: 1.15;
  }

  .hero-actions,
  .final-actions {
    align-items: center;
    flex-direction: column;
    gap: 18px;
    max-width: 100%;
    width: 100%;
  }

  .button {
    display: inline-grid;
    grid-auto-flow: column;
    grid-template-columns: minmax(0, 1fr) auto;
    justify-content: center;
    line-height: 1.25;
    min-width: 0;
    padding: 12px 18px;
    text-align: center;
    white-space: normal;
    width: fit-content;
  }

  .button-label {
    min-width: 0;
    overflow-wrap: break-word;
    white-space: normal;
  }

  .button--light,
  .site-header .button {
    grid-template-columns: minmax(0, 1fr);
  }

  .button--whatsapp {
    grid-template-columns: 32px minmax(0, 1fr) 32px;
  }

  .button--whatsapp::after {
    content: "";
    display: block;
    height: 1px;
    width: 32px;
  }

  .button--whatsapp .button-label {
    text-align: center;
  }

  .mobile-canvas__cta {
    width: 100%;
  }

  .hero-actions .button,
  .section-copy .button,
  .process-cta .button,
  .machines-cta .button,
  .final-actions .button {
    max-width: 100% !important;
    width: 100% !important;
  }

  .button img {
    flex: 0 0 auto;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
    justify-items: center;
    margin-left: auto;
    margin-right: auto;
    width: min(100%, 520px) !important;
  }

  .hero-metrics li,
  .hero-metrics li:nth-child(3) {
    grid-column: auto;
    display: grid;
    grid-template-columns: 28px max-content;
    justify-content: center;
    justify-self: center;
    text-align: left;
    width: auto;
  }

  .hero-metrics li {
    gap: 12px;
  }

  .hero-metrics img {
    justify-self: center;
  }

  .hero-metrics,
  .problem-grid,
  .benefit-grid,
  .process-grid,
  .machine-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .problem-section h2,
  .process-section h2,
  .proof-section h2,
  .faq-section h2,
  .section-copy h2 {
    font-size: var(--fs-section-title);
    line-height: 1.16;
  }

  .problem-section h2 br,
  .proof-section h2 br,
  .section-heading h2 br,
  .final-cta-copy h2 br {
    display: none;
  }

  .info-card h3,
  .benefit-card h3,
  .step-heading h3,
  .machine-card h3,
  .text-list-title h3,
  .faq-item summary {
    min-width: 0;
    overflow-wrap: break-word;
  }

  .benefit-card {
    padding: 20px 20px 22px 48px;
  }

  .benefit-card img {
    left: 20px;
  }

  .machine-card-body > span {
    max-width: 100%;
    min-width: 0;
    padding-left: 18px;
    padding-right: 18px;
    white-space: normal;
  }

  .stats-grid div + div {
    border-left: 0;
    border-top: 1px solid #bdbdbd;
  }

  .proof-list li {
    grid-template-columns: 28px minmax(0, 1fr);
    font-size: var(--fs-proof-line);
    line-height: 23px;
    justify-content: flex-start;
    padding: 9px 12px;
    text-align: left;
  }

  .proof-list span {
    white-space: normal;
  }

  .faq-item summary {
    font-size: var(--fs-faq-question);
    line-height: 23px;
  }

  .faq-item p {
    font-size: var(--fs-faq-answer);
    line-height: 22px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .privacy-header .main-nav,
  .privacy-header .button {
    display: none;
  }

  .privacy-hero {
    min-height: 360px;
    padding: 126px 0 58px;
  }

  .privacy-layout,
  .privacy-summary,
  .privacy-article,
  .privacy-article article {
    min-width: 0;
    width: 100%;
  }

  .privacy-hero h1 {
    font-size: clamp(2rem, 10vw, 2.65rem);
  }

  .privacy-content {
    padding: 54px 0 66px;
  }

  .privacy-layout {
    gap: 28px;
  }

  .privacy-summary {
    padding: 20px;
    position: static;
    top: auto;
  }

  .proposal-modal__panel {
    max-height: calc(100vh - 24px);
    padding: 28px 20px 22px;
    width: min(calc(100% - 24px), 560px);
  }

  .proposal-modal__close {
    height: 36px;
    right: 14px;
    top: 14px;
    width: 36px;
  }

  .proposal-modal__intro {
    padding-right: 40px;
  }

  .proposal-modal__intro h2 {
    font-size: clamp(1.45rem, 7vw, 1.875rem);
    line-height: 1.12;
  }

  .proposal-form {
    gap: 14px;
    grid-template-columns: 1fr;
    margin-top: 22px;
  }

  .proposal-form__submit {
    justify-self: stretch;
    width: 100%;
  }

  .cookie-banner {
    bottom: 12px;
    width: min(calc(100% - 24px), 520px);
  }

  .cookie-banner__content {
    align-items: stretch;
    gap: 14px;
    grid-template-columns: 24px minmax(0, 1fr);
    padding: 16px;
  }

  .cookie-banner__icon {
    align-self: flex-start;
    margin-top: 1px;
  }

  .cookie-banner__actions {
    align-items: stretch;
    flex-direction: column-reverse;
    gap: 8px;
    grid-column: 1 / -1;
  }

  .cookie-banner__button {
    width: 100%;
  }

  .back-to-top {
    bottom: 18px;
    height: 44px;
    right: 18px;
    width: 44px;
  }
}

@media (max-width: 767px) {
  .site-header.is-floating {
    background: transparent;
    border-color: transparent;
    box-shadow: none;
    padding-left: 4vw;
    padding-right: 4vw;
    position: absolute;
    top: 0;
    width: 100%;
  }

  .hero-layout {
    justify-content: center;
  }

  .hero-copy {
    max-width: 100%;
    text-align: center;
    width: 100%;
  }

  .hero-copy h1 {
    max-width: 100%;
  }

  .hero-copy h1 br {
    display: none;
  }

  .problem-section h2 br {
    display: block;
  }

  .hero-actions {
    align-items: center;
  }

  .hero-metrics {
    gap: 16px;
    justify-items: stretch;
    padding: 18px 18px;
    width: min(100%, 360px) !important;
  }

  .hero-metrics li,
  .hero-metrics li:nth-child(3) {
    font-size: 0.8125rem;
    grid-column: auto;
    grid-template-columns: 28px minmax(0, 1fr);
    justify-content: stretch;
    justify-self: stretch;
    text-align: left;
    width: 100%;
  }
}

@media (max-width: 1200px) {
  .privacy-page .section-inner,
  .privacy-page .privacy-hero .section-inner,
  .privacy-page .privacy-content .section-inner,
  .privacy-page .site-footer .section-inner {
    max-width: none;
    padding-left: 4vw;
    padding-right: 4vw;
    width: 100%;
  }

  .privacy-page .privacy-layout {
    grid-template-columns: 1fr;
  }

  .privacy-page .privacy-summary {
    position: static;
    top: auto;
  }
}

@media (min-width: 1201px) {
  .privacy-page .privacy-layout {
    align-items: start;
    grid-template-columns: 320px minmax(0, 1fr);
  }

  .privacy-page .privacy-summary {
    position: sticky;
    top: 136px;
  }
}
