:root {
  --bg: #f6f7f2;
  --ink: #10140f;
  --muted: #5f685a;
  --line: #dce1d4;
  --green: #34d66d;
  --green-dark: #0d8f45;
  --lime: #c8ff4d;
  --orange: #ff7a2f;
  --dark: #101610;
  --panel: #ffffff;
  --shadow: 0 22px 60px rgba(16, 22, 16, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
}

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

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(246, 247, 242, 0.92);
  border-bottom: 1px solid rgba(16, 20, 15, 0.08);
  backdrop-filter: blur(16px);
}

.topbar__inner {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand,
.nav,
.hero__actions,
.hero__stats,
.footer__inner {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  max-width: 360px;
  font-weight: 900;
  line-height: 1.15;
}

.nav {
  gap: 24px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.topbar__cta {
  border-radius: 8px;
  background: var(--green);
  color: #071008;
  padding: 12px 18px;
  font-weight: 900;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 66px;
  background:
    linear-gradient(90deg, rgba(8, 12, 8, 0.9), rgba(13, 18, 13, 0.7)),
    url("https://images.unsplash.com/photo-1581009137042-c552e485697a?auto=format&fit=crop&w=1800&q=80") center/cover;
  color: #ffffff;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 90px;
  background: linear-gradient(180deg, transparent, var(--bg));
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 440px;
  gap: 46px;
  align-items: center;
}

.hero__content {
  display: grid;
  justify-items: start;
}

.eyebrow,
.section__kicker {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: Anton, Impact, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.98;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  font-size: clamp(3.4rem, 8.4vw, 6.6rem);
}

h2 {
  max-width: 820px;
  font-size: clamp(2.2rem, 5vw, 4.3rem);
}

h3 {
  margin: 0;
  font-size: 1.05rem;
}

p {
  line-height: 1.7;
}

.hero__lead {
  max-width: 720px;
  margin: 0;
  color: #f6ffe9;
  font-size: clamp(1.3rem, 2.4vw, 1.78rem);
  font-weight: 900;
  line-height: 1.28;
  text-align: center;
}

.promise-card {
  position: relative;
  justify-self: center;
  max-width: 740px;
  margin: 24px 0 4px;
  border-left: 5px solid var(--lime);
  border-radius: 8px;
  background: rgba(5, 10, 5, 0.58);
  padding: 20px 22px 22px;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.28);
}

.promise-card::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(200, 255, 77, 0.22);
  border-radius: 6px;
  pointer-events: none;
}

.hero__text {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.03rem;
}

.hero__actions {
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 4px;
  padding: 18px 36px;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  text-align: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.button--primary {
  background: var(--green);
  color: #ffffff;
  box-shadow: 0 18px 36px rgba(52, 214, 109, 0.22);
}

.button--primary:hover {
  background: #18933c;
  transform: translateY(-1px);
}

.button--primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14) 0%, transparent 60%);
  pointer-events: none;
}

.button--ghost {
  border: 1px solid rgba(255, 255, 255, 0.32);
  color: #ffffff;
}

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

.hero__stats {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.hero__stats span {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.78);
}

.hero__stats strong {
  color: #ffffff;
}

.product-visual {
  position: relative;
  min-height: 500px;
}

.sheet,
.progress-ring {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(250, 255, 246, 0.94);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.sheet--main {
  position: absolute;
  top: 20px;
  right: 0;
  width: min(420px, 100%);
  overflow: hidden;
}

.sheet__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px;
  background: #111811;
  color: #ffffff;
}

.sheet__bar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--orange);
}

.sheet__bar span:nth-child(2) {
  background: var(--lime);
}

.sheet__bar span:nth-child(3) {
  background: var(--green);
}

.sheet__bar strong {
  margin-left: auto;
  font-size: 0.82rem;
}

.sheet__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.25fr 0.7fr;
  padding: 12px;
  gap: 8px;
}

.sheet__cell {
  min-height: 42px;
  border-radius: 8px;
  background: #edf3e6;
  padding: 12px 10px;
  font-size: 0.82rem;
  font-weight: 800;
}

.sheet__head {
  background: #172017;
  color: #ffffff;
}

.good {
  background: #d9ffb0;
  color: #196727;
}

.sheet--diet {
  position: absolute;
  right: 42px;
  bottom: 42px;
  width: 320px;
  padding: 16px;
}

.meal-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}

.meal-row:last-child {
  border-bottom: 0;
}

.meal-row span {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.progress-ring {
  position: absolute;
  left: 18px;
  bottom: 98px;
  display: grid;
  width: 160px;
  height: 160px;
  place-items: center;
  padding: 20px;
  text-align: center;
  background:
    radial-gradient(circle at center, #ffffff 0 48%, transparent 49%),
    conic-gradient(var(--green) 0 82%, #dfe7d7 82% 100%);
}

.progress-ring strong {
  display: block;
  font-size: 2.4rem;
  line-height: 1;
}

.progress-ring span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.section {
  padding: 82px 0;
}

.section h2 + p,
.split p {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.04rem;
}

.testimonial-grid,
.reason-grid,
.steps,
.deliverables,
.price-grid,
.authority__grid {
  display: grid;
  gap: 18px;
  margin-top: 32px;
}

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

.testimonial,
.steps article,
.deliverables article,
.checkout {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 24px;
  box-shadow: 0 12px 28px rgba(16, 20, 15, 0.06);
}

.testimonial p {
  min-height: 92px;
  color: var(--ink);
  font-weight: 700;
}

.avatar,
.testimonial-visual {
  background:
    linear-gradient(180deg, rgba(16, 22, 16, 0.06), rgba(16, 22, 16, 0.36)),
    url("https://images.unsplash.com/photo-1534438327276-14e5300c3a48?auto=format&fit=crop&w=900&q=80") center/cover;
}

.avatar {
  width: 82px;
  height: 82px;
  border-radius: 8px;
}

.avatar--two {
  background-image:
    linear-gradient(180deg, rgba(16, 22, 16, 0.06), rgba(16, 22, 16, 0.36)),
    url("https://images.unsplash.com/photo-1571019614242-c5c5dee9f50b?auto=format&fit=crop&w=900&q=80");
}

.avatar--three {
  background-image:
    linear-gradient(180deg, rgba(16, 22, 16, 0.06), rgba(16, 22, 16, 0.36)),
    url("https://images.unsplash.com/photo-1583454110551-21f2fa2afe61?auto=format&fit=crop&w=900&q=80");
}

.section--dark {
  background: var(--dark);
  color: #ffffff;
}

.section--dark .section__kicker,
.section--accent .section__kicker {
  color: var(--lime);
}

.section--dark p,
.section--dark .fit-list {
  color: rgba(255, 255, 255, 0.74);
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.thoughts {
  display: grid;
  gap: 12px;
}

.thoughts span,
.fit-list li {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  padding: 16px 18px;
  font-weight: 800;
}

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

.reason-grid div {
  display: flex;
  min-height: 112px;
  align-items: center;
  gap: 14px;
  border-top: 3px solid var(--green);
  background: #ffffff;
  padding: 22px;
  font-weight: 900;
}

.reason-grid span,
.steps span,
.deliverables span {
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.section--accent {
  background: linear-gradient(135deg, #102015, #1d341e);
  color: #ffffff;
}

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

.steps article {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

.steps p {
  color: rgba(255, 255, 255, 0.76);
}

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

.deliverables article {
  display: grid;
  gap: 12px;
  min-height: 236px;
}

.deliverables p {
  color: var(--muted);
}

.deliverables .bonus {
  background: #111811;
  color: #ffffff;
}

.deliverables .bonus p {
  color: rgba(255, 255, 255, 0.74);
}

.deliverable-figure {
  position: relative;
  display: grid;
  min-height: 148px;
  overflow: hidden;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, #eaf2e3, #ffffff);
  padding: 14px;
}

.deliverable-figure--training {
  background: linear-gradient(135deg, #f8fff1, #dff8db);
}

.deliverable-figure--diet {
  background: linear-gradient(135deg, #fff8ef, #e4f8dc);
}

.deliverable-figure--progress {
  background: linear-gradient(135deg, #101610, #23462b);
}

.deliverable-figure--routine {
  background: linear-gradient(135deg, #f9fff4, #e4f2ff);
}

.deliverable-figure--adjust {
  background: linear-gradient(135deg, #111811, #dff8db);
}

.deliverable-figure--bonus {
  background: linear-gradient(135deg, var(--lime), var(--green));
}

.mock-sheet,
.mock-diet,
.mock-guide,
.mock-checklist,
.product-pack {
  border: 1px solid rgba(16, 22, 16, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 38px rgba(16, 22, 16, 0.16);
}

.mock-sheet {
  width: min(230px, 100%);
  overflow: hidden;
}

.mock-sheet__top {
  display: grid;
  min-height: 28px;
  align-items: center;
  background: #101610;
  color: var(--lime);
  padding: 0 12px;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

.mock-grid span {
  display: grid;
  min-height: 18px;
  align-items: center;
  border-radius: 4px;
  background: #e9f1df;
  padding: 5px 6px;
  color: var(--ink);
  font-size: 0.62rem;
  font-weight: 900;
}

.mock-grid span:nth-child(3n) {
  background: #c8ff4d;
}

.mock-diet,
.mock-guide,
.mock-checklist {
  display: grid;
  width: min(220px, 100%);
  gap: 9px;
  padding: 16px;
}

.mock-diet span {
  border-radius: 999px;
  background: #edf3e6;
  padding: 8px 12px;
  min-height: 28px;
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 900;
}

.mock-diet strong,
.mock-guide strong,
.mock-checklist strong {
  color: var(--green-dark);
  font-size: 0.86rem;
  text-transform: uppercase;
}

.mock-diet span:nth-of-type(1) {
  width: 88%;
}

.mock-diet span:nth-of-type(2) {
  width: 68%;
  background: #dff8db;
}

.mock-diet span:nth-of-type(3) {
  width: 78%;
  background: #fff1d8;
}

.mock-diet i {
  display: grid;
  width: 84px;
  height: 84px;
  place-self: center;
  border: 12px solid #e9f1df;
  border-top-color: var(--green);
  border-right-color: var(--lime);
  border-radius: 999px;
}

.mock-chart {
  display: flex;
  width: min(230px, 100%);
  height: 110px;
  align-items: end;
  gap: 12px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.28);
  padding: 0 16px;
}

.mock-progress {
  display: grid;
  width: min(230px, 100%);
  gap: 8px;
}

.mock-progress strong,
.mock-progress small {
  color: #ffffff;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.mock-progress strong {
  font-size: 0.82rem;
}

.mock-progress small {
  color: var(--lime);
  font-size: 0.72rem;
}

.mock-chart span {
  position: relative;
  flex: 1;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, var(--lime), var(--green));
  box-shadow: 0 10px 28px rgba(52, 214, 109, 0.28);
}

.mock-chart span::before {
  content: attr(data-load);
  position: absolute;
  left: 50%;
  top: -24px;
  transform: translateX(-50%);
  color: #ffffff;
  font-size: 0.62rem;
  font-weight: 900;
  white-space: nowrap;
}

.mock-calendar {
  display: grid;
  width: min(230px, 100%);
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  border: 1px solid rgba(16, 22, 16, 0.1);
  border-radius: 8px;
  background: #ffffff;
  padding: 14px;
  box-shadow: 0 18px 38px rgba(16, 22, 16, 0.14);
}

.mock-calendar span {
  display: grid;
  min-height: 38px;
  place-items: center;
  border-radius: 6px;
  background: #eaf2e3;
  color: var(--ink);
  font-size: 0.64rem;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
}

.mock-calendar span:nth-child(2),
.mock-calendar span:nth-child(5) {
  background: var(--lime);
}

.mock-guide i,
.mock-checklist i {
  display: block;
  width: 68px;
  height: 48px;
  border-radius: 8px 8px 4px 4px;
  background: linear-gradient(135deg, var(--lime), var(--green));
  box-shadow: 0 10px 22px rgba(52, 214, 109, 0.2);
}

.mock-guide span,
.mock-checklist span {
  position: relative;
  min-height: 15px;
  border-radius: 999px;
  background: #e7eedf;
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 900;
  line-height: 1.2;
}

.mock-guide span {
  padding: 6px 10px;
}

.mock-guide span:nth-of-type(2) {
  width: 78%;
}

.mock-guide span:nth-of-type(3) {
  width: 88%;
}

.mock-checklist span {
  min-height: 26px;
  padding: 6px 8px 6px 32px;
}

.mock-checklist span::before {
  content: "";
  position: absolute;
  left: 0;
  top: -2px;
  width: 19px;
  height: 19px;
  border-radius: 5px;
  background: #101610;
}

.mock-checklist span::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 6px;
  height: 10px;
  border: solid var(--lime);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.bundle-showcase {
  display: grid;
  grid-template-columns: 420px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  margin-top: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #101610;
  color: #ffffff;
  padding: 28px;
  box-shadow: var(--shadow);
}

.bundle-showcase__visual {
  position: relative;
  min-height: 310px;
}

.product-pack {
  position: absolute;
  color: var(--ink);
  font-weight: 900;
}

.product-pack--main {
  left: 36px;
  top: 24px;
  display: grid;
  width: 210px;
  min-height: 260px;
  align-content: end;
  gap: 10px;
  background:
    linear-gradient(180deg, rgba(16, 22, 16, 0.1), rgba(16, 22, 16, 0.88)),
    url("https://images.unsplash.com/photo-1574680096145-d05b474e2155?auto=format&fit=crop&w=700&q=80") center/cover;
  color: #ffffff;
  padding: 18px;
  transform: rotate(-4deg);
}

.product-pack--main span {
  display: block;
  width: 78%;
  min-height: auto;
  border-radius: 999px;
  background: var(--lime);
  color: var(--ink);
  padding: 7px 10px;
  font-size: 0.64rem;
  text-transform: uppercase;
}

.product-pack--main strong {
  display: block;
  width: 72%;
  min-height: auto;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  padding: 12px;
  font-size: 1.06rem;
  line-height: 1;
  text-transform: uppercase;
}

.product-pack--sheet {
  right: 34px;
  top: 42px;
  display: grid;
  width: 210px;
  gap: 9px;
  padding: 18px;
  transform: rotate(7deg);
}

.product-pack--sheet span {
  min-height: 22px;
  border-radius: 5px;
  background: #e8f0df;
  color: var(--ink);
  padding: 6px 8px;
  font-size: 0.68rem;
  font-weight: 900;
}

.product-pack--sheet span:nth-child(2),
.product-pack--sheet span:nth-child(4) {
  background: var(--lime);
}

.product-pack--guide {
  right: 6px;
  bottom: 12px;
  display: grid;
  width: 180px;
  gap: 8px;
  padding: 18px;
  background: #f8fff1;
  transform: rotate(-5deg);
}

.product-pack--guide strong {
  display: block;
  width: max-content;
  height: auto;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--lime), var(--green));
  color: var(--ink);
  padding: 10px 12px;
  font-size: 0.82rem;
  text-transform: uppercase;
}

.product-pack--guide span {
  min-height: auto;
  border-radius: 999px;
  background: #dfe9d5;
  color: var(--ink);
  padding: 5px 9px;
  font-size: 0.66rem;
  font-weight: 900;
}

.product-pack--bonus {
  left: 0;
  bottom: 24px;
  display: grid;
  width: 164px;
  min-height: 112px;
  place-items: center;
  background: linear-gradient(135deg, var(--lime), var(--green));
  transform: rotate(5deg);
}

.product-pack--bonus strong {
  display: block;
  width: auto;
  height: auto;
  border: 2px solid rgba(16, 22, 16, 0.2);
  border-radius: 8px;
  color: var(--ink);
  padding: 14px 12px;
  font-size: 0.86rem;
  text-transform: uppercase;
}

.material-panel,
.product-box,
.bundle-card {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.24);
}

.material-panel {
  display: grid;
  width: min(340px, 100%);
  min-height: 220px;
  gap: 8px;
  align-content: start;
  background: linear-gradient(145deg, #060906, #111811 58%, #0d240f);
  color: #ffffff;
  padding: 16px;
}

.material-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.material-badge strong {
  border-radius: 4px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  padding: 4px 7px;
}

.material-panel h4 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.1;
  text-transform: uppercase;
}

.material-panel p {
  margin: 0;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.mini-table {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
}

.mini-table span {
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding: 6px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.58rem;
  font-weight: 900;
  line-height: 1.15;
}

.mini-table--training {
  grid-template-columns: 1.35fr 0.65fr 0.65fr 0.75fr;
}

.mini-table--diet {
  grid-template-columns: 0.8fr 1.25fr;
}

.mini-table--progress {
  grid-template-columns: 1.05fr repeat(4, 0.58fr);
}

.mini-table--training span:nth-child(-n + 4),
.mini-table--diet span:nth-child(-n + 2),
.mini-table--progress span:nth-child(-n + 5) {
  background: linear-gradient(135deg, var(--green-dark), #1b5b22);
  color: #ffffff;
  text-transform: uppercase;
}

.diet-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 70px;
  gap: 10px;
  align-items: center;
}

.macro-pie {
  position: relative;
  width: 66px;
  height: 66px;
  border-radius: 999px;
  background: conic-gradient(var(--green) 0 45%, var(--orange) 45% 72%, var(--lime) 72% 100%);
  box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.08);
}

.macro-pie::after {
  content: "";
  position: absolute;
  inset: 21px;
  border-radius: 999px;
  background: #111811;
}

.week-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
}

.week-grid span {
  display: grid;
  min-height: 64px;
  place-items: center;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.9);
  color: #111811;
  padding: 6px 3px;
  font-size: 0.54rem;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
}

.week-grid span:nth-child(2),
.week-grid span:nth-child(5) {
  background: var(--lime);
}

.routine-board {
  display: grid;
  gap: 6px;
  overflow: hidden;
  border-radius: 8px;
}

.routine-days,
.routine-row {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.routine-days span,
.routine-row span,
.routine-row strong {
  display: grid;
  min-height: 28px;
  place-items: center;
  border-radius: 5px;
  padding: 4px 2px;
  font-size: 0.5rem;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
}

.routine-days span {
  background: linear-gradient(135deg, var(--green-dark), #1b5b22);
  color: #ffffff;
}

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

.routine-row strong {
  background: var(--lime);
  color: var(--ink);
  text-transform: uppercase;
}

.routine-row span {
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
}

.routine-row--meal span {
  background: rgba(200, 255, 77, 0.9);
}

.adjust-layout {
  display: grid;
  grid-template-columns: 1fr 86px;
  gap: 12px;
  align-items: center;
}

.adjust-list,
.material-panel--checklist {
  display: grid;
  gap: 8px;
}

.adjust-list span,
.material-panel--checklist > span {
  position: relative;
  min-height: 24px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  padding: 6px 8px 6px 28px;
  font-size: 0.62rem;
  font-weight: 900;
  line-height: 1.2;
}

.adjust-list span::before,
.material-panel--checklist > span::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 7px;
  width: 13px;
  height: 13px;
  border-radius: 5px;
  background: var(--green);
}

.adjust-list span::after,
.material-panel--checklist > span::after {
  content: "";
  position: absolute;
  left: 12px;
  top: 8px;
  width: 4px;
  height: 8px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.body-map {
  position: relative;
  height: 120px;
}

.body-map span {
  position: absolute;
  left: 31px;
  top: 8px;
  width: 28px;
  height: 28px;
  border: 2px solid rgba(255, 255, 255, 0.75);
  border-radius: 999px;
}

.body-map i,
.body-map b {
  position: absolute;
  display: block;
  border: 2px solid rgba(255, 255, 255, 0.75);
}

.body-map i {
  left: 22px;
  top: 38px;
  width: 46px;
  height: 66px;
  border-radius: 45% 45% 30% 30%;
}

.body-map b {
  left: 6px;
  bottom: 0;
  width: 78px;
  height: 52px;
  border-top: 0;
  border-radius: 0 0 40px 40px;
}

.bonus-panels {
  display: grid;
  width: min(340px, 100%);
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.bonus-panels .material-panel {
  width: auto;
  min-height: 220px;
}

.growth-bars {
  display: flex;
  height: 92px;
  align-items: end;
  gap: 9px;
}

.growth-bars span {
  flex: 1;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, var(--lime), var(--green));
}

.growth-bars span:nth-child(1) {
  height: 32%;
}

.growth-bars span:nth-child(2) {
  height: 48%;
}

.growth-bars span:nth-child(3) {
  height: 68%;
}

.growth-bars span:nth-child(4) {
  height: 92%;
}

.product-box,
.bundle-card {
  position: absolute;
  color: var(--ink);
  font-weight: 900;
}

.product-box {
  left: 48px;
  top: 14px;
  display: grid;
  width: 198px;
  min-height: 260px;
  align-content: end;
  gap: 10px;
  background:
    linear-gradient(180deg, rgba(16, 22, 16, 0.1), rgba(16, 22, 16, 0.88)),
    url("https://images.unsplash.com/photo-1574680096145-d05b474e2155?auto=format&fit=crop&w=700&q=80") center/cover;
  color: #ffffff;
  padding: 18px;
  transform: rotate(-5deg);
}

.product-box span {
  border-radius: 999px;
  background: var(--lime);
  color: var(--ink);
  padding: 7px 10px;
  font-size: 0.64rem;
  text-transform: uppercase;
}

.product-box strong {
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  padding: 12px;
  font-size: 1.06rem;
  line-height: 1;
  text-transform: uppercase;
}

.bundle-card {
  display: grid;
  min-height: 76px;
  align-content: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  padding: 12px;
  font-size: 0.74rem;
  line-height: 1.35;
  text-transform: uppercase;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

.bundle-card--one {
  right: 28px;
  top: 26px;
  width: 160px;
  transform: rotate(6deg);
}

.bundle-card--two {
  right: 72px;
  top: 112px;
  width: 178px;
  background: var(--lime);
  transform: rotate(-4deg);
}

.bundle-card--three {
  left: 0;
  bottom: 34px;
  width: 174px;
  transform: rotate(5deg);
}

.bundle-card--four {
  left: 142px;
  bottom: 0;
  width: 168px;
  transform: rotate(-3deg);
}

.bundle-card--five {
  right: 0;
  bottom: 70px;
  width: 160px;
  background: #dff8db;
  transform: rotate(4deg);
}

.bundle-card--six {
  right: 34px;
  bottom: 0;
  width: 140px;
  background: var(--green);
  transform: rotate(-7deg);
}

.bundle-mini {
  position: absolute;
  display: grid;
  gap: 7px;
  align-content: start;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: linear-gradient(145deg, #060906, #111811 62%, #0d240f);
  color: #ffffff;
  padding: 12px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

.bundle-mini h4 {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1;
  text-transform: uppercase;
}

.bundle-mini > span {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  padding: 5px 8px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.56rem;
  font-weight: 900;
}

.bundle-mini .material-badge {
  font-size: 0.52rem;
}

.bundle-mini .material-badge strong {
  padding: 3px 5px;
}

.bundle-mini .mini-table span {
  padding: 4px;
  font-size: 0.45rem;
}

.bundle-mini .growth-bars {
  height: 64px;
}

.bundle-mini .routine-days span {
  min-height: 24px;
  font-size: 0.43rem;
}

.bundle-mini--training {
  left: 0;
  top: 18px;
  width: 226px;
  transform: rotate(-5deg);
}

.bundle-mini--diet {
  right: 0;
  top: 28px;
  width: 184px;
  transform: rotate(4deg);
}

.bundle-mini--progress {
  left: 190px;
  top: 92px;
  width: 170px;
  transform: rotate(2deg);
}

.bundle-mini--routine {
  left: 20px;
  bottom: 28px;
  width: 246px;
  transform: rotate(4deg);
}

.bundle-mini--adjust {
  right: 116px;
  bottom: 8px;
  width: 154px;
  background: linear-gradient(145deg, #111811, #173b1d);
  transform: rotate(-5deg);
}

.bundle-mini--bonus {
  right: 0;
  bottom: 44px;
  width: 142px;
  background: linear-gradient(145deg, #0b100b, #275c2d);
  transform: rotate(5deg);
}

.bundle-showcase__label {
  color: var(--lime);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.bundle-showcase h3 {
  margin-top: 10px;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  line-height: 1.08;
  text-transform: uppercase;
}

.bundle-showcase p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.74);
}

.fit-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.price-section {
  background: #ffffff;
}

.price-grid {
  grid-template-columns: minmax(0, 1fr) 390px;
  align-items: start;
}

.value-stack {
  display: grid;
  gap: 10px;
  margin-top: 30px;
}

.value-stack div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
  color: var(--muted);
  font-weight: 800;
}

.value-stack strong {
  color: var(--ink);
  white-space: nowrap;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(214, 75, 75, 0.82);
  opacity: 0.74;
}

.total {
  color: var(--muted);
}

.total strong {
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(214, 75, 75, 0.82);
}

.checkout {
  position: sticky;
  top: 96px;
  background: #101610;
  color: #ffffff;
}

.checkout p {
  margin: 0 0 8px;
  color: var(--lime);
  font-weight: 900;
  text-transform: uppercase;
}

.installments {
  display: block;
  font-family: Anton, Impact, sans-serif;
  font-size: clamp(2.8rem, 5.4vw, 4.6rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.cash {
  display: block;
  margin: 12px 0 22px;
  color: var(--lime);
  font-size: 1.35rem;
}

.checkout small {
  display: block;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.64);
  text-align: center;
}

.guarantee {
  margin-top: 22px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  padding: 16px;
}

.guarantee span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
  line-height: 1.5;
}

.serious {
  background: #edf3e6;
}

.authority__grid {
  grid-template-columns: 420px minmax(0, 1fr);
  align-items: center;
}

.coach-photo {
  display: block;
  width: 100%;
  min-height: 430px;
  aspect-ratio: 0.92;
  border-radius: 8px;
  object-fit: cover;
  object-position: center top;
  box-shadow: var(--shadow);
}

.final-cta {
  background: var(--dark);
  color: #ffffff;
}

.final-cta__box {
  display: grid;
  justify-items: center;
  gap: 18px;
  text-align: center;
}

.final-cta h2 {
  max-width: 860px;
}

.final-cta p,
.final-cta span {
  margin: 0;
  color: var(--lime);
  font-weight: 900;
  text-transform: uppercase;
}

.faq-section {
  background: #ffffff;
}

.faq {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcf8;
  padding: 18px 20px;
}

summary {
  cursor: pointer;
  font-weight: 900;
}

details p {
  margin-bottom: 0;
  color: var(--muted);
}

#footer {
  background: #101610;
  border-top: 2px solid rgba(52, 214, 109, 0.2);
  color: #d7dbd3;
  padding: 48px 0 32px;
  text-align: center;
}

.footer-logo {
  margin-bottom: 20px;
  color: #ffffff;
  font-family: Anton, Impact, sans-serif;
  font-size: clamp(1.4rem, 4vw, 2rem);
  line-height: 1.05;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-logo span {
  color: var(--lime);
}

.footer-legal {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
  line-height: 1.75;
}

.footer-legal--lgpd {
  margin-top: 12px;
  font-size: 0.82rem;
}

.footer-links {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.94rem;
}

.footer-links a {
  margin: 0 8px;
  color: rgba(255, 255, 255, 0.68);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--lime);
}

@media (max-width: 920px) {
  .nav {
    display: none;
  }

  .hero__grid,
  .split,
  .price-grid,
  .authority__grid,
  .bundle-showcase {
    grid-template-columns: 1fr;
  }

  .product-visual {
    min-height: 420px;
  }

  .testimonial-grid,
  .reason-grid,
  .steps,
  .deliverables {
    grid-template-columns: repeat(2, 1fr);
  }

  .checkout {
    position: static;
  }
}

@media (max-width: 620px) {
  .topbar__inner {
    min-height: 64px;
  }

  .brand span:last-child {
    display: inline;
  }

  .brand {
    max-width: 210px;
    font-size: 0.76rem;
  }

  .topbar__cta {
    padding: 10px 12px;
    font-size: 0.86rem;
  }

  .hero {
    padding-top: 48px;
  }

  .hero__grid {
    gap: 20px;
  }

  .testimonial-grid,
  .reason-grid,
  .steps,
  .deliverables {
    grid-template-columns: 1fr;
  }

  .product-visual {
    min-height: 450px;
  }

  .sheet--main {
    left: 0;
    right: auto;
  }

  .sheet__grid {
    gap: 6px;
    padding: 10px;
  }

  .sheet__cell {
    min-height: 38px;
    padding: 10px 7px;
    font-size: 0.72rem;
  }

  .sheet--diet {
    right: 0;
    bottom: 34px;
    width: min(300px, 90%);
  }

  .progress-ring {
    left: 0;
    bottom: 160px;
    width: 126px;
    height: 126px;
  }

  .progress-ring strong {
    font-size: 1.8rem;
  }

  .section {
    padding: 62px 0;
  }

  .bundle-showcase {
    padding: 22px;
  }

  .bundle-showcase__visual {
    min-height: 300px;
  }

  .product-pack--main {
    left: 8px;
    width: 174px;
    min-height: 232px;
  }

  .product-pack--sheet {
    right: 8px;
    width: 164px;
  }

  .product-pack--guide {
    right: 0;
    width: 148px;
  }

  .product-pack--bonus {
    width: 132px;
  }

  .product-box {
    left: 8px;
    width: 170px;
    min-height: 240px;
  }

  .bundle-card {
    font-size: 0.64rem;
  }

  .bundle-card--one {
    right: 4px;
    width: 136px;
  }

  .bundle-card--two {
    right: 24px;
    width: 148px;
  }

  .bundle-card--three {
    width: 146px;
  }

  .bundle-card--four {
    left: 104px;
    width: 144px;
  }

  .bundle-card--five {
    width: 132px;
  }

  .bundle-card--six {
    right: 18px;
    width: 118px;
  }

  .bundle-mini--training {
    width: 190px;
  }

  .bundle-mini--diet {
    width: 146px;
  }

  .bundle-mini--progress {
    left: 128px;
    width: 142px;
  }

  .bundle-mini--routine {
    left: 0;
    width: 210px;
  }

  .bundle-mini--adjust {
    right: 78px;
    width: 128px;
  }

  .bundle-mini--bonus {
    width: 118px;
  }

  .value-stack div,
  .footer__inner {
    display: grid;
    justify-content: initial;
  }
}
