:root {
  --navy-900: #0f172a;
  --navy-800: #172033;
  --slate-700: #334155;
  --slate-500: #64748b;
  --slate-200: #e2e8f0;
  --off-white: #f8fafc;
  --white: #ffffff;
  --emerald-600: #059669;
  --emerald-500: #10b981;
  --emerald-100: #d1fae5;
  --teal-700: #0f766e;
  --amber-500: #f59e0b;
  --red-500: #ef4444;
  --shadow: 0 18px 42px rgba(15, 23, 42, 0.1);
  --shadow-strong: 0 28px 70px rgba(15, 23, 42, 0.2);
  --radius: 20px;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--off-white);
  color: var(--navy-900);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(rgba(15, 23, 42, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.035) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 70%);
}

a {
  color: inherit;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  line-height: 1.06;
  letter-spacing: 0;
}

h1 {
  max-width: 14ch;
  font-size: clamp(2.25rem, 9.4vw, 4.45rem);
}

h2 {
  font-size: clamp(2rem, 8vw, 3.2rem);
}

h3 {
  font-size: 1.1rem;
}

p,
ul {
  margin: 0;
}

ul {
  padding: 0;
}

li {
  list-style: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  border-radius: 999px;
  background: var(--white);
  padding: 0.8rem 1rem;
  font-weight: 900;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(100% - 28px, var(--container));
  margin-inline: auto;
}

.section {
  padding: 68px 0;
}

.trust-bar {
  background: var(--navy-900);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 900;
}

.trust-bar__inner {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  gap: 0.45rem 0.75rem;
  flex-wrap: wrap;
  padding: 0.45rem 0;
  text-align: center;
}

.trust-bar__inner span {
  white-space: nowrap;
}

.trust-bar__inner span::before {
  content: "✓ ";
  color: var(--emerald-500);
}

.hero {
  overflow: hidden;
  padding-top: 22px;
}

.hero__grid {
  display: grid;
  gap: 2rem;
}

.hero__copy {
  display: grid;
  gap: 0.78rem;
}

.hero__product-name {
  width: fit-content;
  border: 1px solid rgba(5, 150, 105, 0.22);
  border-radius: 999px;
  background: var(--emerald-100);
  padding: 0.42rem 0.68rem;
  color: var(--teal-700);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow {
  color: var(--emerald-600);
  font-size: 0.77rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero__lead,
.section-heading p,
.offer__copy p,
.final-cta p {
  color: var(--slate-500);
  font-size: 1.03rem;
}

.hero__lead {
  max-width: 520px;
}

.hero__support {
  color: var(--navy-900);
  font-weight: 900;
}

.hero__proof {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.hero__proof span,
.check-list li,
.compare-card li,
.offer-card li {
  position: relative;
  padding-left: 1.75rem;
  color: var(--slate-700);
  font-weight: 800;
}

.hero__proof span {
  border: 1px solid var(--slate-200);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  padding: 0.42rem 0.62rem 0.42rem 1.75rem;
  font-size: 0.78rem;
  white-space: nowrap;
}

.hero__proof span::before,
.check-list li::before,
.compare-card li::before,
.offer-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.02rem;
  display: grid;
  width: 1.25rem;
  height: 1.25rem;
  place-items: center;
  border-radius: 999px;
  background: var(--emerald-100);
  color: var(--emerald-600);
  font-size: 0.72rem;
  font-weight: 900;
}

.hero__offer-card {
  display: grid;
  gap: 0.72rem;
  max-width: 450px;
  border: 1px solid rgba(16, 185, 129, 0.34);
  border-radius: 22px;
  background: linear-gradient(180deg, var(--white), #f0fdf4);
  padding: 0.92rem;
  box-shadow: 0 16px 36px rgba(5, 150, 105, 0.12);
}

.hero__price {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 0.8rem;
}

.hero__price span {
  color: var(--slate-500);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero__price strong {
  color: var(--navy-900);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(2.2rem, 10vw, 3.3rem);
  line-height: 0.95;
}

.hero__offer-card p {
  color: var(--slate-500);
  font-size: 0.78rem;
  font-weight: 850;
  text-align: center;
}

.price-panel {
  display: grid;
  gap: 0.65rem;
  border: 1px solid rgba(16, 185, 129, 0.35);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--white), #f0fdf4);
  padding: 0.85rem;
  box-shadow: 0 18px 40px rgba(5, 150, 105, 0.1);
}

.price-panel div {
  display: grid;
  gap: 0.2rem;
}

.price-panel span,
.offer-price span,
.offer-price small {
  color: var(--slate-500);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.price-panel strong,
.offer-price strong {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(2.1rem, 10vw, 3.4rem);
  line-height: 0.95;
}

.price-panel ul {
  display: flex;
  gap: 0.42rem;
  flex-wrap: wrap;
}

.price-panel li {
  border-radius: 999px;
  background: var(--emerald-100);
  padding: 0.38rem 0.58rem;
  color: var(--teal-700);
  font-size: 0.74rem;
  font-weight: 900;
}

.cta-row {
  display: grid;
  gap: 0.7rem;
}

.button {
  display: inline-flex;
  min-height: 52px;
  max-width: 100%;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 0.9rem 1.15rem;
  font-weight: 900;
  line-height: 1.12;
  text-align: center;
  text-decoration: none;
  overflow-wrap: anywhere;
  cursor: pointer;
}

.button--primary {
  background: var(--emerald-600);
  color: var(--white);
  box-shadow: 0 14px 28px rgba(5, 150, 105, 0.24);
}

.button--secondary {
  border: 1px solid var(--slate-200);
  background: var(--white);
  color: var(--navy-900);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
}

.button--full {
  width: 100%;
}

.secure-copy,
.mockup-note {
  color: var(--slate-500);
  font-size: 0.86rem;
  font-weight: 750;
}

.product-hero {
  position: relative;
  min-height: 315px;
  isolation: isolate;
}

.device,
.product-cover {
  border: 1px solid rgba(226, 232, 240, 0.9);
  background: var(--white);
  box-shadow: var(--shadow);
}

.product-cover {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 3;
  display: grid;
  gap: 0.45rem;
  width: min(190px, 54vw);
  border-radius: 18px;
  background: var(--navy-900);
  color: var(--white);
  padding: 1rem;
}

.product-cover span,
.product-cover small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-cover strong {
  font-family: "Plus Jakarta Sans", sans-serif;
  line-height: 1.1;
}

.device--laptop {
  position: absolute;
  right: 0;
  top: 74px;
  z-index: 2;
  width: min(100%, 590px);
  overflow: hidden;
  border: 8px solid var(--navy-800);
  border-radius: 22px;
  transform: rotate(-1deg);
}

.device__bar {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  border-bottom: 1px solid var(--slate-200);
  background: #f1f5f9;
  padding: 0.72rem;
}

.device__bar span {
  width: 0.58rem;
  height: 0.58rem;
  border-radius: 999px;
  background: var(--red-500);
}

.device__bar span:nth-child(2) {
  background: var(--amber-500);
}

.device__bar span:nth-child(3) {
  background: var(--emerald-500);
}

.device__bar b {
  margin-left: 0.4rem;
  color: var(--slate-500);
  font-size: 0.78rem;
}

.dashboard-mini {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.52rem;
  padding: 0.7rem;
}

.dashboard-mini article,
.summary-grid article,
.kpi-row article {
  display: grid;
  gap: 0.24rem;
  border: 1px solid var(--slate-200);
  border-radius: 14px;
  background: var(--white);
  padding: 0.8rem;
}

.dashboard-mini article:first-child {
  background: var(--emerald-100);
}

.dashboard-mini .dark {
  background: var(--navy-900);
  color: var(--white);
}

.dashboard-mini span,
.kpi-row span,
.summary-grid span {
  color: var(--slate-500);
  font-size: 0.72rem;
  font-weight: 900;
}

.dashboard-mini .dark span {
  color: rgba(255, 255, 255, 0.68);
}

.bars,
.chart-card {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(5, 1fr);
  height: 72px;
  align-items: end;
  gap: 0.55rem;
  border: 1px solid var(--slate-200);
  border-radius: 14px;
  padding: 0.75rem;
}

.bars i,
.chart-card span {
  display: block;
  border-radius: 999px 999px 4px 4px;
  background: linear-gradient(180deg, var(--emerald-500), var(--teal-700));
}

.bars i:nth-child(1),
.chart-card span:nth-child(1) {
  height: 36%;
}

.bars i:nth-child(2),
.chart-card span:nth-child(2) {
  height: 62%;
}

.bars i:nth-child(3),
.chart-card span:nth-child(3) {
  height: 48%;
}

.bars i:nth-child(4),
.chart-card span:nth-child(4) {
  height: 82%;
}

.bars i:nth-child(5),
.chart-card span:nth-child(5) {
  height: 66%;
}

.device--phone {
  position: absolute;
  right: 0.2rem;
  bottom: 22px;
  z-index: 4;
  display: grid;
  gap: 0.45rem;
  width: min(130px, 36vw);
  border: 7px solid var(--navy-900);
  border-radius: 26px;
  padding: 0.8rem 0.65rem;
}

.device--phone span,
.device--phone small {
  color: var(--slate-500);
  font-size: 0.68rem;
  font-weight: 900;
}

.device--phone p {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--slate-200);
  padding-top: 0.35rem;
  font-size: 0.64rem;
  font-weight: 800;
}

.device--phone em {
  color: var(--emerald-600);
  font-style: normal;
}

.format-badge {
  position: absolute;
  left: 12px;
  bottom: 52px;
  z-index: 5;
  border-radius: 999px;
  background: var(--white);
  padding: 0.55rem 0.75rem;
  box-shadow: var(--shadow);
  color: var(--emerald-600);
  font-size: 0.78rem;
  font-weight: 900;
}

.product-hero .mockup-note {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  font-size: 0.76rem;
}

.section-heading {
  display: grid;
  max-width: 760px;
  gap: 0.85rem;
  margin-bottom: 1.6rem;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.quick-results,
.generic,
.credibility,
.faq {
  background: var(--white);
}

.question-grid,
.method-grid,
.module-groups,
.bonus-grid,
.product-stack,
.steps,
.generic-grid,
.credibility__grid {
  display: grid;
  gap: 0.9rem;
}

.question-grid article,
.method-grid article,
.module-groups article,
.bonus,
.product-stack article,
.steps article,
.generic-grid article,
.credibility__grid article,
.compare-card,
.fit article,
.offer-card,
.guarantee__box,
.final-cta__box {
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  background: var(--white);
  padding: 1rem;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
}

.question-grid article {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.question-grid span,
.method-grid span,
.steps span,
.module-groups span,
.product-stack span,
.bonus-mock span,
.offer-card > span {
  color: var(--emerald-600);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.pain {
  background: linear-gradient(180deg, var(--off-white), var(--white));
}

.pain__grid,
.usage__grid,
.offer__grid,
.faq__grid,
.fit__grid,
.footer__grid {
  display: grid;
  gap: 1.5rem;
}

.chaos-board {
  display: grid;
  gap: 0.7rem;
}

.chaos-board span {
  border: 1px dashed #cbd5e1;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.8);
  padding: 0.82rem;
  color: var(--slate-700);
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.04);
}

.method {
  background: var(--navy-900);
  color: var(--white);
}

.method .section-heading p,
.method-grid p {
  color: rgba(255, 255, 255, 0.72);
}

.method .eyebrow {
  color: var(--emerald-500);
}

.method-grid article {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}

.method-grid span,
.steps span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 999px;
  background: var(--emerald-500);
  color: var(--navy-900);
}

.demo {
  background: var(--white);
}

.sheet-showcase {
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.85);
  border-radius: 24px;
  background: var(--navy-900);
  color: var(--white);
  box-shadow: var(--shadow-strong);
}

.sheet-tabs {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
  padding: 0.85rem;
}

.sheet-tabs button {
  flex: 1 1 auto;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  padding: 0.7rem 0.55rem;
  color: rgba(255, 255, 255, 0.75);
  font: inherit;
  font-size: 0.8rem;
  font-weight: 900;
  cursor: pointer;
}

.sheet-tabs .is-active {
  background: var(--white);
  color: var(--navy-900);
}

.sheet-window {
  margin: 0 0.85rem 0.85rem;
  overflow: hidden;
  border-radius: 18px;
  background: #111827;
}

.sheet-toolbar {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.55rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.65rem;
}

.sheet-toolbar span,
.sheet-toolbar p {
  overflow: hidden;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  padding: 0.45rem 0.55rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sheet-content {
  display: none;
  padding: 0.75rem;
}

.sheet-content.is-active {
  display: grid;
  gap: 0.75rem;
}

.kpi-row,
.summary-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
}

.kpi-row article,
.summary-grid article {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.kpi-row span,
.summary-grid span {
  color: rgba(255, 255, 255, 0.58);
}

.chart-card {
  border-color: rgba(255, 255, 255, 0.12);
}

.sheet-row {
  display: grid;
  grid-template-columns: 62px minmax(75px, 1fr) minmax(72px, 1fr) 70px 72px;
  min-width: 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sheet-row span,
.sheet-row strong {
  min-width: 0;
  overflow: hidden;
  padding: 0.58rem 0.42rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.66rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sheet-row strong {
  color: var(--emerald-500);
}

.sheet-row.head span {
  color: var(--white);
  font-weight: 900;
}

.sheet-showcase > .mockup-note {
  padding: 0 1rem 1rem;
  color: rgba(255, 255, 255, 0.62);
}

.steps article {
  display: grid;
  gap: 0.6rem;
}

.before-after {
  background: linear-gradient(180deg, var(--off-white), var(--white));
}

.compare-grid {
  display: grid;
  gap: 1rem;
}

.compare-card ul,
.offer-card ul,
.fit ul {
  display: grid;
  gap: 0.7rem;
  padding-top: 1rem;
}

.compare-card.before li::before {
  content: "!";
  background: #fef3c7;
  color: #92400e;
}

.compare-card.after {
  border-color: rgba(16, 185, 129, 0.35);
}

.generic-grid article:last-child {
  border-color: rgba(16, 185, 129, 0.35);
  background: #f0fdf4;
}

.module-groups article {
  display: grid;
  gap: 0.55rem;
}

.product-stack {
  grid-template-columns: 1fr;
}

.stack-main {
  background: var(--navy-900) !important;
  color: var(--white);
}

.stack-main span,
.stack-main p {
  color: rgba(255, 255, 255, 0.72);
}

.bonuses {
  background: var(--navy-900);
  color: var(--white);
}

.bonuses .section-heading p,
.bonus p {
  color: rgba(255, 255, 255, 0.72);
}

.bonuses .eyebrow {
  color: var(--emerald-500);
}

.bonus {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}

.bonus {
  display: grid;
  gap: 1rem;
  align-content: start;
  overflow: hidden;
}

.bonus-visual {
  position: relative;
  display: grid;
  min-height: 196px;
  place-items: center;
  overflow: hidden;
  border-radius: 18px;
  background:
    radial-gradient(circle at 20% 12%, rgba(16, 185, 129, 0.28), transparent 32%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(226, 232, 240, 0.9));
  color: var(--navy-900);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
}

.bonus-visual::after {
  content: "";
  position: absolute;
  inset: auto 18px 14px;
  height: 14px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.14);
  filter: blur(10px);
}

.bonus-copy {
  display: grid;
  gap: 0.45rem;
}

.bonus-copy h3 {
  font-size: 1.08rem;
}

.calc-shell,
.phone-shell,
.clipboard-shell,
.ebook-cover,
.guide-stack {
  position: relative;
  z-index: 1;
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.18);
}

.calc-shell {
  display: grid;
  gap: 0.52rem;
  width: min(168px, 82%);
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 20px;
  background: var(--white);
  padding: 0.85rem;
  transform: rotate(-4deg);
}

.calc-shell span,
.phone-shell span,
.ebook-cover small {
  color: var(--emerald-600);
  font-size: 0.66rem;
  font-weight: 900;
  text-transform: uppercase;
}

.calc-shell strong,
.clipboard-shell strong,
.ebook-cover strong {
  font-family: "Plus Jakarta Sans", sans-serif;
  line-height: 1.05;
}

.calc-display {
  border-radius: 12px;
  background: var(--navy-900);
  padding: 0.62rem;
  color: var(--white);
  font-weight: 900;
  text-align: right;
}

.calc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.36rem;
}

.calc-grid i {
  height: 20px;
  border-radius: 7px;
  background: var(--emerald-100);
}

.phone-shell {
  display: grid;
  gap: 0.45rem;
  width: min(156px, 78%);
  border: 8px solid var(--navy-900);
  border-radius: 26px;
  background: var(--white);
  padding: 0.72rem;
  transform: rotate(3deg);
}

.phone-shell p {
  border-radius: 12px 12px 12px 4px;
  background: var(--emerald-100);
  padding: 0.48rem;
  color: var(--teal-700);
  font-size: 0.66rem;
  font-weight: 800;
}

.clipboard-shell {
  display: grid;
  gap: 0.5rem;
  width: min(176px, 84%);
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 18px;
  background: var(--white);
  padding: 0.9rem;
  transform: rotate(-2deg);
}

.clipboard-shell::before {
  content: "";
  width: 54px;
  height: 12px;
  margin: -1.12rem auto 0.1rem;
  border-radius: 999px;
  background: var(--emerald-500);
}

.clipboard-shell span {
  display: flex;
  align-items: center;
  gap: 0.42rem;
  color: var(--slate-700);
  font-size: 0.72rem;
  font-weight: 850;
}

.clipboard-shell i {
  display: block;
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 4px;
  background: var(--emerald-500);
}

.bonus-visual--guide {
  place-items: end center;
}

.ebook-cover {
  display: grid;
  align-content: space-between;
  width: min(148px, 70%);
  min-height: 164px;
  border-radius: 14px 18px 18px 14px;
  background: linear-gradient(145deg, var(--navy-900), var(--navy-800));
  color: var(--white);
  padding: 0.9rem;
  transform: rotate(-5deg) translateX(-12px);
}

.ebook-cover span {
  color: var(--emerald-500);
  font-size: 0.72rem;
  font-weight: 900;
}

.ebook-page {
  position: absolute;
  z-index: 0;
  width: 122px;
  min-height: 142px;
  border-radius: 12px;
  background: var(--white);
  transform: rotate(5deg) translate(28px, -4px);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.16);
}

.guide-stack {
  display: grid;
  gap: 0.55rem;
  width: min(178px, 84%);
  transform: rotate(2deg);
}

.guide-stack div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.55rem;
  align-items: center;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 14px;
  background: var(--white);
  padding: 0.7rem;
}

.guide-stack b {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 12px;
  background: var(--emerald-100);
  color: var(--emerald-600);
  font-size: 0.8rem;
}

.guide-stack span {
  color: var(--slate-700);
  font-size: 0.78rem;
  font-weight: 900;
}


.bonuses .section-heading {
  margin-inline: auto;
  text-align: center;
}

.bonuses .bonus-grid {
  align-items: stretch;
}

.bonuses .bonus {
  grid-template-rows: 214px 1fr;
  justify-items: center;
  text-align: center;
}

.bonuses .bonus-visual {
  width: 100%;
  height: 214px;
  min-height: 214px;
  text-align: center;
}

.bonuses .bonus-copy {
  justify-items: center;
  max-width: 24ch;
  margin-inline: auto;
  text-align: center;
}

.bonuses .bonus-copy h3,
.bonuses .bonus-copy p,
.bonuses .calc-shell,
.bonuses .phone-shell,
.bonuses .clipboard-shell,
.bonuses .ebook-cover,
.bonuses .guide-stack,
.bonuses .phone-shell p,
.bonuses .clipboard-shell span,
.bonuses .guide-stack div {
  text-align: center;
}

.bonuses .clipboard-shell span,
.bonuses .guide-stack div {
  justify-content: center;
}

.bonuses .calc-display {
  text-align: center;
}

@media (max-width: 520px) {
  .bonuses .bonus {
    grid-template-rows: 204px 1fr;
  }

  .bonuses .bonus-visual {
    height: 204px;
    min-height: 204px;
  }
}

.fit article {
  box-shadow: var(--shadow);
}

.not-fit li {
  position: relative;
  padding-left: 1rem;
  color: var(--slate-700);
  font-weight: 800;
}

.not-fit li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--amber-500);
}

.offer {
  background: var(--white);
}

.financial-note {
  margin-top: 1rem;
  border-radius: 16px;
  background: #fffbeb;
  padding: 0.9rem;
  color: #92400e;
  font-size: 0.92rem;
  font-weight: 800;
}

.offer-card {
  display: grid;
  gap: 1rem;
}

.offer-card h3 {
  font-size: 1.6rem;
}

.offer-price {
  display: grid;
  gap: 0.2rem;
  border-radius: 18px;
  background: var(--off-white);
  padding: 1rem;
}

.guarantee__box {
  display: grid;
  gap: 1rem;
  align-items: center;
}

.guarantee__box > span {
  display: grid;
  width: 78px;
  height: 78px;
  place-items: center;
  border-radius: 24px;
  background: var(--emerald-100);
  color: var(--emerald-600);
  font-weight: 900;
}

.credibility__grid article {
  display: grid;
  gap: 0.45rem;
}

.credibility__grid span {
  color: var(--emerald-600);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.credibility__grid strong {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.12rem;
  line-height: 1.1;
}

.credibility__grid p {
  color: var(--slate-500);
  font-size: 0.94rem;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

details {
  border: 1px solid var(--slate-200);
  border-radius: 16px;
  background: var(--off-white);
}

summary {
  position: relative;
  min-height: 56px;
  padding: 1rem 2.8rem 1rem 1rem;
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

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

summary::after {
  content: "+";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--emerald-600);
  font-size: 1.25rem;
}

details[open] summary::after {
  content: "-";
}

details p {
  padding: 0 1rem 1rem;
  color: var(--slate-500);
}

.final-cta {
  padding: 66px 0 104px;
}

.final-cta__box {
  display: grid;
  gap: 1rem;
  background: var(--navy-900);
  color: var(--white);
  text-align: center;
}

.final-cta p {
  color: rgba(255, 255, 255, 0.72);
}

.cta-row--center {
  justify-content: center;
}

.footer {
  background: var(--navy-900);
  color: var(--white);
  padding: 32px 0;
}

.footer p,
.footer a,
.footer span {
  color: rgba(255, 255, 255, 0.68);
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
}

.footer a,
.footer span {
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
}

.sticky-mobile-cta {
  position: fixed;
  right: max(0.55rem, env(safe-area-inset-right));
  bottom: max(0.55rem, env(safe-area-inset-bottom));
  left: max(0.55rem, env(safe-area-inset-left));
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.55rem;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  padding: 0.62rem;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  backdrop-filter: blur(16px);
}

.sticky-mobile-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.sticky-mobile-cta div {
  display: grid;
  min-width: 0;
}

.sticky-mobile-cta strong {
  overflow: hidden;
  font-size: 0.74rem;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sticky-mobile-cta span {
  color: var(--emerald-600);
  font-size: 0.82rem;
  font-weight: 900;
}

.sticky-mobile-cta .button {
  flex: 0 0 auto;
  min-height: 44px;
  padding: 0.68rem 0.72rem;
  font-size: 0.78rem;
  white-space: nowrap;
}

.js-enabled .sheet-content {
  display: none;
}

.js-enabled .sheet-content.is-active {
  display: grid;
}

@media (max-width: 520px) {
  .price-panel ul {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .price-panel li {
    display: grid;
    min-height: 36px;
    place-items: center;
    padding: 0.28rem 0.24rem;
    font-size: 0.62rem;
    line-height: 1.05;
    text-align: center;
  }
}

@media (max-width: 370px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  h1 {
    font-size: clamp(2.35rem, 11vw, 2.75rem);
  }

  .trust-bar {
    font-size: 0.74rem;
  }

  .price-panel strong {
    font-size: 2.05rem;
  }

  .sticky-mobile-cta div {
    max-width: 158px;
  }

  .sticky-mobile-cta .button {
    padding-inline: 0.58rem;
    font-size: 0.75rem;
  }
}

@media (min-width: 680px) {
  .question-grid,
  .method-grid,
  .module-groups,
  .bonus-grid,
  .steps,
  .generic-grid,
  .credibility__grid,
  .compare-grid,
  .fit__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-stack {
    grid-template-columns: 1.2fr 1fr 1fr;
  }

  .stack-main {
    grid-row: span 2;
  }

  .guarantee__box {
    grid-template-columns: auto 1fr;
  }
}

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

  .hero {
    padding-top: 58px;
  }

  .hero__grid,
  .pain__grid,
  .usage__grid,
  .offer__grid,
  .faq__grid,
  .footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
  }

  h1 {
    max-width: 720px;
    font-size: clamp(4.2rem, 5.6vw, 5.4rem);
  }

  .hero__lead {
    max-width: 640px;
    font-size: 1.15rem;
  }

  .price-panel div {
    grid-template-columns: auto 1fr;
    align-items: end;
  }

  .price-panel strong {
    justify-self: end;
  }

  .cta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }

  .product-hero {
    min-height: 560px;
  }

  .product-cover {
    left: 0;
    top: 18px;
  }

  .device--laptop {
    top: 110px;
  }

  .format-badge {
    bottom: 94px;
  }

  .question-grid {
    grid-template-columns: repeat(7, 1fr);
  }

  .question-grid article {
    display: grid;
    align-content: start;
    min-height: 128px;
  }

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

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

  .bonus-grid {
    grid-template-columns: repeat(5, 1fr);
  }

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

  .final-cta {
    padding-bottom: 96px;
  }

  .sticky-mobile-cta {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
