:root {
  --bg: #f7f1ea;
  --bg-soft: #fffaf4;
  --surface: rgba(255, 255, 255, 0.88);
  --surface-strong: #ffffff;
  --text: #12161b;
  --muted: #4f5964;
  --line: #e7d9cf;
  --primary: #cf2135;
  --primary-dark: #9e1322;
  --accent: #1f5d8e;
  --accent-soft: #e7f0f8;
  --success: #0d7a46;
  --warning: #7a4e0d;
  --shadow: 0 22px 60px rgba(26, 22, 19, 0.1);
  --shadow-soft: 0 14px 36px rgba(26, 22, 19, 0.06);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(207, 33, 53, 0.14), transparent 26%),
    radial-gradient(circle at 88% 10%, rgba(31, 93, 142, 0.1), transparent 20%),
    linear-gradient(180deg, #fffaf5 0%, #f8f0e7 54%, #fffdf9 100%);
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 120;
  padding: 12px 16px;
  border-radius: 999px;
  background: #11161d;
  color: #fff;
}

.skip-link:focus {
  top: 16px;
}

.shell {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(255, 248, 242, 0.82);
  border-bottom: 1px solid rgba(231, 217, 207, 0.9);
}

.nav {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 210px;
  height: 86px;
  object-fit: contain;
  object-position: left center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.nav-links a,
.footer-links a,
.inline-link {
  transition: color 0.18s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible,
.inline-link:hover,
.inline-link:focus-visible {
  color: var(--primary);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--text);
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 85px 16px auto 16px;
  z-index: 35;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.mobile-menu a {
  display: block;
  padding: 12px 8px;
  font-weight: 800;
  color: var(--muted);
}

.mobile-menu.is-open {
  display: block;
}

.cta,
.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.cta:hover,
.cta:focus-visible,
.button-link:hover,
.button-link:focus-visible {
  transform: translateY(-1px);
}

.cta.primary,
.button-link.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #ef374e);
  box-shadow: 0 16px 32px rgba(207, 33, 53, 0.22);
}

.cta.secondary,
.button-link.secondary {
  color: var(--ink, #181d23);
  background: rgba(255, 255, 255, 0.84);
  border-color: var(--line);
}

.cta.ghost {
  color: var(--primary-dark);
  background: rgba(207, 33, 53, 0.08);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--line);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero {
  padding: 54px 0 24px;
}

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

h1,
.h1 {
  margin: 18px 0 14px;
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  line-height: 0.94;
  letter-spacing: -0.07em;
}

h2,
.h2 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

h3,
.h3 {
  margin: 0 0 10px;
  font-size: 1.12rem;
  letter-spacing: -0.03em;
}

.lead {
  max-width: 54ch;
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.proof-strip span,
.chip {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--line);
  color: var(--muted);
  font-weight: 700;
  font-size: 0.92rem;
}

.hero-visual {
  position: relative;
  min-height: 640px;
}

.hero-card,
.hero-shot,
.hero-tag {
  position: absolute;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-card {
  inset: 18px 26px 120px 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(251, 244, 238, 0.98));
}

.hero-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  background: linear-gradient(135deg, #181d23, #252c34);
  color: #fff;
}

.hero-card-top span {
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-card-top b {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 18px 0 0 rgba(255, 255, 255, 0.56), 36px 0 0 rgba(255, 255, 255, 0.28);
}

.hero-card-body {
  padding: 18px;
}

.hero-card-body img {
  width: 100%;
  border-radius: 20px;
}

.hero-shot {
  right: 0;
  bottom: 88px;
  width: 270px;
  transform: rotate(2.5deg);
  background: #fff;
}

.hero-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-tag {
  left: 22px;
  bottom: 0;
  width: 260px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.94);
}

.hero-tag strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
  letter-spacing: -0.03em;
}

.hero-tag p,
.support-copy,
.card p,
.card li,
.section-head p,
.metric span,
.feature p,
.testimonial p,
.faq-intro,
.faq-answer,
.article-body p,
.article-body li,
.summary-card p,
.footer-note,
.small-text,
.legal-copy {
  color: var(--muted);
  line-height: 1.75;
}

main section,
.page-section {
  padding: 28px 0 14px;
}

.section-head {
  max-width: 780px;
  margin-bottom: 22px;
}

.grid-2,
.grid-3,
.grid-4,
.benefits,
.how,
.stats,
.showcase-grid,
.solutions-grid,
.blog-grid,
.trust-grid,
.testimonial-grid,
.faq-grid,
.footer-grid,
.content-grid,
.contact-grid,
.comparison-grid {
  display: grid;
  gap: 16px;
}

.grid-2,
.contact-grid,
.content-grid,
.comparison-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3,
.how,
.stats,
.showcase-grid,
.solutions-grid,
.blog-grid,
.trust-grid,
.faq-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4,
.benefits,
.testimonial-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card,
.stat,
.benefit,
.step,
.feature,
.summary-card,
.testimonial,
.blog-card,
.solution-card,
.faq-card,
.contact-card,
.trust-card,
.comparison-card {
  padding: 22px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  min-width: 0;
}

.stat b,
.metric strong {
  display: block;
  margin-bottom: 8px;
  font-size: 2rem;
  letter-spacing: -0.06em;
}

.icon-badge,
.number-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(207, 33, 53, 0.12), rgba(31, 93, 142, 0.12));
  color: var(--primary);
  font-size: 0.95rem;
  font-weight: 800;
}

.number-badge {
  background: linear-gradient(135deg, var(--primary), #ee3e55);
  color: #fff;
}

.download-band,
.buy,
.cta-band {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(207, 33, 53, 0.16);
  box-shadow: 0 24px 54px rgba(18, 22, 27, 0.18);
}

.download-band,
.buy {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 30px;
  color: #fff;
  background:
    radial-gradient(circle at 12% 12%, rgba(255, 255, 255, 0.34), transparent 24%),
    linear-gradient(135deg, #161b22, #262f39 58%, #cf2135 160%);
}

.buy {
  padding: 34px;
  background:
    radial-gradient(circle at top right, rgba(31, 93, 142, 0.12), transparent 20%),
    linear-gradient(135deg, #13181d, #1e252d 58%, #2b333d 100%);
}

.download-band::after,
.buy::after,
.cta-band::after {
  content: "";
  position: absolute;
  right: -70px;
  top: -90px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.download-copy,
.cta-band-copy {
  position: relative;
  z-index: 1;
}

.download-copy {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: center;
}

.download-icon {
  width: 82px;
  height: 82px;
  padding: 10px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  object-fit: contain;
}

.download-copy .eyebrow,
.cta-band .eyebrow {
  color: #ffb5bf;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
}

.download-copy h2,
.buy h2,
.cta-band h2 {
  color: #fff;
}

.download-copy p,
.buy p,
.cta-band p {
  color: rgba(255, 255, 255, 0.78);
}

.showcase-grid .phone {
  padding: 14px;
  border-radius: 36px;
  background: linear-gradient(180deg, #181c22, #2c333c);
  box-shadow: 0 18px 36px rgba(24, 29, 35, 0.18);
}

.showcase-grid .phone img {
  border-radius: 28px;
  width: 100%;
}

.solutions-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.solution-card {
  display: grid;
  align-content: start;
}

.solution-card .inline-link {
  margin-top: 6px;
  font-weight: 800;
}

.carousel-shell {
  display: grid;
  gap: 18px;
}

.carousel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.carousel-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.carousel-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.84);
  color: var(--text);
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.carousel-button:hover,
.carousel-button:focus-visible {
  transform: translateY(-1px);
  color: var(--primary);
  border-color: rgba(207, 33, 53, 0.24);
}

.label-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 30%);
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 8px;
}

.label-carousel::-webkit-scrollbar {
  height: 10px;
}

.label-carousel::-webkit-scrollbar-thumb {
  background: rgba(93, 101, 111, 0.28);
  border-radius: 999px;
}

.label-card {
  scroll-snap-align: start;
  min-width: 0;
  padding: 16px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.label-card .label-photo {
  min-height: 320px;
}

.label-card-copy {
  padding: 16px 6px 4px;
}

.label-card-copy strong {
  display: block;
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}

.label-card-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.labels-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: 18px;
}

.label-photo {
  position: relative;
  min-height: 360px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 18px 36px rgba(26, 22, 19, 0.1);
  background: #fff;
}

.label-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.label-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 22, 26, 0.02), rgba(20, 22, 26, 0.34));
}

.label-note {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.96);
}

.metrics-band {
  padding-top: 10px;
}

.demo-frame {
  position: relative;
  padding: 22px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 244, 238, 0.96));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.demo-frame img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 680px;
  margin: 0 auto;
  border-radius: 20px;
}

.demo-list,
.check-list,
.article-body ul,
.article-body ol {
  display: grid;
  gap: 12px;
  padding-left: 20px;
}

.check-list {
  padding-left: 0;
  list-style: none;
}

.check-list li,
.demo-list li {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
}

.faq {
  margin-top: 16px;
}

.faq-item {
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--line);
}

.faq-item + .faq-item {
  margin-top: 12px;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 800;
}

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

.faq-answer {
  padding: 0 20px 18px;
}

.contact-form {
  display: grid;
  gap: 14px;
}

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

.field label {
  font-weight: 800;
  color: #1a222b;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 15px 16px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
}

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

.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible,
.cta:focus-visible,
.nav-toggle:focus-visible,
.faq-item summary:focus-visible {
  outline: 3px solid rgba(31, 93, 142, 0.2);
  outline-offset: 2px;
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.form-status {
  min-height: 24px;
  font-weight: 700;
  color: var(--success);
}

.trust-logo {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text);
}

.testimonial .role,
.meta-text,
.breadcrumb a,
.article-meta {
  color: var(--muted);
  font-size: 0.94rem;
}

.testimonial p {
  font-size: 0.97rem;
}

.quote-mark {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(207, 33, 53, 0.08);
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 12px;
}

.cta-band {
  padding: 32px;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.18), transparent 24%),
    linear-gradient(135deg, #1b2330, #27445c 58%, #cf2135 150%);
  color: #fff;
}

.footer {
  padding: 30px 0 36px;
}

.footer-grid {
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  align-items: start;
}

.footer-brand img {
  width: 170px;
  height: auto;
}

.footer-links {
  display: grid;
  gap: 10px;
  font-weight: 700;
  color: var(--muted);
}

.footer-note {
  margin-top: 12px;
  font-size: 0.92rem;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1fb16a, #148f54);
  color: #fff;
  box-shadow: 0 18px 34px rgba(20, 143, 84, 0.28);
  font-size: 1.4rem;
}

.whatsapp-float span {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.94rem;
}

.page-hero {
  padding: 44px 0 18px;
}

.page-hero .lead {
  max-width: 60ch;
}

.summary-card h3,
.blog-card h3,
.solution-card h3,
.comparison-card h3 {
  margin-top: 8px;
}

.blog-card .meta-text,
.solution-card .meta-text {
  margin-bottom: 10px;
}

.article-body {
  display: grid;
  gap: 16px;
}

.article-body h2 {
  margin-top: 18px;
  font-size: 1.8rem;
}

.article-body h3 {
  margin-top: 10px;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.75fr) minmax(260px, 0.8fr);
  gap: 18px;
}

.sticky-card {
  position: sticky;
  top: 108px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badge {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(207, 33, 53, 0.1);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (max-width: 1024px) {
  .hero-grid,
  .labels-grid,
  .benefits,
  .how,
  .showcase-grid,
  .stats,
  .download-band,
  .buy,
  .grid-4,
  .grid-3,
  .contact-grid,
  .content-grid,
  .comparison-grid,
  .article-layout,
  .footer-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

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

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

  .sticky-card {
    position: static;
  }
}

@media (max-width: 760px) {
  .nav {
    min-height: 74px;
  }

  .nav-links,
  .nav .cta.primary.desktop-only {
    display: none;
  }

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

  .brand img {
    width: 174px;
    height: 72px;
  }

  .hero {
    padding-top: 34px;
  }

  h1,
  .h1 {
    font-size: 2.9rem;
  }

  .hero-visual {
    min-height: 540px;
  }

  .hero-card {
    inset: 10px 10px 120px 0;
  }

  .hero-shot {
    width: 210px;
  }

  .hero-tag {
    width: 210px;
    left: 10px;
  }

  .download-copy {
    grid-template-columns: 1fr;
  }

  .download-icon {
    width: 72px;
    height: 72px;
  }

  .solutions-grid,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .card,
  .stat,
  .benefit,
  .step,
  .feature,
  .summary-card,
  .testimonial,
  .blog-card,
  .solution-card,
  .faq-card,
  .contact-card,
  .trust-card,
  .comparison-card,
  .label-card {
    width: 100%;
    padding: 18px;
    border-radius: 22px;
  }

  .section-head {
    margin-bottom: 18px;
  }

  .benefits,
  .trust-grid,
  .testimonial-grid,
  .blog-grid,
  .stats,
  .content-grid,
  .contact-grid {
    gap: 14px;
  }

  .solution-card,
  .blog-card,
  .benefit,
  .feature,
  .trust-card,
  .testimonial,
  .stat {
    gap: 0;
  }

  .trust-grid,
  .testimonial-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .trust-card,
  .testimonial,
  .blog-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
  }

  .trust-logo,
  .blog-card .badge,
  .testimonial .quote-mark {
    margin-bottom: 10px;
  }

  .testimonial .quote-mark {
    flex-shrink: 0;
  }

  .solution-card h3,
  .blog-card h3,
  .benefit h3,
  .feature h3,
  .trust-card h3,
  .testimonial strong,
  .summary-card h3 {
    line-height: 1.2;
  }

  .solution-card p,
  .blog-card p,
  .benefit p,
  .feature p,
  .trust-card p,
  .testimonial p,
  .summary-card p,
  .contact-card p {
    line-height: 1.65;
  }

  .carousel-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .carousel-actions {
    width: 100%;
  }

  .carousel-button {
    flex: 1 1 0;
  }

  .label-carousel {
    grid-auto-columns: 88%;
    gap: 14px;
    padding-bottom: 6px;
  }

  .label-card .label-photo {
    min-height: 250px;
  }

  .label-card-copy {
    padding: 14px 2px 2px;
  }

  .demo-frame {
    padding: 18px;
    border-radius: 24px;
  }

  .demo-frame img {
    max-height: 520px;
  }

  .cta-band,
  .buy,
  .download-band,
  .card,
  .stat,
  .benefit,
  .step,
  .feature,
  .summary-card,
  .testimonial,
  .blog-card,
  .solution-card,
  .faq-card,
  .contact-card,
  .trust-card,
  .comparison-card {
    padding: 20px;
  }

  .shell {
    width: min(calc(100% - 24px), var(--max));
  }
}
