:root {
  --ink: #16201f;
  --muted: #5f6966;
  --paper: #fbfaf7;
  --white: #ffffff;
  --line: #dfe6e1;
  --sage: #42695f;
  --sage-dark: #27453f;
  --coral: #c75f4a;
  --lemon: #f3c84b;
  --blue: #2f5d80;
  --shadow: 0 24px 60px rgba(22, 32, 31, .13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.topbar {
  display: flex;
  justify-content: center;
  gap: 28px;
  padding: 9px 16px;
  color: var(--white);
  background: var(--sage-dark);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px clamp(18px, 4vw, 64px);
  background: rgba(251, 250, 247, .94);
  border-bottom: 1px solid rgba(22, 32, 31, .08);
  backdrop-filter: blur(14px);
}

.brand img {
  width: 126px;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav a,
.secondary-link {
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}

.cart-button,
.icon-button {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
}

.cart-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 8px;
  font-weight: 800;
}

.cart-button strong {
  display: grid;
  min-width: 22px;
  height: 22px;
  place-items: center;
  color: var(--white);
  background: var(--coral);
  border-radius: 50%;
  font-size: 12px;
}

.cart-icon {
  position: relative;
  width: 15px;
  height: 14px;
  border: 2px solid currentColor;
  border-radius: 3px;
}

.cart-icon::before {
  position: absolute;
  left: 3px;
  top: -7px;
  width: 5px;
  height: 5px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 5px 5px 0 0;
  content: "";
}

.hero {
  display: grid;
  grid-template-columns: minmax(520px, 760px) minmax(420px, 560px);
  align-items: center;
  justify-content: center;
  gap: clamp(48px, 7vw, 112px);
  min-height: min(760px, calc(100vh - 160px));
  padding: clamp(36px, 5vw, 64px) clamp(18px, 5vw, 72px);
  background: linear-gradient(90deg, #f8f5ef 0%, #fdfcf9 55%, #e6efe9 100%);
}

.hero-copy {
  justify-self: center;
  width: min(760px, 100%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--coral);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 800px;
  margin-bottom: 20px;
  font-size: clamp(42px, 7vw, 86px);
  line-height: .95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 1.2;
}

.hero-lede {
  max-width: 660px;
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 20px;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 28px;
}

.primary-button {
  min-height: 52px;
  padding: 0 22px;
  border: 0;
  border-radius: 8px;
  color: var(--white);
  background: var(--sage);
  box-shadow: 0 12px 28px rgba(66, 105, 95, .23);
  font-weight: 900;
}

.primary-button:hover {
  background: var(--sage-dark);
}

.full {
  width: 100%;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
}

.trust-row span {
  display: grid;
  min-height: 44px;
  padding: 9px 12px;
  place-items: center;
  border: 1px solid rgba(66, 105, 95, .22);
  background: rgba(255, 255, 255, .7);
  border-radius: 8px;
  text-align: center;
  font-weight: 800;
}

.urgency-banner {
  width: 100%;
  margin-top: 14px;
  padding: 14px 16px;
  border: 1px solid rgba(199, 95, 74, .18);
  border-radius: 8px;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 12px 32px rgba(22, 32, 31, .08);
}

.urgency-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.urgency-line strong {
  font-size: 15px;
  line-height: 1.2;
}

.urgency-line span {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e23d3d;
}

.urgency-meter {
  height: 5px;
  overflow: hidden;
  border-radius: 99px;
  background: #e8e1d9;
}

.urgency-meter span {
  display: block;
  width: 16%;
  height: 100%;
  border-radius: inherit;
  background: #e23d3d;
}

.assurance-banner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  width: 100%;
  margin-top: 18px;
  padding: 18px 16px;
  border: 1px solid rgba(66, 105, 95, .16);
  border-radius: 8px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 18px 46px rgba(22, 32, 31, .08);
}

.assurance-item {
  text-align: center;
}

.assurance-icon {
  display: inline-grid;
  width: 34px;
  height: 34px;
  margin-bottom: 8px;
  place-items: center;
  color: var(--sage-dark);
}

.assurance-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.assurance-item strong {
  display: block;
  margin-bottom: 4px;
  font-size: 13px;
  line-height: 1.25;
}

.assurance-item p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.hero-media {
  position: relative;
  justify-self: center;
  width: min(560px, 100%);
  min-height: 0;
  aspect-ratio: 0.72;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% 36%;
}

.floating-offer {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: min(210px, calc(100% - 36px));
  padding: 16px;
  background: var(--white);
  border: 1px solid rgba(22, 32, 31, .12);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.floating-offer span,
.floating-offer small {
  display: block;
  color: var(--muted);
  font-weight: 800;
}

.floating-offer strong {
  display: block;
  margin: 2px 0;
  font-size: 34px;
  line-height: 1;
}

section {
  padding: clamp(58px, 8vw, 104px) clamp(18px, 6vw, 88px);
}

.section-intro {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-intro p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.pain-section,
.products-section,
.faq-section {
  background: var(--white);
}

.problem-grid,
.bundle-grid,
.benefit-list,
.testimonial-row {
  display: grid;
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

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

.problem-grid article,
.product-card,
.benefit-list > div,
blockquote,
.checkout-card,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.problem-grid article,
.benefit-list > div {
  padding: 22px;
}

.problem-grid strong,
.benefit-list strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

.problem-grid p,
.benefit-list p,
.product-card p,
.method-copy p,
.offer-copy p,
.faq-list p {
  color: var(--muted);
}

.method-section {
  display: grid;
  grid-template-columns: minmax(300px, 520px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(34px, 7vw, 94px);
}

.method-media {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.method-media img {
  width: 100%;
  aspect-ratio: 1 / 1.08;
  object-fit: cover;
}

.method-copy {
  max-width: 680px;
}

.steps {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.step {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(66, 105, 95, .2);
  background: rgba(255, 255, 255, .76);
  border-radius: 8px;
}

.step span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--white);
  background: var(--blue);
  border-radius: 8px;
  font-weight: 900;
}

.step p {
  margin-bottom: 0;
}

.comparison-section {
  padding-top: 0;
  background: var(--paper);
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 4vw, 40px);
  max-width: 1180px;
  margin: 0 auto;
}

.comparison-card {
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 20px 54px rgba(22, 32, 31, .08);
}

.zero-tracce-card {
  border-color: rgba(66, 105, 95, .58);
  background: #f8fbf8;
}

.comparison-label {
  display: inline-flex;
  margin-bottom: 22px;
  padding: 7px 16px;
  border-radius: 999px;
  background: #eaf7ee;
  color: var(--sage-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.traditional-card .comparison-label {
  background: #ffecec;
  color: var(--coral);
}

.comparison-card ul {
  display: grid;
  gap: 20px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.comparison-card li {
  position: relative;
  padding-left: 34px;
  color: var(--ink);
}

.comparison-card li::before {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
}

.zero-tracce-card li::before {
  content: "✓";
  color: #4f8f5a;
}

.traditional-card li::before {
  content: "×";
  color: #d85959;
}

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

.product-card {
  overflow: hidden;
}

.product-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  padding: 18px;
  background: #f4f7f5;
}

.product-card div {
  padding: 18px;
}

.featured-product {
  border-color: rgba(66, 105, 95, .34);
}

.label {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 9px;
  color: var(--white);
  background: var(--sage);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.label.gift {
  color: var(--ink);
  background: var(--lemon);
}

.results-section {
  background: #f0f6f3;
}

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

.testimonial-row {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 18px;
}

blockquote {
  margin: 0;
  padding: 24px;
}

blockquote p {
  font-size: 18px;
}

cite {
  color: var(--sage-dark);
  font-style: normal;
  font-weight: 900;
}

.offer-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 390px);
  align-items: start;
  gap: clamp(28px, 6vw, 74px);
  background: var(--ink);
  color: var(--white);
}

.offer-copy {
  max-width: 760px;
}

.offer-copy p,
.offer-copy .eyebrow {
  color: rgba(255, 255, 255, .76);
}

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

.check-list li {
  position: relative;
  padding-left: 30px;
  font-weight: 800;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 1px;
  content: "✓";
  color: var(--lemon);
}

.checkout-card {
  position: sticky;
  top: 104px;
  padding: 22px;
  color: var(--ink);
}

.price-line,
.main-price,
.cart-summary div,
.order-summary div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}

.price-line {
  color: var(--muted);
}

.main-price {
  margin: 12px 0;
}

.main-price span {
  font-weight: 900;
}

.main-price strong {
  font-size: 42px;
  line-height: 1;
}

.saving {
  margin-bottom: 18px;
  padding: 10px;
  color: var(--ink);
  background: #fff2c3;
  border-radius: 8px;
  text-align: center;
  font-weight: 900;
}

.checkout-urgency {
  width: 100%;
  margin-top: 12px;
}

.cart-urgency {
  width: min(280px, 100%);
  margin-top: 12px;
  padding: 10px 12px;
  box-shadow: none;
}

.cart-urgency .urgency-line {
  margin-bottom: 8px;
}

.cart-urgency .urgency-line strong {
  font-size: 13px;
}

.payment-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.payment-logos span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  min-width: 74px;
  padding: 7px 12px;
  border: 0;
  border-radius: 5px;
  color: var(--white);
  background: #003087;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .16);
}

.payment-block {
  padding: 14px 14px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(22, 32, 31, .06);
}

.payment-block > span {
  display: block;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  text-transform: none;
}

.payment-block .payment-logos {
  margin-top: 10px;
}

.paypal-buttons {
  min-height: 48px;
  margin-top: 16px;
}

.paypal-buttons-inline {
  margin-top: 18px;
}

.paypal-buttons[hidden] {
  display: none;
}

.paypal-redirect-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 52px;
  border: 0;
  border-radius: 8px;
  background: #ffc439;
  color: #11245a;
  box-shadow: 0 14px 28px rgba(17, 36, 90, .16);
  font-weight: 900;
}

.paypal-redirect-button:hover {
  background: #f2ba36;
}

.paypal-redirect-button:disabled {
  cursor: wait;
  opacity: .72;
}

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

.faq-list details {
  padding: 18px 20px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 900;
}

.faq-list p {
  margin: 14px 0 0;
}

.final-cta {
  text-align: center;
  background: #e7f0ee;
}

.final-cta p {
  max-width: 620px;
  margin: 0 auto 24px;
  color: var(--muted);
  font-size: 18px;
}

.cart-drawer,
.checkout-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  background: rgba(22, 32, 31, .45);
}

.cart-drawer.is-open,
.checkout-modal.is-open {
  display: block;
}

.cart-panel,
.checkout-panel {
  background: var(--white);
  box-shadow: var(--shadow);
}

.cart-panel {
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: min(430px, 100%);
  min-height: 100%;
  padding: 22px;
}

.checkout-panel {
  width: min(1080px, calc(100% - 28px));
  max-height: calc(100vh - 28px);
  margin: 14px auto;
  padding: 22px;
  overflow: auto;
  border-radius: 8px;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.drawer-header h2 {
  margin: 0;
  font-size: 26px;
}

.icon-button {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 8px;
  font-size: 24px;
  line-height: 1;
}

.cart-item {
  display: grid;
  grid-template-columns: 78px 1fr auto;
  gap: 14px;
  align-items: start;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.cart-item img {
  width: 78px;
  height: 78px;
  object-fit: contain;
  background: #f4f7f5;
  border-radius: 8px;
}

.cart-item p {
  margin: 3px 0 10px;
  color: var(--muted);
}

.quantity-control {
  display: inline-grid;
  grid-template-columns: 32px 34px 32px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.quantity-control button {
  height: 32px;
  border: 0;
  background: #f5f7f5;
  font-weight: 900;
}

.quantity-control span {
  text-align: center;
  font-weight: 900;
}

.cart-summary {
  display: grid;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.total {
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-size: 20px;
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
  gap: 22px;
  margin-top: 20px;
}

.checkout-fields {
  display: grid;
  gap: 18px;
}

.checkout-fields section,
.order-summary {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.checkout-fields h3,
.order-summary h3 {
  margin-bottom: 14px;
}

label {
  display: grid;
  gap: 7px;
  margin-bottom: 13px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

input[type="text"],
input[type="email"],
input[type="tel"] {
  min-height: 46px;
  width: 100%;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
}

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

.payment-methods {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}

.payment-methods label {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 44px;
  margin: 0;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #f9fbfa;
}

.order-summary {
  align-self: start;
  display: grid;
  gap: 14px;
  background: #f8faf8;
}

.secure-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.thank-you-page {
  min-height: 100vh;
  background: linear-gradient(135deg, #f8f5ef 0%, #e7f0ee 100%);
}

.thank-you-wrap {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: clamp(24px, 5vw, 64px);
}

.thank-you-card {
  width: min(760px, 100%);
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.thank-you-brand img {
  width: 132px;
  margin-bottom: 30px;
}

.thank-you-card h1 {
  margin-bottom: 18px;
  font-size: clamp(36px, 6vw, 62px);
}

.thank-you-card p {
  color: var(--muted);
  font-size: 18px;
}

.thank-you-summary {
  display: grid;
  gap: 12px;
  margin: 28px 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8faf8;
}

.thank-you-summary div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.thank-you-summary span {
  color: var(--muted);
  font-weight: 800;
}

.thank-you-next {
  margin-bottom: 24px;
  padding: 18px;
  border-left: 4px solid var(--sage);
  background: #f0f6f3;
}

.thank-you-next p {
  margin: 8px 0 0;
}

.thank-you-button {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 22px;
  z-index: 200;
  display: none;
  width: min(420px, calc(100% - 32px));
  padding: 14px 16px;
  color: var(--white);
  background: var(--sage-dark);
  border-radius: 8px;
  text-align: center;
  box-shadow: var(--shadow);
  transform: translateX(-50%);
  font-weight: 800;
}

.toast.is-visible {
  display: block;
}

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

  .hero,
  .method-section,
  .offer-section,
  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }

  .hero-media {
    min-height: 520px;
  }

  .problem-grid,
  .bundle-grid,
  .benefit-list,
  .testimonial-row,
  .assurance-banner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .checkout-card {
    position: static;
  }
}

@media (max-width: 640px) {
  .topbar {
    gap: 12px;
    justify-content: center;
    overflow: hidden;
    white-space: nowrap;
    font-size: 11px;
  }

  .topbar span:nth-child(3) {
    display: none;
  }

  .site-header {
    padding: 12px 14px;
  }

  .brand img {
    width: 104px;
  }

  .cart-button span:not(.cart-icon) {
    display: none;
  }

  .hero {
    padding: 28px 16px 30px;
  }

  .trust-row {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 44px;
  }

  .hero-lede {
    font-size: 18px;
  }

  .hero-media {
    min-height: 440px;
  }

  section {
    padding: 52px 16px;
  }

  .problem-grid,
  .bundle-grid,
  .benefit-list,
  .testimonial-row,
  .assurance-banner,
  .field-grid,
  .payment-methods {
    grid-template-columns: 1fr;
  }

  .cart-item {
    grid-template-columns: 70px 1fr;
  }

  .cart-item > span {
    grid-column: 2;
  }
}
