:root {
  --navy: #071b2b;
  --navy-2: #0b2f43;
  --navy-3: #123f55;
  --green: #13b86c;
  --green-dark: #08794a;
  --mint: #ddf8ea;
  --cyan: #5edbc9;
  --gold: #f3bb4a;
  --cream: #fff8ee;
  --paper: #fbfdfc;
  --white: #ffffff;
  --ink: #142630;
  --muted: #61727b;
  --line: #dce8e3;
  --shadow: 0 22px 60px rgba(7, 27, 43, 0.14);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--white);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
}

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

.container {
  width: min(calc(100% - 30px), 1120px);
  margin-inline: auto;
}

.narrow {
  width: min(calc(100% - 30px), 820px);
}

.topbar {
  min-height: 36px;
  padding: 9px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #03121d;
  color: #d1fae5;
  font-size: 8.5px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-align: center;
  white-space: nowrap;
}

.topbar span {
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(19, 184, 108, 0.14);
}

.topbar i {
  color: var(--gold);
  font-style: normal;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 40px 0 68px;
  background:
    radial-gradient(circle at 8% 8%, rgba(94, 219, 201, 0.16), transparent 31%),
    radial-gradient(circle at 100% 62%, rgba(19, 184, 108, 0.18), transparent 35%),
    linear-gradient(150deg, #061722 0%, #082639 58%, #0b3548 100%);
  color: var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto -170px -210px auto;
  width: 360px;
  height: 360px;
  border: 55px solid rgba(255, 255, 255, 0.025);
  border-radius: 50%;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 50px;
}

.eyebrow,
.kicker {
  display: inline-block;
  color: var(--green-dark);
  font-size: 10px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow {
  padding: 9px 11px;
  border: 1px solid rgba(94, 219, 201, 0.25);
  border-radius: 999px;
  background: rgba(94, 219, 201, 0.09);
  color: #9df0df;
}

.hero h1 {
  margin: 18px 0 18px;
  max-width: 660px;
  color: var(--white);
  font-size: clamp(37px, 10.4vw, 51px);
  font-weight: 850;
  line-height: 1.01;
  letter-spacing: -0.052em;
}

.hero h1 em {
  color: #7ce5bd;
  font-style: normal;
}

.hero-lead {
  margin: 0 0 22px;
  max-width: 620px;
  color: #c5d5dc;
  font-size: 16px;
  line-height: 1.58;
}

.hero-lead strong {
  color: var(--white);
}

.hero-list {
  display: grid;
  gap: 11px;
  margin: 0 0 25px;
  padding: 0;
  list-style: none;
}

.hero-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #e4eff2;
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.38;
}

.check,
.mini-check {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
}

.check {
  width: 21px;
  height: 21px;
}

.check svg {
  width: 13px;
  height: 13px;
}

.mini-check {
  width: 20px;
  height: 20px;
}

.mini-check svg {
  width: 12px;
  height: 12px;
}

.cta {
  min-height: 60px;
  width: 100%;
  padding: 16px 19px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 13px;
  background: linear-gradient(180deg, #0a8650 0%, #076d42 100%);
  color: var(--white);
  box-shadow: 0 15px 32px rgba(9, 155, 87, 0.34), inset 0 1px rgba(255, 255, 255, 0.3);
  font-size: 12.5px;
  font-weight: 900;
  letter-spacing: 0.025em;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.cta > svg {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(9, 155, 87, 0.42), inset 0 1px rgba(255, 255, 255, 0.3);
}

.cta:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.purchase-line {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: #aebfc6;
  font-size: 9.5px;
  text-align: center;
}

.purchase-line svg {
  width: 14px;
  height: 14px;
  color: #8ee9c1;
}

.hero-clarity {
  margin: 17px 0 0;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.055);
  color: #9fb2bb;
  font-size: 10.5px;
  line-height: 1.5;
}

.hero-clarity strong {
  color: #dff9ec;
}

.mechanism-visual {
  position: relative;
  min-height: 535px;
  display: grid;
  place-items: center;
}

.orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(94, 219, 201, 0.13);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.orbit-one {
  width: 365px;
  height: 365px;
}

.orbit-two {
  width: 450px;
  height: 450px;
}

.phone-shell {
  position: relative;
  z-index: 2;
  width: min(286px, calc(100vw - 64px));
  padding: 8px;
  border: 2px solid #355269;
  border-radius: 42px;
  background: #020c14;
  box-shadow: 0 34px 70px rgba(0, 0, 0, 0.36), 0 0 0 8px rgba(255, 255, 255, 0.025);
  transform: rotate(1.1deg);
}

.phone-notch {
  position: absolute;
  z-index: 3;
  top: 8px;
  left: 50%;
  width: 102px;
  height: 22px;
  border-radius: 0 0 15px 15px;
  background: #020c14;
  transform: translateX(-50%);
}

.phone-screen {
  min-height: 492px;
  padding: 14px 12px 14px;
  overflow: hidden;
  border-radius: 33px;
  background: linear-gradient(180deg, #f9fcfb 0%, #edf6f2 100%);
  color: var(--ink);
}

.phone-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5px 13px;
  color: #29404c;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.phone-brand,
.price-product {
  display: flex;
  align-items: center;
  gap: 9px;
}

.phone-brand {
  padding: 5px 3px 13px;
}

.brand-mark {
  width: 37px;
  height: 37px;
  display: grid;
  place-items: center;
  flex: 0 0 37px;
  border-radius: 12px;
  background: linear-gradient(145deg, #12b76a, #58d8c6);
  color: var(--white);
  box-shadow: 0 8px 18px rgba(19, 184, 108, 0.24);
}

.brand-mark svg {
  width: 21px;
  height: 21px;
}

.phone-brand b,
.phone-brand small {
  display: block;
}

.phone-brand b {
  color: var(--navy);
  font-size: 12px;
}

.phone-brand small {
  margin-top: 2px;
  color: #83929a;
  font-size: 7.5px;
}

.phone-message {
  min-height: 107px;
  padding: 17px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 19px;
  background:
    radial-gradient(circle at 90% 10%, rgba(94, 219, 201, 0.28), transparent 34%),
    linear-gradient(145deg, #082538, #0e4053);
  color: var(--white);
  box-shadow: 0 14px 28px rgba(7, 27, 43, 0.2);
}

.phone-message small {
  color: #80e7ce;
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.phone-message strong {
  margin-top: 8px;
  font-size: 24px;
  line-height: 1;
  letter-spacing: -0.045em;
}

.phone-message span {
  margin-top: 4px;
  color: #bbccd3;
  font-size: 10px;
}

.phone-section-title {
  margin: 17px 2px 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.phone-section-title b {
  color: var(--navy);
  font-size: 9px;
}

.phone-section-title span {
  color: #8b999f;
  font-size: 7px;
}

.phone-task {
  margin-top: 7px;
  padding: 10px;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 10px;
  align-items: center;
  gap: 9px;
  border: 1px solid #e0ebe6;
  border-radius: 13px;
  background: var(--white);
  box-shadow: 0 7px 17px rgba(7, 27, 43, 0.055);
}

.task-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
}

.task-icon svg {
  width: 17px;
  height: 17px;
}

.task-icon.teal {
  background: #dcf8ee;
  color: #078157;
}

.task-icon.blue {
  background: #e1eef7;
  color: #235d7e;
}

.task-icon.gold {
  background: #fff2cf;
  color: #9a6810;
}

.phone-task b,
.phone-task small {
  display: block;
  min-width: 0;
}

.phone-task b {
  color: #203640;
  font-size: 8.7px;
  line-height: 1.25;
}

.phone-task small {
  margin-top: 3px;
  color: #84949b;
  font-size: 6.8px;
  line-height: 1.25;
}

.task-arrow {
  color: #8ca098;
  font-size: 18px;
}

.phone-footer {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #5f746d;
  font-size: 7.5px;
  font-weight: 800;
}

.phone-footer > span {
  width: 16px;
  height: 16px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
}

.phone-footer svg {
  width: 10px;
  height: 10px;
}

.visual-badge {
  position: absolute;
  z-index: 4;
  min-height: 38px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--navy);
  box-shadow: 0 15px 34px rgba(0, 0, 0, 0.24);
  font-size: 8.5px;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.visual-badge svg {
  width: 17px;
  height: 17px;
  color: var(--green-dark);
}

.visual-badge > span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(19, 184, 108, 0.13);
}

.badge-top {
  top: 50px;
  left: -2px;
  transform: rotate(-4deg);
}

.badge-bottom {
  right: -2px;
  bottom: 42px;
  transform: rotate(3deg);
}

.proof-strip {
  padding: 21px 0;
  border-bottom: 1px solid #e4ede9;
  background: var(--white);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 17px 10px;
}

.proof-grid > div {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  text-align: center;
}

.proof-grid b {
  color: var(--green-dark);
  font-size: 9px;
  letter-spacing: 0.08em;
}

.proof-grid span {
  color: #50636c;
  font-size: 11px;
  font-weight: 750;
}

.section {
  padding: 74px 0;
}

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

.section-heading.compact {
  margin-bottom: 30px;
}

.section h2,
.final-section h2 {
  margin: 14px 0 17px;
  color: var(--navy);
  font-size: clamp(32px, 9vw, 44px);
  font-weight: 840;
  line-height: 1.06;
  letter-spacing: -0.047em;
}

.section-heading > p,
.why-lead,
.plan-copy > p,
.offer-copy > p,
.guarantee-card p,
.final-section > .container > p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.67;
}

.mechanism-section {
  background: var(--paper);
}

.mechanism-steps {
  display: grid;
  gap: 12px;
}

.mechanism-steps article {
  position: relative;
  padding: 23px 21px 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 19px;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(7, 27, 43, 0.055);
}

.step-icon {
  width: 49px;
  height: 49px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: var(--mint);
  color: var(--green-dark);
}

.step-icon svg {
  width: 26px;
  height: 26px;
}

.step-count {
  position: absolute;
  top: 16px;
  right: 18px;
  color: #d7e6e0;
  font-size: 29px;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.mechanism-steps h3,
.value-list h3,
.guide-details h3,
.timeline h3,
.task-grid h3 {
  color: var(--navy);
}

.mechanism-steps h3 {
  margin: 18px 0 8px;
  font-size: 19px;
}

.mechanism-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.58;
}

.mechanism-note {
  margin-top: 16px;
  padding: 17px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border: 1px solid #bde8d3;
  border-radius: 15px;
  background: #effbf5;
}

.mechanism-note > svg {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  padding: 4px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
}

.mechanism-note p {
  margin: 0;
  color: #36534a;
  font-size: 12.5px;
  line-height: 1.55;
}

.contrast-section,
.plan-section,
.offer-section,
.final-section {
  background:
    radial-gradient(circle at 95% 5%, rgba(94, 219, 201, 0.12), transparent 29%),
    linear-gradient(150deg, #061722 0%, #0a2d40 100%);
  color: var(--white);
}

.contrast-section .section-heading h2,
.plan-section h2,
.offer-section h2,
.final-section h2 {
  color: var(--white);
}

.light {
  color: #80e7cf;
}

.comparison {
  display: grid;
  gap: 15px;
}

.comparison-card {
  position: relative;
  padding: 25px 21px;
  border-radius: 19px;
}

.comparison-card.faded {
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.045);
  color: #91a4ad;
}

.comparison-card.highlighted {
  border: 1px solid rgba(126, 231, 190, 0.35);
  background: rgba(255, 255, 255, 0.09);
  color: #edf8f4;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.17);
}

.comparison-label,
.fit-label {
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.comparison-card.faded .comparison-label {
  color: #738993;
}

.comparison-card.highlighted .comparison-label {
  color: #91edc5;
}

.comparison-card ul,
.fit-card ul,
.offer-copy ul {
  display: grid;
  gap: 13px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.comparison-card li,
.fit-card li,
.offer-copy li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  line-height: 1.42;
}

.comparison-card.faded li > span,
.fit-card.no li > span {
  color: #b57777;
  font-size: 20px;
  line-height: 0.95;
}

.best-fit {
  position: absolute;
  top: -10px;
  right: 16px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--gold);
  color: #3e2b06;
  font-size: 7.5px;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.why-section {
  background: var(--cream);
}

.why-grid {
  display: grid;
  gap: 37px;
}

.why-section h2,
.plan-copy h2,
.offer-copy h2 {
  margin: 14px 0 18px;
}

.why-lead strong {
  color: #2b414a;
}

.warning-card {
  margin-top: 24px;
  padding: 18px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border: 1px solid #b7dfce;
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 13px 34px rgba(7, 27, 43, 0.06);
}

.warning-card > svg {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  color: var(--green-dark);
}

.warning-card p {
  margin: 0;
  color: #53676f;
  font-size: 11.5px;
  line-height: 1.55;
}

.warning-card strong {
  color: var(--navy);
}

.value-list {
  display: grid;
  gap: 10px;
}

.value-list article {
  padding: 17px;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 13px;
  border: 1px solid #eadfce;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.84);
}

.value-list article > span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: var(--navy);
  color: #88e6c1;
  font-size: 10px;
  font-weight: 900;
}

.value-list h3 {
  margin: 1px 0 5px;
  font-size: 15px;
}

.value-list p {
  margin: 0;
  color: var(--muted);
  font-size: 11.5px;
  line-height: 1.52;
}

.kit-section {
  background: var(--white);
}

.guide-stack {
  position: relative;
  width: min(100%, 350px);
  height: 285px;
  margin: 0 auto 15px;
}

.guide-cover {
  position: absolute;
  top: 34px;
  left: 50%;
  width: 142px;
  height: 205px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px 12px 12px 8px;
  box-shadow: 0 24px 44px rgba(7, 27, 43, 0.25);
  transform-origin: 50% 100%;
}

.guide-cover::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: rgba(0, 0, 0, 0.16);
}

.guide-cover::after {
  content: "";
  position: absolute;
  right: -35px;
  bottom: -32px;
  width: 110px;
  height: 110px;
  border: 19px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.guide-one {
  z-index: 1;
  background: linear-gradient(155deg, #0a334a, #071827);
  color: var(--white);
  transform: translateX(-145px) rotate(-8deg);
}

.guide-two {
  z-index: 3;
  top: 13px;
  background: linear-gradient(155deg, #24c77b, #08794a);
  color: var(--white);
  transform: translateX(-50%);
}

.guide-three {
  z-index: 2;
  background: linear-gradient(155deg, #f9e8ba, #e7b34a);
  color: #1c3340;
  transform: translateX(5px) rotate(8deg);
}

.guide-brand {
  position: relative;
  z-index: 1;
  font-size: 6.5px;
  font-weight: 900;
  letter-spacing: 0.11em;
}

.guide-cover > svg {
  position: relative;
  z-index: 1;
  width: 35px;
  height: 35px;
  margin: 25px 0 14px;
}

.guide-cover small {
  position: relative;
  z-index: 1;
  margin-bottom: 4px;
  font-size: 6.5px;
  font-weight: 900;
  letter-spacing: 0.11em;
  opacity: 0.74;
}

.guide-cover strong {
  position: relative;
  z-index: 1;
  font-size: 16px;
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.guide-cover i {
  position: relative;
  z-index: 1;
  margin-top: 8px;
  font-size: 7px;
  font-style: normal;
  opacity: 0.74;
}

.guide-details {
  display: grid;
  gap: 11px;
}

.guide-details article {
  padding: 18px;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 13px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--paper);
}

.guide-number {
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.04em;
}

.guide-details h3 {
  margin: 0 0 6px;
  font-size: 16px;
}

.guide-details p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.54;
}

.cta-centered {
  margin: 24px auto 0;
}

.plan-grid {
  display: grid;
  gap: 37px;
}

.plan-copy > p,
.offer-copy > p {
  color: #b5c6cd;
}

.plan-result {
  margin-top: 23px;
  padding: 17px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border: 1px solid rgba(126, 231, 190, 0.3);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.06);
}

.plan-result > svg {
  width: 21px;
  height: 21px;
  flex: 0 0 21px;
  padding: 4px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
}

.plan-result p {
  margin: 0;
  color: #b9cbd2;
  font-size: 12px;
  line-height: 1.55;
}

.plan-result strong {
  color: var(--white);
}

.timeline {
  position: relative;
  display: grid;
  gap: 10px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 31px;
  bottom: 31px;
  left: 26px;
  width: 1px;
  background: rgba(126, 231, 190, 0.24);
}

.timeline article {
  position: relative;
  z-index: 1;
  padding: 16px;
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 13px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.065);
}

.timeline article > span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(126, 231, 190, 0.35);
  border-radius: 12px;
  background: #0b3748;
  color: #8ceac3;
  font-size: 10px;
  font-weight: 950;
}

.timeline small {
  color: #7eddbd;
  font-size: 7.5px;
  font-weight: 900;
  letter-spacing: 0.11em;
}

.timeline h3 {
  margin: 3px 0 4px;
  color: var(--white);
  font-size: 15px;
}

.timeline p {
  margin: 0;
  color: #9fb3bc;
  font-size: 11px;
  line-height: 1.45;
}

.task-section {
  background: var(--paper);
}

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

.task-grid article {
  min-height: 167px;
  padding: 16px 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 10px 26px rgba(7, 27, 43, 0.045);
}

.task-grid article > span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--mint);
  color: var(--green-dark);
  font-size: 9px;
  font-weight: 950;
}

.task-grid h3 {
  margin: 17px 0 7px;
  font-size: 15px;
  line-height: 1.2;
}

.task-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 10.8px;
  line-height: 1.48;
}

.fit-section {
  background: var(--cream);
}

.fit-grid {
  display: grid;
  gap: 13px;
}

.fit-card {
  padding: 23px 20px;
  border-radius: 18px;
}

.fit-card.yes {
  border: 1px solid #b9e4cf;
  background: var(--white);
  box-shadow: 0 14px 36px rgba(7, 27, 43, 0.06);
}

.fit-card.no {
  border: 1px solid #e4ddd4;
  background: rgba(255, 255, 255, 0.55);
  color: #7a7771;
}

.fit-card.yes .fit-label {
  color: var(--green-dark);
}

.fit-card.no .fit-label {
  color: #958d82;
}

.fit-card li {
  color: #344b55;
}

.fit-card.no li {
  color: #827e78;
}

.offer-grid {
  display: grid;
  gap: 54px;
}

.offer-copy ul {
  color: #e1ece8;
}

.price-card {
  position: relative;
  padding: 34px 20px 23px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 23px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 27px 70px rgba(0, 0, 0, 0.34);
}

.launch-tag {
  position: absolute;
  top: 0;
  left: 50%;
  width: max-content;
  max-width: calc(100% - 30px);
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--gold);
  color: #3d2b08;
  font-size: 7.5px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-align: center;
  transform: translate(-50%, -50%);
}

.price-product {
  justify-content: center;
}

.price-product small,
.price-product strong {
  display: block;
}

.price-product small {
  color: #7b8b92;
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.11em;
}

.price-product strong {
  margin-top: 3px;
  color: var(--navy);
  font-size: 18px;
}

.price-divider {
  height: 1px;
  margin: 24px 0 21px;
  background: #e3ece8;
}

.price-intro {
  margin: 0;
  color: #718188;
  font-size: 11px;
  text-align: center;
}

.price {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  color: var(--navy);
}

.price span {
  padding-top: 11px;
  font-size: 20px;
  font-weight: 900;
}

.price strong {
  font-size: 70px;
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.065em;
}

.single-payment {
  margin: 7px 0 21px;
  color: #6c7c83;
  font-size: 10px;
  text-align: center;
}

.price-card .cta {
  width: 100%;
}

.secure-line {
  margin-top: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #687b83;
  font-size: 9px;
}

.secure-line svg {
  width: 14px;
  height: 14px;
  color: var(--green-dark);
}

.price-benefits {
  margin-top: 18px;
  padding: 14px 0;
  display: flex;
  justify-content: center;
  gap: 14px;
  border-top: 1px solid #e5ece9;
  border-bottom: 1px solid #e5ece9;
  color: #47625b;
  font-size: 9px;
  font-weight: 800;
}

.price-disclaimer {
  margin: 14px 0 0;
  color: #879399;
  font-size: 8px;
  line-height: 1.5;
  text-align: center;
}

.guarantee-section {
  background: var(--white);
}

.guarantee-card {
  padding: 25px 20px;
  display: grid;
  gap: 22px;
  border: 1px solid #bde6d3;
  border-radius: 22px;
  background: linear-gradient(145deg, #f2fcf7, #fffdf8);
  box-shadow: 0 17px 44px rgba(7, 27, 43, 0.07);
}

.guarantee-seal {
  width: 96px;
  height: 96px;
  display: grid;
  place-content: center;
  justify-self: center;
  border: 1px solid #9fd9bd;
  border-radius: 50%;
  background: var(--white);
  color: var(--green-dark);
  box-shadow: 0 11px 28px rgba(7, 27, 43, 0.08), inset 0 0 0 7px #e9f9f1;
  text-align: center;
}

.guarantee-seal strong,
.guarantee-seal span {
  display: block;
}

.guarantee-seal strong {
  font-size: 42px;
  line-height: 0.9;
  letter-spacing: -0.05em;
}

.guarantee-seal span {
  margin-top: 5px;
  font-size: 8px;
  font-weight: 950;
  letter-spacing: 0.13em;
}

.guarantee-card h2 {
  margin-bottom: 12px;
}

.faq-section {
  background: var(--cream);
}

.faq-list {
  display: grid;
  gap: 9px;
}

details {
  overflow: hidden;
  border: 1px solid #e2e5df;
  border-radius: 14px;
  background: var(--white);
}

summary {
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  cursor: pointer;
  color: var(--navy);
  font-size: 13.5px;
  font-weight: 800;
  line-height: 1.35;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary > span {
  color: var(--green-dark);
  font-size: 22px;
  font-weight: 400;
  transition: transform 150ms ease;
}

details[open] summary > span {
  transform: rotate(45deg);
}

details p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.62;
}

.final-section {
  padding: 75px 0 88px;
  text-align: center;
}

.final-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(126, 231, 190, 0.3);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
  color: #83e7c2;
}

.final-icon svg {
  width: 30px;
  height: 30px;
}

.final-section > .container > p {
  color: #b5c7ce;
}

.final-trust {
  margin-top: 19px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 11px 15px;
  color: #91a8b2;
  font-size: 8.5px;
}

.final-trust span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.final-trust svg {
  width: 13px;
  height: 13px;
  color: #82e2bd;
}

footer {
  padding: 34px 0 106px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  background: #03121d;
  color: #758c97;
}

.footer-main {
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-size: 10px;
}

.footer-main div {
  display: grid;
  gap: 4px;
}

.footer-main strong {
  color: var(--white);
  font-size: 13px;
}

.footer-legal {
  max-width: 780px;
  margin: 24px auto 0;
  padding: 18px 15px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  color: #617984;
  font-size: 8px;
  line-height: 1.55;
  text-align: center;
}

.mobile-sticky {
  position: fixed;
  z-index: 50;
  right: 0;
  bottom: 0;
  left: 0;
  min-height: 72px;
  padding: 9px 11px calc(9px + env(safe-area-inset-bottom));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-top: 1px solid #dce7e2;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 -12px 35px rgba(7, 27, 43, 0.16);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.mobile-sticky > div {
  display: grid;
  gap: 1px;
}

.mobile-sticky small {
  color: #73838a;
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.mobile-sticky strong {
  color: var(--navy);
  font-size: 19px;
  letter-spacing: -0.035em;
}

.mobile-sticky a {
  min-height: 47px;
  padding: 12px 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border-radius: 11px;
  background: linear-gradient(180deg, #0a8650, #076d42);
  color: var(--white);
  box-shadow: 0 9px 21px rgba(9, 155, 87, 0.28);
  font-size: 9.5px;
  font-weight: 950;
  text-decoration: none;
}

.mobile-sticky a svg {
  width: 16px;
  height: 16px;
}

@media (min-width: 540px) {
  .topbar {
    font-size: 10px;
  }

  .container,
  .narrow {
    width: min(calc(100% - 48px), 1120px);
  }

  .hero-copy {
    max-width: 620px;
    margin-inline: auto;
    text-align: center;
  }

  .hero-list {
    width: max-content;
    max-width: 100%;
    margin-inline: auto;
    text-align: left;
  }

  .hero-clarity {
    text-align: left;
  }

  .cta {
    width: fit-content;
    min-width: 330px;
    margin-inline: auto;
  }

  .mechanism-visual {
    width: 440px;
    max-width: 100%;
    margin-inline: auto;
  }

  .proof-grid {
    grid-template-columns: repeat(4, 1fr);
  }

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

  .task-grid article {
    min-height: 160px;
  }

  .guarantee-card {
    padding: 34px;
    grid-template-columns: 110px minmax(0, 1fr);
    align-items: center;
  }

  .footer-main {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 760px) {
  .section {
    padding: 92px 0;
  }

  .section h2,
  .final-section h2 {
    font-size: 48px;
  }

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

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

  .comparison-card,
  .fit-card {
    padding: 30px;
  }

  .why-grid,
  .plan-grid,
  .offer-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 65px;
  }

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

  .guide-details article {
    grid-template-columns: 1fr;
  }

  .price-card {
    max-width: 430px;
    margin-inline: auto;
    padding: 40px 30px 28px;
  }

  .mobile-sticky {
    display: none;
  }

  footer {
    padding-bottom: 34px;
  }
}

@media (min-width: 980px) {
  .hero {
    padding: 72px 0 86px;
  }

  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 65px;
  }

  .hero-copy {
    max-width: none;
    margin: 0;
    text-align: left;
  }

  .hero h1 {
    font-size: 64px;
  }

  .hero-list {
    width: auto;
    margin-left: 0;
  }

  .hero .cta {
    margin-left: 0;
  }

  .purchase-line {
    justify-content: flex-start;
  }

  .hero-clarity {
    max-width: 590px;
  }

  .mechanism-visual {
    width: 430px;
  }

  .phone-shell {
    width: 305px;
  }

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

  .offer-grid {
    grid-template-columns: 1fr 420px;
  }
}

@media (max-width: 350px) {
  .topbar {
    gap: 4px;
    font-size: 7.5px;
    letter-spacing: 0.06em;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero {
    padding-top: 32px;
  }

  .hero h1 {
    margin-bottom: 14px;
  }

  .hero-lead {
    margin-bottom: 17px;
  }

  .hero-list {
    gap: 8px;
    margin-bottom: 18px;
  }

  .phone-shell {
    width: 270px;
  }

  .guide-cover {
    width: 132px;
  }

  .guide-one {
    transform: translateX(-135px) rotate(-8deg);
  }

  .guide-three {
    transform: translateX(3px) rotate(8deg);
  }

  .mobile-sticky strong {
    font-size: 17px;
  }

  .mobile-sticky a {
    padding-inline: 10px;
    font-size: 8.5px;
  }
}

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

  .cta,
  summary > span {
    transition: none;
  }
}

/* ===== Hero Dashboard Mockup (imagem após headline) ===== */
.hero-dashboard {
  margin: 22px 0 26px;
  padding: 0;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  max-width: 100%;
}

.hero-dashboard img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 520px;
  margin: 0 auto;
  border-radius: 16px;
  object-fit: cover;
}

/* Desktop: keep image elegant inside the left column */
@media (min-width: 900px) {
  .hero-dashboard {
    margin: 20px 0 28px;
    border-radius: 20px;
  }

  .hero-dashboard img {
    max-width: 480px;
  }
}

/* Mobile: full width of container, slightly tighter */
@media (max-width: 640px) {
  .hero-dashboard {
    margin: 18px 0 22px;
    border-radius: 16px;
  }

  .hero-dashboard img {
    max-width: 100%;
    border-radius: 14px;
  }
}

/* Improve desktop balance with the new dashboard image */
@media (min-width: 900px) {
  .hero-grid {
    align-items: start;
  }

  .hero-dashboard {
    max-width: 420px;
  }

  .hero-dashboard img {
    max-width: 420px;
  }
}


/* CTA móvel: permanece oculto até o visitante alcançar a primeira chamada comercial da página. */
.mobile-sticky {
  opacity: 0;
  pointer-events: none;
  transform: translateY(110%);
  transition: opacity 180ms ease, transform 220ms ease;
}
.mobile-sticky.mobile-sticky-ready {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* ===== Final conversion refinement: first commercial reveal ===== */
.first-offer {
  width: min(100%, 680px);
  margin: 34px auto 0;
  padding: 24px 18px 20px;
  border: 1px solid #cfe9dc;
  border-radius: 20px;
  background: linear-gradient(180deg, #f7fffb 0%, #ffffff 100%);
  box-shadow: 0 18px 45px rgba(7, 27, 43, 0.10);
  text-align: center;
}

.first-offer-label {
  display: inline-block;
  padding: 7px 10px;
  border-radius: 999px;
  background: #e8f8ef;
  color: var(--green-dark);
  font-size: 8px;
  font-weight: 950;
  letter-spacing: 0.09em;
}

.first-offer-clarity {
  max-width: 560px;
  margin: 15px auto 16px;
  color: #50636c;
  font-size: 11px;
  line-height: 1.55;
}

.first-offer-clarity strong {
  color: var(--navy);
}

.first-offer-price {
  display: grid;
  justify-items: center;
  gap: 2px;
  margin-bottom: 16px;
}

.first-offer-price small {
  color: #718188;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.first-offer-price strong {
  color: var(--navy);
  font-size: clamp(38px, 10vw, 52px);
  font-weight: 950;
  line-height: 1;
  letter-spacing: -0.055em;
}

.first-offer-price span {
  color: #6e7f86;
  font-size: 9.5px;
}

.first-offer .cta {
  max-width: 460px;
  margin: 0 auto;
}

.first-offer-trust {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: #667b73;
  font-size: 9.5px;
  line-height: 1.4;
}

.first-offer-trust svg {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  color: var(--green-dark);
}

/* ===== Responsive illustrative dashboard (replaces earnings mockup) ===== */
.hero-dashboard {
  margin: 22px 0 26px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(255,255,255,0.09), rgba(255,255,255,0.035));
  box-shadow: 0 20px 50px rgba(0,0,0,0.30);
  overflow: visible;
}

.dashboard-caption {
  margin-bottom: 13px;
  display: grid;
  gap: 3px;
}

.dashboard-caption small {
  color: #7ce5bd;
  font-size: 7.5px;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.dashboard-caption strong {
  color: #fff;
  font-size: 16px;
  line-height: 1.2;
}

.dashboard-caption span {
  color: #b9cbd2;
  font-size: 9.5px;
}

.dashboard-stage {
  position: relative;
  min-height: 270px;
}

.laptop-mockup {
  width: min(100%, 470px);
  margin: 0 auto;
  position: relative;
}

.laptop-screen {
  min-height: 230px;
  padding: 13px;
  border: 8px solid #101a20;
  border-bottom-width: 12px;
  border-radius: 16px 16px 9px 9px;
  background: #f5f8f7;
  color: var(--ink);
  box-shadow: 0 16px 30px rgba(0,0,0,0.32);
}

.laptop-base {
  width: 110%;
  height: 15px;
  margin-left: -5%;
  border-radius: 3px 3px 16px 16px;
  background: linear-gradient(180deg, #cbd3d6, #78868d);
  box-shadow: 0 8px 18px rgba(0,0,0,0.26);
}

.dash-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #dce7e2;
}

.dash-header > div {
  display: grid;
  gap: 1px;
}

.dash-header b {
  color: var(--navy);
  font-size: 11px;
}

.dash-header small,
.dash-header > span {
  color: #819198;
  font-size: 7px;
}

.dash-metrics {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
}

.dash-metrics > div {
  padding: 9px 8px;
  border: 1px solid #e1ebe7;
  border-radius: 9px;
  background: #fff;
}

.dash-metrics small {
  display: block;
  min-height: 20px;
  color: #738188;
  font-size: 6.4px;
  line-height: 1.3;
}

.dash-metrics strong {
  display: block;
  margin-top: 2px;
  color: var(--green-dark);
  font-size: 17px;
  line-height: 1;
}

.dash-list {
  margin-top: 9px;
  overflow: hidden;
  border: 1px solid #e1ebe7;
  border-radius: 9px;
  background: #fff;
}

.dash-list > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 7px 9px;
  border-bottom: 1px solid #edf2f0;
  font-size: 6.8px;
}

.dash-list > div:last-child { border-bottom: 0; }
.dash-list span { color: #40545d; }
.dash-list b { color: var(--green-dark); text-align: right; }

.dashboard-phone {
  position: absolute;
  right: -4px;
  bottom: -4px;
  width: 122px;
  min-height: 155px;
  padding: 18px 10px 12px;
  border: 7px solid #101a20;
  border-radius: 22px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 14px 28px rgba(0,0,0,0.32);
}

.phone-dot {
  position: absolute;
  top: 7px;
  left: 50%;
  width: 28px;
  height: 4px;
  border-radius: 999px;
  background: #202b31;
  transform: translateX(-50%);
}

.dashboard-phone b {
  display: block;
  margin: 12px 0 8px;
  color: var(--navy);
  font-size: 10px;
  line-height: 1.15;
}

.dashboard-phone span {
  display: block;
  color: #6d7f87;
  font-size: 7.4px;
  line-height: 1.45;
}

@media (max-width: 640px) {
  .hero-dashboard {
    margin: 18px 0 22px;
    padding: 13px;
    border-radius: 16px;
  }

  .dashboard-stage {
    min-height: 232px;
  }

  .laptop-screen {
    min-height: 195px;
    padding: 10px;
    border-width: 6px;
    border-bottom-width: 9px;
  }

  .dash-metrics > div {
    padding: 7px 6px;
  }

  .dash-metrics small {
    min-height: 17px;
    font-size: 5.8px;
  }

  .dash-metrics strong {
    font-size: 14px;
  }

  .dash-list > div {
    padding: 6px 7px;
    font-size: 6px;
  }

  .dashboard-phone {
    right: -2px;
    bottom: -2px;
    width: 100px;
    min-height: 130px;
    padding: 16px 8px 10px;
    border-width: 5px;
  }

  .dashboard-phone b { font-size: 8.5px; }
  .dashboard-phone span { font-size: 6.4px; }

  .first-offer {
    margin-top: 28px;
    padding: 21px 14px 18px;
    border-radius: 17px;
  }

  .first-offer-clarity {
    font-size: 10.5px;
  }

  .first-offer-trust {
    font-size: 8.8px;
  }
}

@media (max-width: 380px) {
  .dashboard-phone {
    width: 88px;
    min-height: 116px;
  }

  .dashboard-stage {
    min-height: 216px;
  }

  .dash-list > div:last-child {
    display: none;
  }
}

@media (max-width: 350px) {
  .guide-one { transform: translateX(-132px) rotate(-8deg); }
  .guide-three { transform: translateX(0) rotate(8deg); }
}

/* ===== Final mobile conversion polish ===== */
.inline-price-note {
  margin-top: 10px;
  color: #718188;
  font-size: 9.5px;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
}

.final-section .inline-price-note {
  color: #91a7b1;
}

/* The responsive dashboard already shows desktop + mobile. On phones,
   hide the second illustrative phone to reduce redundant scrolling. */
@media (max-width: 640px) {
  .mechanism-visual {
    display: none;
  }

  .hero {
    padding-bottom: 48px;
  }
}

/* ===== Hero dashboard image replacement ===== */
.hero-dashboard {
  padding: 0;
  overflow: hidden;
}
.hero-dashboard img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  margin: 0 auto;
  border-radius: 0;
}
@media (min-width: 900px) {
  .hero-dashboard {
    max-width: 520px;
  }
  .hero-dashboard img {
    max-width: 520px;
  }
}
@media (max-width: 640px) {
  .hero-dashboard {
    padding: 0;
    margin: 18px 0 22px;
  }
  .hero-dashboard img {
    max-width: 100%;
  }
}

/* ===== Destaque final: demanda confirmada no topo ===== */
.hero .eyebrow {
  display: block;
  width: fit-content;
  max-width: 100%;
  padding: 13px 17px;
  border: 1.5px solid rgba(113, 239, 211, 0.78);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(34, 143, 126, 0.32), rgba(19, 94, 91, 0.24));
  color: #c2fff2;
  font-size: clamp(13px, 3.35vw, 16px);
  font-weight: 950;
  line-height: 1.28;
  letter-spacing: 0.075em;
  text-shadow: 0 1px 10px rgba(118, 245, 218, 0.18);
  box-shadow: 0 0 0 1px rgba(100, 230, 203, 0.08), 0 0 24px rgba(65, 218, 187, 0.12);
}

@media (max-width: 640px) {
  .hero .eyebrow {
    width: 100%;
    padding: 14px 17px;
    font-size: clamp(13px, 3.6vw, 15px);
    line-height: 1.32;
  }
}

/* ===== CTA antecipado no final do bloco verde ===== */
.upper-cta-wrap {
  width: min(100%, 760px);
  margin: 24px auto 0;
}
.upper-cta {
  width: 100%;
  max-width: 100%;
  min-height: 64px;
  margin: 0 auto;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(0, 204, 102, 0.24), 0 0 0 1px rgba(255,255,255,0.08) inset;
}
.upper-cta-trust {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 0;
  color: rgba(255,255,255,0.88);
  font-size: 10px;
  font-weight: 700;
}
.upper-cta-trust span {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 2px 10px;
  text-align: center;
}
.upper-cta-trust span + span {
  border-left: 1px solid rgba(255,255,255,0.22);
}
.upper-cta-trust svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  color: #ffffff;
}
@media (max-width: 640px) {
  .upper-cta-wrap {
    margin-top: 22px;
  }
  .upper-cta {
    min-height: 62px;
    padding-left: 18px;
    padding-right: 18px;
    font-size: 15px;
  }
  .upper-cta-trust {
    margin-top: 13px;
    font-size: 9px;
  }
  .upper-cta-trust span {
    gap: 5px;
    padding: 2px 5px;
  }
  .upper-cta-trust svg {
    width: 16px;
    height: 16px;
  }
}
@media (max-width: 380px) {
  .upper-cta {
    font-size: 13.5px;
    letter-spacing: 0;
  }
  .upper-cta-trust {
    font-size: 8.2px;
  }
}

/* ===== Relatos públicos do segmento ===== */
.market-proof {
  position: relative;
  overflow: hidden;
  margin-top: 36px;
  padding: 34px 28px 26px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 10% 0%, rgba(94, 219, 201, 0.16), transparent 34%),
    radial-gradient(circle at 100% 100%, rgba(19, 184, 108, 0.16), transparent 38%),
    linear-gradient(145deg, #061b27 0%, #0a3041 100%);
  box-shadow: 0 24px 60px rgba(7, 27, 43, 0.18);
}
.market-proof::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: inherit;
}
.market-proof-head {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto 24px;
  text-align: center;
}
.market-proof-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 29px;
  padding: 7px 12px;
  border: 1px solid rgba(94, 219, 201, 0.22);
  border-radius: 999px;
  background: rgba(94, 219, 201, 0.09);
  color: #89eadb;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
}
.market-proof-head h3 {
  margin: 12px 0 9px;
  color: #ffffff;
  font-size: clamp(24px, 4vw, 34px);
  line-height: 1.06;
  letter-spacing: -0.035em;
}
.market-proof-head p {
  margin: 0 auto;
  max-width: 650px;
  color: rgba(228, 240, 243, 0.72);
  font-size: 12.5px;
  line-height: 1.55;
}
.market-proof-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.market-proof-card {
  min-width: 0;
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: 19px;
  background: rgba(255,255,255,0.96);
  box-shadow: 0 14px 34px rgba(0,0,0,0.14);
}
.market-proof-card.featured {
  transform: translateY(-5px);
  border-color: rgba(94, 219, 201, 0.42);
  box-shadow: 0 18px 38px rgba(0,0,0,0.19), 0 0 0 1px rgba(94,219,201,0.06) inset;
}
.market-proof-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
}
.market-proof-avatar {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 36px;
  border-radius: 50%;
  background: linear-gradient(145deg, #0f9c60, #13b86c);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.03em;
  box-shadow: 0 5px 13px rgba(19,184,108,0.24);
}
.market-proof-badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 5px 8px;
  border-radius: 999px;
  background: #eaf8f1;
  color: #08794a;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.market-proof-card blockquote {
  margin: 0 0 16px;
  color: #142630;
  font-size: 14px;
  font-weight: 760;
  line-height: 1.48;
  letter-spacing: -0.01em;
}
.market-proof-source {
  display: grid;
  gap: 3px;
  padding-top: 13px;
  border-top: 1px solid #e3ece8;
}
.market-proof-source strong {
  color: #102b36;
  font-size: 11.5px;
}
.market-proof-source span {
  color: #6f8087;
  font-size: 9.5px;
  line-height: 1.35;
}
.market-proof-card a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 10px;
  color: #08794a;
  font-size: 9px;
  font-weight: 900;
  text-decoration: none;
}
.market-proof-card a:hover { text-decoration: underline; }
.market-proof-footer {
  position: relative;
  z-index: 1;
  width: min(100%, 760px);
  margin: 18px auto 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
  color: rgba(221, 239, 235, 0.68);
  text-align: center;
}
.market-proof-footer > span {
  width: 19px;
  height: 19px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 19px;
  border-radius: 50%;
  background: rgba(19,184,108,0.18);
  color: #78e3bc;
  font-size: 10px;
  font-weight: 900;
}
.market-proof-footer p {
  margin: 1px 0 0;
  font-size: 9px;
  line-height: 1.45;
}
@media (max-width: 760px) {
  .market-proof {
    margin-top: 26px;
    padding: 25px 14px 19px;
    border-radius: 22px;
  }
  .market-proof-head { margin-bottom: 17px; }
  .market-proof-eyebrow {
    min-height: 27px;
    padding: 6px 10px;
    font-size: 8px;
  }
  .market-proof-head h3 {
    margin-top: 10px;
    font-size: 24px;
  }
  .market-proof-head p {
    max-width: 330px;
    font-size: 10.5px;
    line-height: 1.5;
  }
  .market-proof-grid {
    grid-template-columns: 1fr;
    gap: 11px;
  }
  .market-proof-card,
  .market-proof-card.featured {
    transform: none;
    padding: 17px 15px 15px;
    border-radius: 16px;
  }
  .market-proof-card-top { margin-bottom: 12px; }
  .market-proof-card blockquote {
    margin-bottom: 13px;
    font-size: 13.5px;
  }
  .market-proof-footer {
    width: min(100%, 330px);
    margin-top: 14px;
  }
  .market-proof-footer p {
    font-size: 8.3px;
  }
}


.market-proof-image-block{
  width:min(100%, 680px);
  margin:24px auto 24px;
}
.market-proof-image{
  display:block;
  width:100%;
  max-width:100%;
  height:auto;
  border-radius:28px;
  object-fit:contain;
}
.market-proof-image-block{
  overflow:hidden;
}


/* ===== Correção final mobile: largura da página, prova social e CTA fixo ===== */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

.market-proof-image-block {
  width: 100%;
  max-width: 680px;
  margin: 24px auto;
  padding: 0;
  overflow: hidden;
  box-sizing: border-box;
}

.market-proof-image {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
  box-sizing: border-box;
}

.mobile-sticky {
  right: 0;
  left: 0;
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  justify-content: stretch;
  gap: 9px;
}

.mobile-sticky > div {
  min-width: 88px;
}

.mobile-sticky a {
  width: 100%;
  max-width: 230px;
  min-width: 0;
  justify-self: end;
  box-sizing: border-box;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .market-proof-image-block {
    width: 100%;
    max-width: 100%;
    margin: 20px auto 22px;
    border-radius: 18px;
  }

  .market-proof-image {
    width: 100%;
    max-width: 100%;
    border-radius: 18px;
  }

  .mobile-sticky {
    min-height: 70px;
    padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
  }

  .mobile-sticky small {
    font-size: 6.8px;
  }

  .mobile-sticky strong {
    font-size: 18px;
  }

  .mobile-sticky a {
    min-height: 46px;
    padding: 10px 11px;
    font-size: 9px;
  }
}

@media (max-width: 360px) {
  .mobile-sticky {
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 7px;
    padding-inline: 8px;
  }

  .mobile-sticky > div {
    min-width: 0;
  }

  .mobile-sticky strong {
    font-size: 16.5px;
  }

  .mobile-sticky a {
    padding-inline: 8px;
    font-size: 8.2px;
  }
}

/* ===== 2026-09-05 correção definitiva mobile ===== */
.market-proof-image-block{display:block!important;width:100%!important;max-width:680px!important;min-width:0!important;margin:20px auto 24px!important;padding:0!important;overflow:visible!important;box-sizing:border-box!important}
.market-proof-image{display:block!important;width:100%!important;max-width:100%!important;min-width:0!important;height:auto!important;max-height:none!important;margin:0 auto!important;object-fit:contain!important;object-position:center center!important;transform:none!important;box-sizing:border-box!important}
.mobile-sticky{display:flex!important;flex-wrap:nowrap!important;align-items:center!important;justify-content:space-between!important;gap:9px!important;right:0!important;left:0!important;width:100vw!important;max-width:100vw!important;min-width:0!important;padding:9px 10px calc(9px + env(safe-area-inset-bottom))!important;box-sizing:border-box!important}
.mobile-sticky>div{flex:0 0 auto!important;min-width:86px!important;max-width:105px!important}
.mobile-sticky a{flex:1 1 auto!important;width:auto!important;max-width:none!important;min-width:0!important;min-height:47px!important;padding:11px 10px!important;justify-content:center!important;white-space:nowrap!important;font-size:9.5px!important;line-height:1.1!important;box-sizing:border-box!important}
@media(max-width:640px){.market-proof-image-block{width:100%!important;max-width:100%!important;border-radius:18px!important}.market-proof-image{width:100%!important;max-width:100%!important;border-radius:18px!important}}
@media(max-width:360px){.mobile-sticky{gap:7px!important;padding-left:8px!important;padding-right:8px!important}.mobile-sticky>div{min-width:78px!important;max-width:90px!important}.mobile-sticky strong{font-size:16px!important}.mobile-sticky a{padding-left:8px!important;padding-right:8px!important;font-size:8.6px!important}}
