:root {
  --ink: #071a2b;
  --ink-2: #0c2a42;
  --sky: #dff2fb;
  --paper: #f7f7f2;
  --sand: #ece9df;
  --white: #fff;
  --orange: #ff6a21;
  --orange-2: #e8560f;
  --muted: #5b6871;
  --line: rgba(7, 26, 43, 0.16);
  --max: 1240px;
  --display: "Barlow Condensed", sans-serif;
  --body: "DM Sans", sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 19px;
  line-height: 1.65;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}
.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  background: #fff;
  padding: 0.8rem 1rem;
  z-index: 1000;
}
.skip-link:focus {
  top: 1rem;
}
.progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 1001;
}
.progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--orange);
}
.topbar {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(calc(100% - 64px), var(--max));
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-size: 25px;
  font-weight: 800;
  line-height: 0.78;
  letter-spacing: 0.04em;
}
.brand svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
}
.brand small {
  display: block;
  font-size: 19px;
  letter-spacing: 0.28em;
  margin-top: 7px;
}
.topbar nav {
  display: flex;
  gap: 34px;
  font-size: 15px;
  font-weight: 600;
}
.topbar nav a {
  transition: color 0.2s;
}
.topbar nav a:hover {
  color: var(--orange);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 58px;
  padding: 0 22px;
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition:
    background 0.2s,
    border-color 0.2s,
    color 0.2s;
  cursor: pointer;
}
.btn span {
  font-size: 22px;
}
.btn-small {
  min-height: 44px;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.45);
  gap: 18px;
}
.btn-small:hover {
  background: #fff;
  color: var(--ink);
}
.btn-primary {
  background: var(--orange);
  color: #fff;
}
.btn-primary:hover {
  background: var(--orange-2);
}
.btn-outline {
  border-color: var(--ink);
  width: 100%;
  margin-top: auto;
}
.btn-outline:hover {
  background: var(--ink);
  color: #fff;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 30px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  padding: 0.9rem 0;
}
.text-link:hover {
  color: var(--orange);
}
.hero {
  position: relative;
  min-height: 780px;
  height: 100svh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}
.hero-media,
.final-media {
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1523987355523-c7b5b0dd90a7?auto=format&fit=crop&w=2000&q=86");
  background-size: cover;
  background-position: center;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(3, 15, 25, 0.92) 0%,
      rgba(3, 15, 25, 0.66) 48%,
      rgba(3, 15, 25, 0.15) 80%
    ),
    linear-gradient(0deg, rgba(3, 15, 25, 0.6), transparent 45%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 64px), var(--max));
  margin: 80px auto 0;
}
.eyebrow {
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: var(--orange);
  margin: 0 0 22px;
}
.eyebrow.light {
  color: #fff;
}
.eyebrow.light:before {
  background: var(--orange);
}
.eyebrow:before {
  content: "";
  display: inline-block;
  width: 34px;
  height: 2px;
  background: currentColor;
  vertical-align: middle;
  margin-right: 12px;
}
.hero h1 {
  font-family: var(--display);
  font-size: clamp(64px, 7.4vw, 116px);
  font-weight: 600;
  line-height: 0.85;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  max-width: 970px;
  margin: 0;
}
.hero h1 em {
  font-style: normal;
  color: var(--orange);
}
.hero-copy {
  max-width: 650px;
  font-size: 22px;
  color: rgba(255, 255, 255, 0.78);
  margin: 28px 0;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 36px;
}
.microcopy {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 15px;
}
.microcopy span {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #48d597;
  margin-right: 6px;
}
.hero-index {
  position: absolute;
  right: 40px;
  bottom: 60px;
  z-index: 2;
  font: 600 11px var(--body);
  letter-spacing: 0.18em;
  writing-mode: vertical-rl;
}
.route-line {
  position: absolute;
  right: 14%;
  top: 30%;
  z-index: 2;
  height: 330px;
  border-right: 1px dashed rgba(255, 255, 255, 0.45);
}
.route-line:before,
.route-line:after,
.route-line i {
  content: "";
  position: absolute;
  right: -4px;
  width: 7px;
  height: 7px;
  background: var(--orange);
  border-radius: 50%;
}
.route-line:before {
  top: 0;
}
.route-line:after {
  bottom: 0;
}
.route-line i:nth-child(1) {
  top: 33%;
}
.route-line i:nth-child(2) {
  top: 66%;
  background: #fff;
}
.route-line i:nth-child(3) {
  display: none;
}
.trust-strip {
  background: var(--orange);
  color: #fff;
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(32px, calc((100vw - var(--max)) / 2));
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}
.trust-strip > span {
  font-weight: 500;
}
.trust-strip > div {
  display: flex;
  align-items: center;
  gap: 26px;
}
.trust-strip i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
}
.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 120px 0;
}
.section-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
  margin-bottom: 72px;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.18em;
}
.section-label.light {
  border-color: rgba(255, 255, 255, 0.2);
}
.section-label b {
  font: 600 12px var(--body);
  color: var(--orange);
}
h2 {
  font-family: var(--display);
  font-size: clamp(48px, 5vw, 78px);
  font-weight: 600;
  line-height: 0.94;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  margin: 0;
}
h3 {
  line-height: 1.2;
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11%;
}
.intro-grid h2 {
  max-width: 520px;
}
.intro-grid p {
  color: var(--muted);
  max-width: 620px;
}
.intro-grid .lead {
  font-size: 25px;
  color: var(--ink);
  margin-top: 0;
}
.intro-grid blockquote {
  margin: 38px 0 0;
  border-left: 3px solid var(--orange);
  padding: 6px 0 6px 24px;
  font-size: 22px;
}
.dark {
  max-width: none;
  background: var(--ink);
  color: #fff;
  padding-left: max(32px, calc((100vw - var(--max)) / 2));
  padding-right: max(32px, calc((100vw - var(--max)) / 2));
}
.dark .section-label {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}
.pain-head,
.process-head {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 15%;
  max-width: var(--max);
  margin: 0 auto 72px;
}
.pain-head p,
.process-head p {
  color: #aab6be;
  align-self: end;
  margin: 0;
}
.pain-list {
  max-width: var(--max);
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.pain-list article {
  padding: 30px 25px 12px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  min-height: 260px;
}
.pain-list article + article {
  padding-left: 25px;
}
.pain-list article:last-child {
  border-right: 0;
}
.pain-list span {
  color: var(--orange);
  font-size: 15px;
}
.pain-list h3 {
  font: 600 28px var(--display);
  text-transform: uppercase;
  margin: 55px 0 12px;
}
.pain-list p {
  color: #99a8b2;
  font-size: 15px;
  line-height: 1.55;
}
.solution-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 8%;
  align-items: center;
}
.device-stage {
  position: relative;
  background: var(--sky);
  height: 610px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.browser {
  width: 84%;
  background: #fff;
  box-shadow: 0 32px 60px rgba(7, 26, 43, 0.22);
  transform: rotate(-2deg);
}
.browser-bar {
  height: 33px;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 10px;
}
.browser-bar i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d5d9db;
}
.browser-bar span {
  font-size: 12px;
  color: #88939b;
  margin-left: auto;
  margin-right: auto;
}
.browser-image {
  height: 330px;
  background:
    linear-gradient(90deg, rgba(7, 26, 43, 0.74), rgba(7, 26, 43, 0.08)),
    url("https://images.unsplash.com/photo-1531219572328-a0171b4448a3?auto=format&fit=crop&w=1200&q=84")
      center/cover;
}
.browser-image span {
  display: block;
  color: #fff;
  font: 700 40px/0.85 var(--display);
  padding: 55px 35px;
}
.phone {
  position: absolute;
  right: 3%;
  bottom: 10%;
  width: 150px;
  height: 310px;
  border: 7px solid var(--ink);
  border-radius: 23px;
  background: #fff;
  box-shadow: 0 25px 45px rgba(7, 26, 43, 0.25);
  overflow: hidden;
}
.phone-image {
  height: 100%;
  background:
    linear-gradient(rgba(7, 26, 43, 0.16), rgba(7, 26, 43, 0.76)),
    url("https://images.unsplash.com/photo-1515876305430-f06edab8282a?auto=format&fit=crop&w=500&q=82")
      center/cover;
  color: #fff;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  font: 500 16px/1.1 var(--display);
  text-transform: uppercase;
}
.phone-image b {
  font-size: 25px;
}
.solution-copy h2 {
  font-size: clamp(45px, 4.6vw, 68px);
}
.solution-copy > p:not(.eyebrow) {
  color: var(--muted);
}
.pillars {
  list-style: none;
  padding: 0;
  margin: 36px 0 0;
}
.pillars li {
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 18px;
  border-top: 1px solid var(--line);
  padding: 20px 0;
}
.pillars li > span {
  font-size: 10px;
  color: var(--orange);
}
.pillars h3 {
  font: 600 22px var(--display);
  text-transform: uppercase;
  margin: 0;
}
.pillars p {
  font-size: 15px;
  color: var(--muted);
  margin: 3px 0 0;
}
.sand {
  max-width: none;
  background: var(--sand);
  padding-left: max(32px, calc((100vw - var(--max)) / 2));
  padding-right: max(32px, calc((100vw - var(--max)) / 2));
}
.sand .section-label,
.sand .benefit-grid,
.sand .faq-layout {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}
.benefit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6%;
}
.benefit-grid > div:first-child {
  position: sticky;
  top: 40px;
  align-self: start;
}
.benefit-grid > div:first-child h2 {
  width: 100%;
  max-width: 650px;
  text-wrap: balance;
}
.dark-link {
  color: var(--ink);
  border-color: var(--ink);
  margin-top: 34px;
}
.benefit-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.benefit-cards article {
  padding: 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  min-height: 250px;
}
.benefit-cards svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: var(--orange);
  stroke-width: 1.5;
}
.benefit-cards h3 {
  font: 600 26px var(--display);
  text-transform: uppercase;
  margin: 50px 0 10px;
}
.benefit-cards p {
  color: var(--muted);
  font-size: 15px;
}
.process {
  padding-top: 120px;
  padding-bottom: 120px;
}
.steps {
  list-style: none;
  padding: 0;
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  counter-reset: item;
}
.steps li {
  border-top: 2px solid rgba(255, 255, 255, 0.22);
  padding: 28px 28px 0 0;
  position: relative;
}
.steps li:before {
  content: "";
  position: absolute;
  top: -5px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
}
.steps span {
  color: var(--orange);
  font-size: 19px;
}
.steps h3 {
  font: 600 30px var(--display);
  text-transform: uppercase;
  margin: 40px 0 8px;
}
.steps p {
  font-size: 15px;
  color: #9eadb6;
  max-width: 230px;
}
.offer-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 55px;
}
.pricing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1050px;
  margin: auto;
}
.price-card {
  position: relative;
  border: 1px solid var(--line);
  background: #fff;
  padding: 42px;
  display: flex;
  flex-direction: column;
}
.price-card.featured {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.featured-tag {
  position: absolute;
  right: 25px;
  top: -14px;
  background: var(--orange);
  color: #fff;
  padding: 6px 11px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
}
.plan-top {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid currentColor;
  padding-bottom: 12px;
  font-size: 12px;
  letter-spacing: 0.14em;
  opacity: 0.68;
}
.price-card h3 {
  font: 600 42px/0.95 var(--display);
  text-transform: uppercase;
  margin: 35px 0 14px;
}
.price-card > p {
  font-size: 15px;
  color: var(--muted);
  min-height: 65px;
}
.featured > p {
  color: #aab6be;
}
.price {
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
}
.featured .price {
  border-color: rgba(255, 255, 255, 0.18);
}
.price small {
  display: block;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.price strong {
  font: 600 48px var(--display);
}
.price-card ul {
  list-style: none;
  padding: 20px 0;
  margin: 0 0 28px;
}
.price-card li {
  font-size: 15px;
  padding: 8px 0 8px 23px;
  position: relative;
}
.price-card li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: bold;
}
.bonus {
  margin: 24px auto 0;
  max-width: 1050px;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 20px;
  font-size: 15px;
}
.bonus span {
  font-weight: 700;
  color: var(--orange);
}
.bonus i {
  width: 4px;
  height: 4px;
  background: var(--orange);
  border-radius: 50%;
}
.faq-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 12%;
}
.faq-layout > div:first-child p:last-child {
  color: var(--muted);
}
.accordion {
  border-top: 1px solid var(--line);
}
details {
  border-bottom: 1px solid var(--line);
}
summary {
  list-style: none;
  cursor: pointer;
  padding: 23px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
}
summary::-webkit-details-marker {
  display: none;
}
summary span {
  font-size: 25px;
  color: var(--orange);
  transition: transform 0.2s;
}
details[open] summary span {
  transform: rotate(45deg);
}
details p {
  margin: 0;
  padding: 0 40px 24px 0;
  color: var(--muted);
  font-size: 15px;
}
.guarantee {
  padding-top: 80px;
  padding-bottom: 80px;
}
.guarantee-card {
  background: var(--orange);
  color: #fff;
  padding: 70px;
  display: grid;
  grid-template-columns: 0.45fr 1.55fr;
  align-items: center;
  gap: 8%;
}
.guarantee-number {
  font: 700 160px/0.7 var(--display);
  display: flex;
  align-items: flex-end;
}
.guarantee-number small {
  font-size: 26px;
  text-transform: uppercase;
  margin-left: 8px;
}
.guarantee-card h2 {
  font-size: 55px;
}
.guarantee-card p:last-child {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.8);
}
.final-cta {
  position: relative;
  min-height: 710px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.final-media {
  background-image: url("https://images.unsplash.com/photo-1494783367193-149034c05e8f?auto=format&fit=crop&w=2000&q=86");
  background-position: center;
}
.final-overlay {
  position: absolute;
  inset: 0;
  background: rgba(4, 18, 30, 0.74);
}
.final-content {
  position: relative;
  z-index: 1;
  max-width: 860px;
  padding: 80px 30px;
}
.final-content h2 {
  font-size: clamp(60px, 7vw, 96px);
}
.final-content > p:not(.eyebrow) {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.78);
  max-width: 680px;
  margin: 25px auto 32px;
}
.final-content .btn {
  display: flex;
  width: max-content;
  margin: auto;
}
.final-content small {
  display: block;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.55);
}
footer {
  background: #04131f;
  color: #fff;
  min-height: 210px;
  padding: 55px max(32px, calc((100vw - var(--max)) / 2));
  display: grid;
  grid-template-columns: 1fr 1.4fr 0.7fr 0.7fr;
  gap: 50px;
  align-items: center;
}
.footer-brand {
  width: max-content;
}
footer p {
  font-size: 11px;
  color: #82919b;
  max-width: 350px;
}
footer > div {
  display: flex;
  gap: 18px;
  font-size: 11px;
}
footer a:hover {
  color: var(--orange);
}
.floating-wa {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 20;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
  transition: background 0.2s;
}
.floating-wa:hover {
  background: #1fb959;
}
.floating-wa svg {
  width: 27px;
  fill: #fff;
}
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
/* Escala tipográfica ampliada em no mínimo 5px */
body { font-size: 23px; }
.brand { font-size: 27px; }
.brand small { font-size: 15px; }
.topbar nav,
.btn { font-size: 19px; }
.eyebrow { font-size: 17px; }
.hero h1 { font-size: clamp(69px, 7.4vw, 121px); }
.hero-copy { font-size: 24px; max-width: 780px; }
.microcopy { font-size: 18px; }
.hero-index { font-size: 16px; }
.trust-strip { font-size: 17px; }
.section-label { font-size: 17px; }
.section-label b { font-size: 18px; }
h2 { font-size: clamp(53px, 5vw, 83px); }
.intro-grid .lead { font-size: 28px; }
.intro-grid blockquote { font-size: 25px; }
.pain-list span,
.pillars li > span,
.steps span { font-size: 17px; }
.pain-list h3 { font-size: 33px; }
.pain-list p,
.pillars p,
.benefit-cards p,
.steps p,
.price-card > p,
.price-card li,
details p { font-size: 21px; }
.browser-bar span { font-size: 12px; }
.browser-image span { font-size: 45px; }
.phone-image { font-size: 21px; }
.phone-image b { font-size: 28px; }
.solution-copy h2 { font-size: clamp(50px, 4.6vw, 73px); }
.pillars h3 { font-size: 27px; }
.benefit-cards h3 { font-size: 31px; }
.steps h3 { font-size: 35px; }
.featured-tag { font-size: 14px; }
.plan-top { font-size: 16px; }
.price-card h3 { font-size: 47px; }
.price small { font-size: 17px; }
.price strong { font-size: 53px; }
.bonus { font-size: 18px; }
summary span { font-size: 28px; }
.guarantee-number { font-size: 165px; }
.guarantee-number small { font-size: 31px; }
.guarantee-card h2 { font-size: 60px; }
.final-content h2 { font-size: clamp(65px, 7vw, 101px); }
.final-content > p:not(.eyebrow) { font-size: 23px; }
.final-content small,
footer p,
footer > div { font-size: 18px; }
*:focus-visible {
  outline: 3px solid #ffb38d;
  outline-offset: 4px;
}
@media (max-width: 1000px) {
  .topbar {
    width: calc(100% - 40px);
  }
  .topbar nav {
    display: none;
  }
  .section {
    padding: 90px 28px;
  }
  .dark,
  .sand {
    padding-left: 28px;
    padding-right: 28px;
  }
  .hero-content {
    width: calc(100% - 50px);
  }
  .route-line {
    display: none;
  }
  .pain-list {
    grid-template-columns: 1fr 1fr;
  }
  .pain-list article:nth-child(2) {
    border-right: 0;
  }
  .pain-list article:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  .solution-grid {
    grid-template-columns: 1fr;
  }
  .device-stage {
    height: 520px;
  }
  .solution-copy {
    padding-top: 40px;
  }
  .benefit-grid {
    grid-template-columns: 1fr;
  }
  .benefit-grid > div:first-child {
    position: static;
    margin-bottom: 50px;
  }
  .steps {
    grid-template-columns: 1fr 1fr;
    gap: 40px 0;
  }
  .faq-layout {
    gap: 7%;
  }
  .bonus {
    flex-wrap: wrap;
    gap: 12px 24px;
  }
  .trust-strip > span {
    display: none;
  }
  .trust-strip > div {
    width: 100%;
    min-width: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
  }
  .trust-strip > div i {
    display: none;
  }
  .trust-strip > div b {
    min-width: 0;
    text-align: center;
  }
  footer {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 700px) {
  h1,
  h2,
  h3,
  summary,
  .btn {
    max-width: 100%;
    overflow-wrap: anywhere;
  }
  summary {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
  }
  .topbar {
    height: 76px;
  }
  .topbar > .btn {
    display: none;
  }
  .brand {
    font-size: 18px;
  }
  .brand svg {
    width: 31px;
  }
  .hero {
    min-height: 720px;
  }
  .hero-shade {
    background:
      linear-gradient(90deg, rgba(3, 15, 25, 0.9), rgba(3, 15, 25, 0.48)),
      linear-gradient(0deg, rgba(3, 15, 25, 0.72), transparent);
  }
  .hero-content {
    margin-top: 65px;
  }
  .hero h1 {
    font-size: 58px;
  }
  .hero-copy {
    font-size: 14px;
    line-height: 1.55;
  }
  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .hero-actions .text-link {
    width: max-content;
  }
  .hero-index {
    display: none;
  }
  .trust-strip {
    padding: 17px 20px;
    min-height: 70px;
  }
  .trust-strip > div {
    width: 100%;
    justify-content: space-between;
    gap: 8px;
    font-size: 8px;
  }
  .section {
    padding: 72px 20px;
  }
  .section-label {
    margin-bottom: 46px;
  }
  .intro-grid,
  .pain-head,
  .process-head,
  .pricing,
  .faq-layout {
    grid-template-columns: 1fr;
  }
  .intro-grid {
    gap: 34px;
  }
  .intro-grid .lead {
    font-size: 18px;
  }
  .pain-head,
  .process-head {
    gap: 25px;
  }
  .pain-list {
    grid-template-columns: 1fr;
  }
  .pain-list article,
  .pain-list article + article {
    padding: 24px 0;
    border-right: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    min-height: auto;
  }
  .pain-list h3 {
    margin: 22px 0 8px;
  }
  .device-stage {
    height: 390px;
  }
  .browser-image {
    height: 240px;
  }
  .browser-image span {
    font-size: 30px;
  }
  .phone {
    width: 108px;
    height: 225px;
  }
  .solution-copy h2 {
    font-size: 44px;
  }
  .benefit-cards {
    grid-template-columns: 1fr;
  }
  .benefit-cards article {
    min-height: 220px;
    padding: 28px;
  }
  .benefit-cards h3 {
    margin-top: 38px;
  }
  .steps {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .offer-head {
    text-align: left;
  }
  .price-card {
    padding: 28px 22px;
  }
  .price-card h3 {
    font-size: 37px;
  }
  .bonus {
    align-items: flex-start;
    flex-direction: column;
  }
  .bonus i {
    display: none;
  }
  .faq-layout {
    gap: 38px;
  }
  .guarantee {
    padding: 0;
  }
  .guarantee-card {
    padding: 55px 24px;
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .guarantee-number {
    font-size: 120px;
  }
  .guarantee-card h2 {
    font-size: 45px;
  }
  .final-cta {
    min-height: 660px;
  }
  .final-content h2 {
    font-size: 56px;
  }
  .final-content .btn {
    width: 100%;
  }
  footer {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 48px 24px;
  }
  .floating-wa {
    right: 16px;
    bottom: 16px;
  }
  .reveal {
    transform: none;
  }
}
@media (max-width: 700px) {
  .brand {
    font-size: 23px;
  }
  .hero {
    height: auto;
    min-height: 0;
    align-items: flex-start;
    padding: 120px 0 64px;
  }
  .hero-content {
    margin-top: 0;
  }
  .hero .eyebrow {
    margin-bottom: 18px;
    letter-spacing: 0.16em;
  }
  .hero h1 {
    font-size: 63px;
  }
  .hero-copy {
    font-size: 21px;
  }
  .trust-strip > div {
    font-size: 15px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 20px;
  }
  .trust-strip > div i {
    display: none;
  }
  .intro-grid .lead {
    font-size: 25px;
  }
  .section-label {
    font-size: 16px;
  }
  .browser-image span {
    font-size: 35px;
  }
  .solution-copy h2 {
    font-size: 49px;
  }
  .price-card h3 {
    font-size: 42px;
  }
  .guarantee-number {
    font-size: 125px;
  }
  .guarantee-card h2 {
    font-size: 50px;
  }
  .final-content h2 {
    font-size: 61px;
  }
  .final-content {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding-left: 20px;
    padding-right: 20px;
  }
  .final-content .btn {
    width: 100%;
    min-width: 0;
    gap: 12px;
    padding: 12px 16px;
    line-height: 1.3;
    white-space: normal;
    text-align: left;
  }
  .final-content > p:not(.eyebrow) {
    font-size: 22px;
  }
}
@media (max-width: 340px) {
  .hero h1 {
    font-size: 58px;
  }
  .final-content h2 {
    font-size: 56px;
  }
  .trust-strip > div {
    grid-template-columns: 1fr;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  * {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }
}
