:root {
  --bg: #f6f8fb;
  --surface: rgba(255, 255, 255, 0.95);
  --surface-strong: #ffffff;
  --text: #172033;
  --muted: #5c677a;
  --line: rgba(33, 46, 73, 0.13);
  --primary: #0f8f72;
  --primary-dark: #08705a;
  --accent: #2563eb;
  --accent-soft: #e8f1ff;
  --success-soft: #e7f8f1;
  --shadow: 0 18px 48px rgba(34, 45, 70, 0.12);
  --radius: 18px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    linear-gradient(120deg, rgba(15, 143, 114, 0.12), transparent 30%),
    linear-gradient(250deg, rgba(37, 99, 235, 0.10), transparent 28%),
    linear-gradient(180deg, #f7f9fc 0%, #eef3f8 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.lead-page {
  width: min(1180px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 24px 0 72px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(340px, 0.75fr);
  gap: 16px;
  align-items: stretch;
  margin-bottom: 22px;
}

.hero__content,
.hero__card,
.panel {
  min-width: 0;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.hero__content {
  position: relative;
  padding: 34px 36px 36px;
}

.hero__topbar {
  position: absolute;
  top: 22px;
  right: 24px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 0;
}

.hero__topbar [data-lang-switcher],
.hero__topbar [data-lang-switcher] label {
  min-width: 0;
}

.hero__topbar [data-lang-switcher] label {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero__topbar [data-lang-switcher] select {
  max-width: 118px;
}

.hero__login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--primary-dark);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 800;
}

.hero__login:hover {
  border-color: rgba(15, 143, 114, 0.35);
  background: var(--success-soft);
}

.hero__brand,
.panel__kicker {
  margin: 0 0 12px;
  color: var(--primary);
  font-size: 0.82rem;
  text-transform: uppercase;
  font-weight: 700;
}

.hero__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.08em;
}

.hero__brand img {
  width: 40px;
  height: 40px;
  display: block;
}

.panel__kicker {
  letter-spacing: 0.16em;
}

.hero h1,
.panel h2 {
  margin: 0;
  line-height: 1.05;
}

.hero h1 {
  max-width: 17ch;
  font-size: clamp(2.2rem, 4.2vw, 4rem);
}

.hero__lead {
  max-width: 38rem;
  margin: 20px 0 0;
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--muted);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero__chips span {
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--success-soft);
  color: var(--primary-dark);
  font-size: 0.95rem;
  font-weight: 700;
}

.hero__card {
  padding: 24px;
  align-self: stretch;
}

.hero__card h2 {
  font-size: 1.6rem;
  margin-bottom: 18px;
}

.hero__list {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.8;
  font-size: 1rem;
}

.hero-demo {
  display: grid;
  gap: 16px;
  align-content: center;
}

.hero-demo--screens {
  overflow: hidden;
  background: #101828;
}

.screen-stack {
  position: relative;
  min-height: 520px;
}

.app-screen {
  position: absolute;
  width: min(290px, 82%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
  overflow: hidden;
}

.app-screen--catalog {
  top: 0;
  left: 0;
  z-index: 3;
}

.app-screen--whatsapp {
  top: 175px;
  right: 0;
  z-index: 2;
}

.app-screen--dashboard {
  bottom: 0;
  left: 18px;
  z-index: 1;
}

.app-screen__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
}

.app-screen__top strong {
  color: var(--text);
  font-size: .92rem;
}

.app-screen__top span {
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--success-soft);
  color: var(--primary-dark);
  font-size: .72rem;
  font-weight: 800;
}

.catalog-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 12px;
}

.catalog-mini-grid div {
  min-width: 0;
}

.catalog-mini-grid img {
  width: 100%;
  aspect-ratio: 1;
  display: block;
  object-fit: cover;
  border-radius: 12px;
}

.catalog-mini-grid span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: .68rem;
  font-weight: 700;
  line-height: 1.2;
}

.app-screen button {
  width: calc(100% - 24px);
  margin: 0 12px 12px;
  border: 0;
  border-radius: 12px;
  background: #25d366;
  color: #05361e;
  padding: 10px;
  font-weight: 900;
}

.app-screen--whatsapp {
  padding-bottom: 14px;
  background: #e7f6ed;
}

.app-screen--whatsapp p,
.app-screen--whatsapp ul,
.app-screen--whatsapp > strong {
  margin: 12px 14px 0;
  color: #173b2b;
  line-height: 1.45;
  font-size: .86rem;
}

.app-screen--whatsapp ul {
  padding-left: 28px;
}

.dash-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 12px;
}

.dash-mini-grid div {
  min-width: 0;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #f8fafc;
}

.dash-mini-grid span,
.dash-mini-grid strong {
  display: block;
}

.dash-mini-grid span {
  color: var(--muted);
  font-size: .68rem;
  font-weight: 800;
}

.dash-mini-grid strong {
  margin-top: 6px;
  color: var(--text);
  font-size: 1rem;
}

.phone-preview {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #111827;
  color: #f8fafc;
  padding: 18px;
}

.phone-preview::before {
  content: "";
  display: block;
  width: 72px;
  height: 5px;
  margin: 0 auto 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
}

.phone-preview__bar,
.phone-preview__product,
.phone-preview__order {
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.phone-preview__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 14px;
}

.phone-preview__bar span,
.phone-preview__product span,
.phone-preview__order span,
.dashboard-preview span {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.35;
}

.phone-preview__bar span,
.phone-preview__product span,
.phone-preview__order span {
  color: rgba(248, 250, 252, 0.74);
}

.phone-preview__bar strong {
  color: #86efac;
  font-size: 0.82rem;
}

.phone-preview__product {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 12px;
  align-items: center;
  margin-top: 12px;
  padding: 12px;
}

.phone-preview__image {
  width: 58px;
  aspect-ratio: 1;
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.78), rgba(15, 143, 114, 0.85)),
    #dbeafe;
}

.phone-preview__product strong,
.phone-preview__product span {
  display: block;
}

.phone-preview__product strong {
  margin-bottom: 4px;
}

.phone-preview__order {
  margin-top: 12px;
  padding: 14px;
  background: rgba(37, 211, 102, 0.16);
}

.phone-preview__order p {
  margin: 6px 0 0;
  font-weight: 800;
  line-height: 1.35;
}

.dashboard-preview {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.dashboard-preview div {
  min-width: 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.7);
}

.dashboard-preview span,
.dashboard-preview strong {
  display: block;
}

.dashboard-preview strong {
  margin-top: 8px;
  color: var(--text);
  font-size: 1.2rem;
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.trust-strip,
.benefits-panel {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 24px;
}

.trust-strip article,
.benefits-panel article,
.story-card,
.faq-panel,
.differentials-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.trust-strip article,
.benefits-panel article {
  display: grid;
  gap: 6px;
  padding: 18px;
}

.benefits-panel article span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--success-soft);
  color: var(--primary-dark);
  font-weight: 900;
}

.trust-strip strong {
  color: var(--text);
  font-size: 1rem;
}

.trust-strip span,
.benefits-panel p {
  color: var(--muted);
  line-height: 1.45;
  font-size: 0.94rem;
  margin: 0;
}

.real-selling-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 18px;
  margin-bottom: 24px;
  padding: 28px;
  border: 1px solid rgba(15, 143, 114, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(15, 143, 114, 0.12), rgba(37, 99, 235, 0.05) 58%, rgba(255, 255, 255, 0.7)),
    var(--surface);
  box-shadow: var(--shadow);
}

.real-selling-panel__copy {
  align-self: center;
  min-width: 0;
}

.real-selling-panel h2 {
  max-width: 15ch;
  margin: 0;
  color: var(--text);
  font-size: clamp(1.9rem, 3.2vw, 3.1rem);
  line-height: 1.04;
}

.real-selling-panel__copy p:last-child {
  max-width: 42rem;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.65;
}

.real-selling-panel__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  min-width: 0;
}

.real-selling-panel__cards article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 4px 12px;
  align-items: start;
  padding: 16px;
  border: 1px solid rgba(15, 143, 114, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
}

.real-selling-panel__cards span {
  grid-row: span 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--success-soft);
  color: var(--primary-dark);
  font-size: .78rem;
  font-weight: 900;
}

.real-selling-panel__cards strong {
  min-width: 0;
  color: var(--text);
  font-size: 1rem;
}

.real-selling-panel__cards p {
  margin: 0;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.45;
}

.demo-walkthrough {
  margin-bottom: 24px;
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.demo-walkthrough .panel__head {
  max-width: 760px;
}

.demo-walkthrough .panel__head p:last-child {
  color: var(--muted);
  line-height: 1.6;
}

.demo-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.demo-step {
  position: relative;
  min-width: 0;
}

.demo-step .story-card__num {
  position: absolute;
  top: 12px;
  right: 14px;
  margin: 0;
}

.demo-phone-shot {
  min-height: 210px;
  padding: 20px 16px 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff, #eef7f3);
  box-shadow: inset 0 0 0 7px #172033;
}

.demo-phone-shot__bar {
  display: block;
  width: 58px;
  height: 5px;
  margin: 0 auto 28px;
  border-radius: 999px;
  background: #172033;
}

.demo-phone-shot strong {
  display: block;
  max-width: 11rem;
  margin-bottom: 10px;
  color: var(--primary-dark);
  font-size: 1.05rem;
}

.demo-phone-shot p {
  max-width: 13rem;
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
  font-size: .94rem;
}

.demo-walkthrough__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.demo-business-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 10px;
  margin-top: 20px;
}

.demo-business-grid a {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #ffffff;
  color: var(--text);
  padding: 14px 10px;
  text-align: center;
  text-decoration: none;
  font-size: .9rem;
  font-weight: 900;
}

.demo-business-grid a:hover {
  border-color: rgba(15, 143, 114, 0.38);
  background: var(--success-soft);
}

.story-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.story-card {
  padding: 22px;
}

.story-card--wide {
  background:
    linear-gradient(135deg, rgba(15, 143, 114, 0.12), transparent 60%),
    var(--surface);
}

.story-card h2,
.story-card h3 {
  margin: 0;
  line-height: 1.15;
}

.story-card h2 {
  font-size: 1.85rem;
}

.story-card h3 {
  font-size: 1.16rem;
}

.story-card p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.story-card__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 800;
  font-size: 0.86rem;
}

.pricing-panel {
  padding: 28px;
  margin-bottom: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.differentials-panel {
  padding: 28px;
  margin-bottom: 24px;
}

.differentials-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.differentials-grid article {
  min-height: 86px;
  display: flex;
  align-items: flex-end;
  border: 1px solid var(--line);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.08), transparent 60%),
    #ffffff;
  padding: 16px;
  color: var(--text);
  font-weight: 900;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.pricing-card {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.68);
}

.pricing-card--featured {
  border-color: rgba(15, 143, 114, 0.35);
  background: var(--success-soft);
}

.pricing-card h3 {
  margin: 0;
  font-size: 1.08rem;
}

.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  color: var(--primary-dark);
}

.pricing-card__price strong {
  font-size: 1.55rem;
}

.pricing-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.pricing-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.6;
}

.faq-panel {
  padding: 28px;
  margin-bottom: 24px;
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.62);
  padding: 14px 16px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 800;
  line-height: 1.35;
}

.faq-list p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.58;
}

.content-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
}

.panel {
  padding: 30px;
}

.panel__head {
  margin-bottom: 22px;
}

.panel h2 {
  font-size: 2rem;
}

.lead-form {
  display: grid;
  gap: 18px;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.field {
  display: grid;
  gap: 8px;
}

.field--wide {
  grid-column: 1 / -1;
}

.field span {
  font-size: 0.92rem;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface-strong);
  color: var(--text);
  padding: 14px 16px;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(15, 143, 114, 0.45);
  box-shadow: 0 0 0 4px rgba(15, 143, 114, 0.10);
  transform: translateY(-1px);
}

.field textarea {
  resize: vertical;
  min-height: 120px;
}

.field__hint {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.4;
}

.map-verify {
  justify-self: start;
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
}

.map-verify:hover {
  text-decoration: underline;
}

.actions,
.share-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 999px;
  padding: 13px 20px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn--primary {
  background: var(--primary-dark);
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(8, 112, 90, 0.24);
}

.btn--primary:hover {
  background: #065846;
}

.btn--ghost,
.btn--secondary {
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  border: 1px solid var(--line);
}

.btn--whatsapp {
  background: #25d366;
  color: #093b23;
}

.form-feedback {
  min-height: 1.2rem;
  margin: 0;
  color: var(--primary-dark);
  font-size: 0.92rem;
  overflow-wrap: anywhere;
}

.hidden {
  display: none !important;
}

.empty-state {
  padding: 22px;
  border: 1px dashed var(--line);
  border-radius: 20px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.5);
  font-size: 1rem;
  line-height: 1.7;
}

.summary-card {
  display: grid;
  gap: 20px;
}

.summary-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.summary-list div {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid var(--line);
}

.summary-list dt {
  margin-bottom: 6px;
  font-size: 0.78rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.summary-list dd {
  margin: 0;
  line-height: 1.45;
  font-size: 1.03rem;
}

.share-link {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.share-link input {
  min-width: 0;
}

.message-preview {
  padding: 18px;
  border-radius: 18px;
  background: #172033;
  color: #eef6ff;
}

.message-preview h3 {
  margin: 0 0 12px;
  font-size: 1rem;
}

.message-preview pre {
  margin: 0;
  white-space: pre-wrap;
  word-break: break-word;
  line-height: 1.6;
  font-size: 0.95rem;
}

.quick-scroll {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  display: grid;
  gap: 8px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 38px rgba(34, 45, 70, 0.18);
  backdrop-filter: blur(12px);
}

.quick-scroll__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid transparent;
  border-radius: 50%;
  background: var(--surface-strong);
  color: var(--primary-dark);
  font-size: 1.15rem;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.quick-scroll__btn:hover,
.quick-scroll__btn:focus-visible {
  border-color: rgba(15, 143, 114, 0.35);
  background: var(--success-soft);
  transform: translateY(-1px);
  outline: none;
}

@media (max-width: 920px), (max-device-width: 920px) {
  .hero,
  .content-grid,
  .story-grid,
  .real-selling-panel {
    grid-template-columns: 1fr;
  }

  .trust-strip,
  .benefits-panel,
  .pricing-grid,
  .faq-list,
  .demo-steps,
  .demo-business-grid,
  .differentials-grid {
    grid-template-columns: 1fr;
  }

  .hero__content,
  .hero__card,
  .panel,
  .real-selling-panel,
  .demo-walkthrough {
    padding: 28px;
  }

  .hero__topbar {
    position: static;
    margin-bottom: 18px;
  }

  .hero h1 {
    max-width: 18ch;
  }

  .hero__card {
    align-self: stretch;
  }

  .screen-stack {
    min-height: 470px;
  }
}

@media (max-width: 920px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .lead-page {
    width: var(--sumate-vw, 100dvw);
    max-width: var(--sumate-vw, 100dvw);
    margin: 0;
    padding: 12px 10px 92px;
    overflow-x: hidden;
  }

  .lead-page > * {
    width: 100%;
    max-width: calc(var(--sumate-vw, 100dvw) - 20px);
    min-width: 0;
  }

  .hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
    min-width: 0;
    max-width: calc(var(--sumate-vw, 100dvw) - 20px);
    gap: 12px;
    margin-bottom: 14px;
  }

  .content-grid,
  .story-grid,
  .real-selling-panel,
  .trust-strip,
  .benefits-panel,
  .pricing-grid,
  .faq-list,
  .demo-steps,
  .demo-business-grid,
  .differentials-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero__content,
  .hero__card,
  .panel,
  .pricing-panel,
  .faq-panel,
  .real-selling-panel,
  .demo-walkthrough,
  .benefits-panel,
  .pricing-grid,
  .faq-list,
  .demo-business-grid,
  .differentials-grid {
    width: calc(var(--sumate-vw, 100dvw) - 20px);
    max-width: calc(var(--sumate-vw, 100dvw) - 20px);
    min-width: 0;
    overflow-x: hidden;
    padding: 20px;
    border-radius: 16px;
  }

  .real-selling-panel {
    gap: 16px;
  }

  .real-selling-panel h2 {
    max-width: 16ch;
    font-size: 1.9rem;
  }

  .real-selling-panel__copy p:last-child {
    font-size: .96rem;
    line-height: 1.55;
  }

  .real-selling-panel__cards article {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 15px;
  }

  .real-selling-panel__cards span {
    grid-row: auto;
  }

  .hero__topbar {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 14px;
  }

  .hero__topbar [data-lang-switcher] {
    display: block;
    flex: 0 0 auto;
  }

  .hero__topbar [data-lang-switcher] label {
    display: block;
  }

  .hero__topbar [data-lang-switcher] label > span {
    display: none;
  }

  .hero__topbar [data-lang-switcher] select {
    width: 84px;
    max-width: 84px;
    min-width: 0;
    font-size: 0.82rem;
  }

  #languageHint {
    display: none;
  }

  .hero,
  .hero__content,
  .hero__card {
    width: calc(var(--sumate-vw, 100dvw) - 20px);
    max-width: calc(var(--sumate-vw, 100dvw) - 20px);
    min-width: 0;
    overflow: hidden;
  }

  .hero__content > *,
  .hero__card > * {
    min-width: 0;
    width: auto;
    max-width: 100%;
  }

  .hero-demo--screens {
    contain: paint;
    overflow: hidden;
  }

  .screen-stack {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    min-height: 440px;
  }

  .app-screen {
    max-width: 100%;
  }

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

  .hero__brand {
    margin-bottom: 10px;
  }

  .hero__brand img {
    width: 34px;
    height: 34px;
  }

  .field-grid,
  .summary-list {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: none;
    font-size: 1.85rem;
    line-height: 1.08;
    overflow-wrap: anywhere;
  }

  .hero__lead {
    margin-top: 14px;
    font-size: 1rem;
    line-height: 1.5;
    overflow-wrap: anywhere;
  }

  .hero-demo--screens {
    background: #101828;
  }

  .screen-stack {
    display: grid;
    gap: 12px;
    width: 100%;
    max-width: 100%;
    min-height: auto;
  }

  .app-screen,
  .app-screen--catalog,
  .app-screen--whatsapp,
  .app-screen--dashboard {
    position: relative;
    inset: auto;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    transform: none;
  }

  .app-screen {
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
  }

  .hero__actions,
  .hero__chips {
    margin-top: 16px;
  }

  .hero__chips {
    gap: 8px;
  }

  .hero__chips span {
    padding: 8px 11px;
    font-size: 0.84rem;
  }

  .phone-preview {
    padding: 14px;
    border-radius: 18px;
  }

  .phone-preview::before {
    margin-bottom: 12px;
  }

  .phone-preview__bar,
  .phone-preview__product,
  .phone-preview__order {
    border-radius: 14px;
  }

  .share-link {
    grid-template-columns: 1fr;
  }

  .dashboard-preview {
    grid-template-columns: 1fr;
  }

  .phone-preview__product {
    grid-template-columns: 48px 1fr;
  }

  .phone-preview__image {
    width: 48px;
  }

  .btn {
    width: 100%;
  }

  .quick-scroll {
    right: 50%;
    bottom: 12px;
    grid-template-columns: repeat(4, 1fr);
    width: min(224px, calc(100vw - 32px));
    transform: translateX(50%);
    border-radius: 999px;
    padding: 6px;
  }

  .quick-scroll__btn {
    width: 100%;
    height: 34px;
    font-size: 1rem;
  }
}
