:root {
  --blue: #0800ff;
  --blue-700: #0500b8;
  --cyan: #18c9e8;
  --cyan-100: #e8fbff;
  --ink: #101828;
  --muted: #667085;
  --line: #e6eaf2;
  --soft: #f5f8fc;
  --white: #ffffff;
  --dark: #060b28;
  --radius: 8px;
  --shadow: 0 20px 50px rgba(16, 24, 40, 0.12);
  --header-height: 82px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -100px;
  z-index: 200;
  padding: 10px 14px;
  color: var(--white);
  background: var(--blue);
  border-radius: var(--radius);
}

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

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.section-pad {
  padding: 104px 0;
}

.section-soft {
  background: linear-gradient(180deg, #f8fbff 0%, #eef6fb 100%);
}

.section-dark {
  color: var(--white);
  background:
    radial-gradient(circle at 86% 18%, rgba(24, 201, 232, 0.2), transparent 34%),
    linear-gradient(135deg, #050820 0%, #06144d 48%, #0500b8 100%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(230, 234, 242, 0.85);
  backdrop-filter: blur(18px);
}

.nav {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  position: relative;
  width: 44px;
  height: 38px;
  flex: 0 0 auto;
}

.brand-mark span {
  position: absolute;
  display: block;
  border-radius: 7px;
  transform: skewX(-14deg);
}

.brand-mark span:nth-child(1) {
  left: 0;
  top: 2px;
  width: 26px;
  height: 34px;
  background: var(--blue);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.brand-mark span:nth-child(2) {
  right: 0;
  top: 0;
  width: 27px;
  height: 27px;
  background: var(--cyan);
}

.brand-mark span:nth-child(3) {
  right: 12px;
  bottom: 0;
  width: 24px;
  height: 12px;
  background: #63d9ef;
}

.brand-copy {
  display: grid;
  gap: 1px;
}

.brand-copy strong {
  font-size: 1.35rem;
  line-height: 1;
  color: var(--cyan);
  letter-spacing: 0;
}

.brand-copy strong span {
  color: var(--blue);
}

.brand-copy small {
  font-size: 0.64rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #344054;
  font-weight: 700;
  font-size: 0.94rem;
}

.nav-panel a:not(.btn) {
  position: relative;
  padding: 8px 0;
}

.nav-panel a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--cyan);
  transition: transform 0.2s ease;
}

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

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.btn:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(24, 201, 232, 0.42);
  outline-offset: 3px;
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 16px 34px rgba(8, 0, 255, 0.2);
}

.btn-primary:hover {
  box-shadow: 0 22px 44px rgba(8, 0, 255, 0.28);
}

.btn-secondary {
  color: var(--blue);
  background: var(--white);
  border-color: rgba(8, 0, 255, 0.18);
}

.btn-secondary.light {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.34);
}

.btn-small {
  min-height: 42px;
  padding: 0 16px;
}

.full {
  width: 100%;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fbff 54%, #edf7fb 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 0, 255, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(24, 201, 232, 0.06) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent 82%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.92fr);
  align-items: center;
  gap: 54px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--blue);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
}

.eyebrow::before {
  content: "";
  width: 36px;
  height: 2px;
  background: var(--cyan);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(2.55rem, 7vw, 5.6rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.14rem;
  line-height: 1.22;
}

.hero-copy p,
.section-heading p {
  color: var(--muted);
  font-size: 1.1rem;
}

.hero-copy p {
  max-width: 680px;
  margin-bottom: 26px;
  font-size: 1.22rem;
}

.hero-highlight {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  align-items: center;
  max-width: 660px;
  margin-bottom: 30px;
  padding: 14px 18px;
  color: #0f2f5c;
  background: var(--cyan-100);
  border: 1px solid rgba(24, 201, 232, 0.28);
  border-radius: var(--radius);
}

.hero-highlight strong {
  color: var(--blue);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.mockup-shell {
  overflow: hidden;
  border: 1px solid rgba(8, 0, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
}

.mockup-top {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  background: #fbfdff;
}

.mockup-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--line);
}

.mockup-top span:nth-child(1) {
  background: var(--blue);
}

.mockup-top span:nth-child(2) {
  background: var(--cyan);
}

.mockup-top strong {
  margin-left: auto;
  color: #475467;
  font-size: 0.86rem;
}

.mockup-content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 18px;
}

.metric-card,
.dashboard-card {
  min-height: 128px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.metric-card {
  color: var(--white);
  border: none;
}

.accent-blue {
  background: linear-gradient(135deg, var(--blue), #1726ff);
}

.accent-cyan {
  color: #06334a;
  background: linear-gradient(135deg, #7decff, var(--cyan));
}

.metric-card span,
.dashboard-card span {
  display: block;
  margin-bottom: 8px;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.82;
}

.metric-card strong {
  display: block;
  font-size: 1.75rem;
  line-height: 1.1;
}

.metric-card small {
  display: block;
  margin-top: 10px;
  opacity: 0.82;
}

.pipeline,
.wide {
  grid-column: 1 / -1;
}

.pipeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.pipeline div {
  min-height: 84px;
  padding: 14px;
  border-radius: var(--radius);
  background: #f3f7ff;
  border: 1px solid var(--line);
}

.pipeline span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.pipeline strong {
  color: var(--blue);
  font-size: 1.5rem;
}

.bar-chart {
  display: flex;
  align-items: end;
  gap: 10px;
  height: 78px;
}

.bar-chart i {
  flex: 1;
  min-width: 22px;
  border-radius: 5px 5px 0 0;
  background: linear-gradient(180deg, var(--cyan), var(--blue));
}

.bar-chart i:nth-child(1) { height: 38%; }
.bar-chart i:nth-child(2) { height: 62%; }
.bar-chart i:nth-child(3) { height: 48%; }
.bar-chart i:nth-child(4) { height: 80%; }
.bar-chart i:nth-child(5) { height: 66%; }

.benefit-strip {
  padding: 24px 0;
  color: var(--white);
  background: linear-gradient(90deg, var(--blue), var(--cyan));
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
}

.strip-grid div {
  min-height: 86px;
  padding: 18px 22px;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.strip-grid div:first-child {
  border-left: 0;
}

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

.strip-grid span {
  opacity: 0.82;
}

.split-section,
.speed-grid,
.plan-wrap,
.contact-grid,
.personalization {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  align-items: start;
  gap: 54px;
}

.section-heading {
  max-width: 650px;
}

.center {
  margin: 0 auto 46px;
  text-align: center;
}

.center .eyebrow {
  justify-content: center;
}

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

.comparison article,
.timeline-compare article,
.price-card,
.testimonial,
.lead-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 36px rgba(16, 24, 40, 0.08);
}

.comparison article {
  padding: 28px;
}

.comparison .after,
.timeline-compare .after {
  border-color: rgba(8, 0, 255, 0.2);
  box-shadow: 0 18px 42px rgba(8, 0, 255, 0.12);
}

.label,
.badge {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 10px;
  color: var(--blue);
  background: var(--cyan-100);
  border-radius: 999px;
  font-weight: 900;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.label.muted {
  color: #475467;
  background: #eef2f6;
}

ul {
  margin: 0;
  padding-left: 18px;
}

li {
  margin: 8px 0;
  color: #475467;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.solution-card {
  min-height: 230px;
  padding: 24px;
  border: 1px solid rgba(230, 234, 242, 0.96);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.solution-card:hover {
  transform: translateY(-5px);
  border-color: rgba(24, 201, 232, 0.4);
  box-shadow: 0 18px 36px rgba(16, 24, 40, 0.1);
}

.line-icon {
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 22px;
  color: var(--blue);
  border: 2px solid rgba(8, 0, 255, 0.18);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(8, 0, 255, 0.08), rgba(24, 201, 232, 0.13));
}

.line-icon svg,
.flow-icon svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.solution-card:nth-child(2n) .line-icon,
.solution-card:nth-child(3n) .line-icon {
  color: #069bc4;
  border-color: rgba(24, 201, 232, 0.26);
  background: linear-gradient(135deg, rgba(24, 201, 232, 0.13), rgba(8, 0, 255, 0.06));
}

.solution-card p,
.testimonial p,
.timeline-compare p {
  color: var(--muted);
}

.flow-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(9, minmax(120px, 1fr));
  gap: 12px;
  overflow-x: auto;
  padding: 4px 2px 18px;
  list-style: none;
  counter-reset: flow;
}

.flow-list li {
  position: relative;
  min-height: 124px;
  margin: 0;
  padding: 56px 14px 14px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(16, 24, 40, 0.07);
}

.flow-list li::before {
  counter-increment: flow;
  content: counter(flow, decimal-leading-zero);
  position: absolute;
  left: 14px;
  top: 12px;
  color: var(--blue);
  font-size: 0.8rem;
}

.flow-icon {
  position: absolute;
  left: 14px;
  top: 31px;
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--blue);
  border-radius: 7px;
  background: var(--cyan-100);
}

.flow-icon svg {
  width: 21px;
  height: 21px;
  stroke-width: 2;
}

.flow-list li span:last-child {
  display: block;
  margin-top: 18px;
}

.flow-list li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -13px;
  top: 50%;
  width: 13px;
  height: 2px;
  background: var(--cyan);
}

.personalization {
  align-items: center;
}

.section-dark .section-heading p,
.section-dark .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.section-dark .eyebrow::before {
  background: var(--cyan);
}

.feature-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.feature-cloud span {
  padding: 12px 15px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 800;
}

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

.timeline-compare article {
  padding: 28px;
}

.timeline-compare strong {
  display: block;
  margin-bottom: 12px;
  font-size: 2.2rem;
  color: var(--blue);
}

.price-card {
  position: relative;
  padding: 34px;
}

.price-card h3 {
  font-size: 1.7rem;
}

.price-row,
.monthly {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.price-row span,
.monthly span {
  color: var(--muted);
  font-weight: 800;
}

.price-row strong {
  color: var(--blue);
  font-size: 2.35rem;
  line-height: 1;
}

.installments {
  margin: 0 0 14px;
  padding: 10px 12px;
  color: #0f2f5c;
  background: var(--cyan-100);
  border-radius: var(--radius);
  font-weight: 800;
}

.monthly strong {
  color: var(--ink);
}

.check-list {
  margin: 8px 0 28px;
}

.check-list li {
  color: #344054;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.testimonial {
  padding: 28px;
}

.testimonial p {
  min-height: 104px;
  font-size: 1.02rem;
}

.testimonial span {
  color: var(--blue);
  font-weight: 900;
}

.faq-list {
  display: grid;
  max-width: 900px;
  margin: 0 auto;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

summary {
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 900;
}

details p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--muted);
}

.final-cta {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), #0c54ff 50%, var(--cyan));
}

.final-cta-box {
  max-width: 840px;
  text-align: center;
}

.final-cta h2 {
  margin-bottom: 16px;
}

.final-cta p {
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.15rem;
}

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

.contact-note {
  margin-top: 28px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.contact-note strong,
.contact-note a {
  display: block;
}

.contact-note a {
  color: var(--blue);
  font-weight: 900;
}

.lead-form {
  padding: 30px;
}

.form-row {
  margin-bottom: 18px;
}

.form-row.split {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

label {
  display: block;
  margin-bottom: 7px;
  color: #344054;
  font-weight: 900;
}

input,
textarea {
  width: 100%;
  border: 1px solid #d0d5dd;
  border-radius: var(--radius);
  padding: 13px 14px;
  color: var(--ink);
  background: var(--white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

textarea {
  resize: vertical;
}

.form-row.invalid input,
.form-row.invalid textarea,
.form-row div.invalid input {
  border-color: #d92d20;
  box-shadow: 0 0 0 3px rgba(217, 45, 32, 0.1);
}

.error-message {
  display: block;
  min-height: 18px;
  margin-top: 5px;
  color: #d92d20;
  font-size: 0.82rem;
}

.form-status {
  min-height: 24px;
  margin: 14px 0 0;
  font-weight: 900;
}

.form-status.success {
  color: #027a48;
}

.form-status.error {
  color: #d92d20;
}

.site-footer {
  padding: 56px 0 26px;
  color: rgba(255, 255, 255, 0.82);
  background: var(--dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 38px;
}

.footer-brand .brand-copy small {
  color: rgba(255, 255, 255, 0.62);
}

.site-footer h3 {
  color: var(--white);
  font-size: 1rem;
}

.site-footer a {
  display: block;
  margin: 8px 0;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--cyan);
}

.footer-bottom {
  margin-top: 38px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: var(--white);
  border-radius: 50%;
  background: linear-gradient(135deg, #02b875, #20d990);
  box-shadow: 0 14px 34px rgba(2, 184, 117, 0.32);
  font-weight: 900;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1080px) {
  .hero-grid,
  .split-section,
  .speed-grid,
  .plan-wrap,
  .contact-grid,
  .personalization {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 38px;
  }

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

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

  .strip-grid div:nth-child(odd) {
    border-left: 0;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 74px;
  }

  .container {
    width: min(100% - 30px, 1160px);
  }

  .section-pad {
    padding: 76px 0;
  }

  .menu-toggle {
    display: block;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .nav-panel {
    position: fixed;
    inset: var(--header-height) 0 auto 0;
    display: grid;
    gap: 0;
    padding: 18px 20px 24px;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 24px 40px rgba(16, 24, 40, 0.12);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .nav-panel.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-panel a {
    padding: 13px 0;
  }

  .nav-panel .btn {
    margin-top: 12px;
  }

  h1 {
    font-size: clamp(2.45rem, 12vw, 4.8rem);
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

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

  .comparison,
  .timeline-compare,
  .testimonial-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .mockup-content {
    grid-template-columns: 1fr;
  }

  .pipeline,
  .wide {
    grid-column: auto;
  }

  .pipeline {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .brand-copy small {
    display: none;
  }

  .actions,
  .center-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .strip-grid,
  .cards-grid,
  .form-row.split {
    grid-template-columns: 1fr;
  }

  .strip-grid div {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
  }

  .strip-grid div:first-child {
    border-top: 0;
  }

  .price-row,
  .monthly {
    display: grid;
    gap: 8px;
  }

  .price-row strong {
    font-size: 2rem;
  }

  .lead-form,
  .price-card,
  .comparison article,
  .timeline-compare article,
  .testimonial {
    padding: 22px;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
  }
}
