:root {
  color-scheme: light;
  --ink: #17201d;
  --muted: #65716d;
  --line: #dce6e1;
  --green: #0b7c69;
  --green-dark: #075f52;
  --lime: #a8ea6c;
  --red: #c43d35;
  --red-soft: #fff0ee;
  --yellow: #b87908;
  --yellow-soft: #fff6dc;
  --blue: #2d68c4;
  --soft: #eff8f4;
  --blue-soft: #eef5ff;
  --orange-soft: #fff4df;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: #fbfcfb;
  color: var(--ink);
  font-family: Inter, "Plus Jakarta Sans", "Segoe UI", Arial, sans-serif;
}

a {
  color: inherit;
}

.site-header {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 40px));
  min-height: 74px;
  margin: 0 auto;
  border-bottom: 1px solid rgba(23, 32, 29, 0.08);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 10px;
}

.brand strong {
  font-size: 19px;
}

.desktop-nav,
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.desktop-nav {
  gap: 26px;
}

.desktop-nav a {
  color: #4f5b57;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.desktop-nav a:hover {
  color: var(--green);
}

.login-link,
.header-cta,
.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 8px;
  padding: 0 18px;
  font-weight: 850;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.login-link {
  color: var(--ink);
}

.header-cta,
.primary-action {
  gap: 9px;
  color: #fff;
  background: var(--green);
}

.header-cta:hover,
.primary-action:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
}

.secondary-action {
  border: 1px solid var(--line);
  color: var(--ink);
  background: #fff;
}

.secondary-action:hover {
  border-color: #afc7bc;
  background: #f6faf8;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(440px, 1.08fr);
  align-items: center;
  gap: clamp(40px, 6vw, 84px);
  width: min(1180px, calc(100% - 40px));
  min-height: min(780px, calc(100vh - 74px));
  margin: 0 auto;
  padding: 60px 0 72px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(42px, 4.35vw, 64px);
  line-height: 1.06;
}

.hero-copy {
  animation: reveal-up 620ms ease both;
}

.hero-lead {
  max-width: 610px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 1.8vw, 23px);
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 18px;
  margin-top: 28px;
}

.trust-list span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #52605c;
  font-size: 12px;
  font-weight: 800;
}

.trust-list span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
}

.hero-product-suite {
  display: grid;
  gap: 14px;
  animation: reveal-up 720ms 100ms ease both;
}

.extension-mini-card {
  display: grid;
  gap: 12px;
  border: 1px solid #cde2d8;
  border-radius: 8px;
  padding: 16px;
  background:
    radial-gradient(circle at 92% 0%, rgba(168, 234, 108, 0.25), transparent 34%),
    #ffffff;
  box-shadow: 0 18px 55px rgba(29, 55, 46, 0.11);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.extension-mini-card:hover {
  border-color: #9bcbb7;
  box-shadow: 0 24px 66px rgba(29, 55, 46, 0.16);
  transform: translateY(-3px);
}

.extension-mini-head {
  display: flex;
  align-items: center;
  gap: 11px;
}

.mini-logo {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  color: var(--green);
  background: #e8f7ef;
  font-size: 21px;
  font-weight: 950;
  box-shadow: inset 0 0 0 1px rgba(11, 124, 105, 0.18);
}

.extension-mini-head strong {
  display: block;
  font-size: 17px;
}

.extension-mini-head small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.mini-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.mini-flow span {
  border: 1px solid #cde2d8;
  border-radius: 999px;
  padding: 7px 9px;
  color: #075f52;
  background: #f1faf5;
  font-size: 11px;
  font-weight: 900;
}

.mini-flow b {
  color: var(--green);
}

.extension-mini-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.calculator-mockup {
  display: grid;
  gap: 15px;
  border: 1px solid #cde2d8;
  border-radius: 8px;
  padding: clamp(18px, 2.4vw, 28px);
  background: #fff;
  box-shadow: 0 30px 90px rgba(29, 55, 46, 0.15);
  animation: reveal-up 720ms 100ms ease both;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.calculator-mockup:hover {
  border-color: #9bcbb7;
  box-shadow: 0 36px 96px rgba(29, 55, 46, 0.2);
  transform: translateY(-4px);
}

.mockup-toolbar,
.product-line,
.potential-head,
.mockup-decision {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.mockup-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 900;
}

.mockup-brand img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #087443;
  font-size: 11px;
  font-weight: 900;
}

.live-badge i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #14a764;
  box-shadow: 0 0 0 4px #daf4e6;
  animation: status-pulse 2s ease-out infinite;
}

.product-line {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 13px 0;
}

.product-line div {
  display: grid;
  gap: 4px;
}

.product-line div:last-child {
  text-align: right;
}

.product-line span,
.mockup-price span,
.mockup-metrics span,
.potential-head span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.product-line strong {
  font-size: 14px;
}

.mockup-price {
  display: grid;
  gap: 4px;
  border-radius: 8px;
  padding: 18px;
  background: var(--soft);
}

.mockup-price strong {
  color: var(--green);
  font-size: clamp(36px, 4vw, 50px);
  line-height: 1;
}

.mockup-price small {
  color: #087443;
  font-weight: 800;
}

.mockup-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.mockup-metrics div {
  display: grid;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px;
}

.mockup-metrics strong {
  font-size: 16px;
}

.mockup-metrics .accent-metric {
  border-color: #b9dfcd;
  background: #f1faf5;
}

.mockup-metrics .accent-metric strong {
  color: var(--green);
}

.mockup-potential {
  display: grid;
  gap: 8px;
}

.potential-head strong {
  color: #087443;
  font-size: 11px;
}

.potential-track {
  position: relative;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, #de675c 0 30%, #efbd4e 30% 68%, #2fa86c 68% 100%);
}

.potential-track i {
  position: absolute;
  top: 50%;
  left: 85%;
  width: 15px;
  height: 15px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: #17201d;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  transform: translate(-50%, -50%);
  animation: gauge-arrive 900ms 420ms ease both;
}

.potential-labels {
  display: flex;
  justify-content: space-between;
  color: #7a8581;
  font-size: 9px;
  font-weight: 800;
}

.mockup-decision {
  justify-content: flex-start;
  border: 1px solid #a7dfc1;
  border-radius: 8px;
  padding: 14px;
  background: #effbf4;
}

.decision-icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #fff;
  background: #087443;
  font-weight: 900;
}

.mockup-decision p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.section-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #f4f8f6;
}

.problem-section,
.features-section,
.pricing-section,
.faq-section {
  padding: 96px max(20px, calc((100% - 1180px) / 2));
}

.section-heading {
  max-width: 760px;
  margin-bottom: 44px;
}

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

.section-heading h2,
.difference-copy h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.08;
}

.section-heading > p:last-child,
.difference-copy > p,
.final-cta > p {
  margin: 17px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.problem-grid,
.feature-grid,
.pricing-grid {
  display: grid;
  gap: 14px;
}

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

.problem-grid article {
  min-height: 220px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-top: 3px solid #bdd4ca;
  border-radius: 8px;
  padding: 24px;
  background: #fff;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.problem-grid article:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(28, 48, 41, 0.1);
}

.problem-grid .cost-risk {
  border-top-color: var(--red);
  background: linear-gradient(180deg, var(--red-soft), #fff 58%);
}

.problem-grid .time-risk {
  border-top-color: var(--yellow);
  background: linear-gradient(180deg, var(--yellow-soft), #fff 58%);
}

.problem-grid .decision-risk {
  border-top-color: var(--blue);
  background: linear-gradient(180deg, var(--blue-soft), #fff 58%);
}

.step-number {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  color: #fff;
  background: var(--green);
  font-size: 12px;
  font-weight: 900;
}

.cost-risk .step-number {
  background: var(--red);
}

.time-risk .step-number {
  background: var(--yellow);
}

.decision-risk .step-number {
  background: var(--blue);
}

.problem-grid h3,
.feature-card h3,
.pricing-card h3 {
  margin: 15px 0 8px;
  font-size: 20px;
}

.problem-grid p,
.feature-card p,
.pricing-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.features-section {
  background: #fff;
}

.extension-highlight {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  align-items: center;
  gap: clamp(26px, 5vw, 58px);
  max-width: 1080px;
  margin: -12px auto 34px;
  overflow: hidden;
  border: 1px solid #b9dfcd;
  border-radius: 14px;
  padding: clamp(22px, 3vw, 34px);
  background:
    radial-gradient(circle at 86% 14%, rgba(168, 234, 108, 0.34), transparent 30%),
    linear-gradient(135deg, #f0fbf5 0%, #ffffff 48%, #eef7ff 100%);
  box-shadow: 0 28px 80px rgba(28, 48, 41, 0.13);
}

.extension-highlight-copy {
  display: grid;
  gap: 14px;
}

.feature-tag {
  width: fit-content;
  border: 1px solid #b9dfcd;
  border-radius: 999px;
  padding: 8px 10px;
  color: #075f52;
  background: #ffffff;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.extension-highlight h3 {
  max-width: 600px;
  margin: 0;
  font-size: clamp(26px, 3.2vw, 42px);
  line-height: 1.08;
}

.extension-highlight p {
  max-width: 590px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.58;
}

.highlight-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.highlight-points span {
  border-radius: 999px;
  padding: 8px 10px;
  color: #075f52;
  background: #dff6e9;
  font-size: 12px;
  font-weight: 900;
}

.extension-highlight-visual {
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
  gap: 10px;
  min-height: 0;
  max-width: 380px;
  justify-self: end;
}

.browser-mini {
  display: grid;
  align-content: space-between;
  gap: 12px;
  border: 1px solid #d4e5dd;
  border-radius: 12px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 42px rgba(28, 48, 41, 0.09);
}

.extension-ml-stage {
  display: grid;
  grid-template-columns: minmax(96px, 0.75fr) minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 148px;
  border: 1px solid #cde2d8;
  border-radius: 12px;
  padding: 12px;
  background:
    linear-gradient(135deg, rgba(255, 241, 89, 0.22), rgba(255, 255, 255, 0.92)),
    #ffffff;
  box-shadow: 0 14px 34px rgba(28, 48, 41, 0.08);
}

.captured-product-photo {
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid #b9dfcd;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 16px 36px rgba(28, 48, 41, 0.12);
}

.captured-product-photo img {
  display: block;
  width: 100%;
  height: 116px;
  object-fit: contain;
  object-position: center;
}

.ml-product-preview {
  display: block;
  border-radius: 12px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.72);
}

.ml-product-preview b {
  display: block;
  font-size: 13px;
  line-height: 1.25;
}

.ml-product-preview small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
}

.browser-mini-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.marketplace-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.marketplace-logos span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  border-radius: 999px;
  padding: 0 9px;
  font-size: 10px;
  font-weight: 950;
}

.ml-badge {
  color: #23314d;
  background: #fff159;
}

.shopee-badge {
  color: #ffffff;
  background: #ee4d2d;
}

.browser-mini-top strong {
  color: #5a6662;
  font-size: 12px;
}

.browser-mini-top span {
  border-radius: 999px;
  padding: 6px 8px;
  color: #075f52;
  background: #dff6e9;
  font-size: 10px;
  font-weight: 900;
}

.browser-product {
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: center;
  gap: 10px;
  min-height: 76px;
}

.large-product {
  grid-template-columns: 64px 1fr;
}

.browser-image {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(255, 241, 89, 0.55), rgba(11, 124, 105, 0.2)),
    #f5f7f6;
}

.large-product .browser-image {
  width: 64px;
  height: 64px;
}

.browser-product b {
  display: block;
  font-size: 13px;
  line-height: 1.25;
}

.browser-product small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
}

.fake-lines {
  display: grid;
  gap: 8px;
}

.fake-lines i {
  display: block;
  height: 9px;
  border-radius: 999px;
  background: #e4eee9;
}

.fake-lines i:first-child {
  width: 82%;
}

.fake-lines i:last-child {
  width: 58%;
}

.extension-transfer {
  display: grid;
  grid-template-columns: 38px 1fr 28px;
  align-items: center;
  gap: 10px;
  border: 1px solid #b9dfcd;
  border-radius: 999px;
  padding: 9px 10px;
  background: #f6fffa;
  box-shadow: 0 12px 30px rgba(28, 48, 41, 0.08);
}

.extension-transfer .mini-logo {
  width: 34px;
  height: 34px;
  font-size: 18px;
}

.extension-transfer strong {
  display: block;
  color: #075f52;
  font-size: 13px;
}

.extension-transfer p {
  margin: 2px 0 0;
  color: #60706c;
  font-size: 11px;
  line-height: 1.25;
}

.extension-transfer b {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--green);
  font-size: 15px;
}

.makerworld-mini {
  border-color: #b9dfcd;
  background: #f4fbf7;
}

.maker-search-shots {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.maker-search-shots img {
  display: block;
  width: 100%;
  height: 96px;
  object-fit: cover;
  object-position: center top;
  border: 1px solid #cde2d8;
  border-radius: 12px;
  background: #18201d;
  box-shadow: 0 12px 28px rgba(28, 48, 41, 0.1);
}

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

.match-grid i {
  display: block;
  min-height: 46px;
  border: 1px solid #cde2d8;
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(11, 124, 105, 0.12), rgba(45, 104, 196, 0.1)),
    #ffffff;
}

.ml-browser {
  background:
    linear-gradient(180deg, rgba(255, 241, 89, 0.18), rgba(255, 255, 255, 0.82));
}

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

.feature-card {
  display: grid;
  align-content: start;
  min-height: 250px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: #fbfcfb;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.feature-card:hover {
  border-color: #aacdc0;
  transform: translateY(-5px);
  box-shadow: 0 22px 48px rgba(28, 48, 41, 0.12);
}

.feature-card:hover .feature-icon {
  transform: scale(1.08) rotate(-3deg);
}

.feature-card.featured {
  background: var(--blue-soft);
}

.feature-card.result-feature {
  background: var(--soft);
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  color: #fff;
  background: var(--green);
  font-size: 13px;
  font-weight: 900;
  transition: transform 180ms ease;
}

.feature-card:nth-child(2) .feature-icon {
  background: var(--blue);
}

.feature-card:nth-child(3) .feature-icon {
  color: #442d00;
  background: #efbd4e;
}

.feature-card:nth-child(4) .feature-icon {
  background: #7357bd;
}

.feature-card:nth-child(5) .feature-icon {
  color: #243900;
  background: var(--lime);
}

.feature-card:nth-child(6) .feature-icon {
  background: #087443;
}

.feature-detail {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  border-top: 1px solid #cadbd3;
  padding-top: 16px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.feature-detail strong {
  color: var(--green);
  font-size: 18px;
}

.difference-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.8fr);
  align-items: center;
  gap: clamp(40px, 8vw, 100px);
  padding: 96px max(20px, calc((100% - 1180px) / 2));
}

.extension-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
  align-items: center;
  gap: clamp(38px, 7vw, 92px);
  padding: 96px max(20px, calc((100% - 1180px) / 2));
  background:
    radial-gradient(circle at 84% 18%, rgba(168, 234, 108, 0.26), transparent 30%),
    linear-gradient(180deg, #f4f8f6 0%, #ffffff 100%);
}

.extension-copy h2 {
  margin: 0;
  font-size: clamp(34px, 4.2vw, 54px);
  line-height: 1.08;
}

.extension-copy > p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.62;
}

.extension-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.extension-demo {
  overflow: hidden;
  border: 1px solid #cde2d8;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 28px 80px rgba(28, 48, 41, 0.14);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.extension-demo:hover {
  border-color: #98cbb6;
  box-shadow: 0 36px 92px rgba(28, 48, 41, 0.18);
  transform: translateY(-4px);
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  border-bottom: 1px solid var(--line);
  padding: 13px 16px;
  background: #f8fbf9;
}

.browser-bar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #d5e1dc;
}

.browser-bar span:first-child {
  background: #de675c;
}

.browser-bar span:nth-child(2) {
  background: #efbd4e;
}

.browser-bar span:nth-child(3) {
  background: #2fa86c;
}

.browser-bar strong {
  margin-left: 10px;
  color: #52605c;
  font-size: 12px;
}

.extension-flow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  padding: 22px;
}

.extension-step {
  display: grid;
  gap: 14px;
  min-height: 160px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 16px;
  background: #fbfcfb;
}

.ml-step {
  border-top: 4px solid #fff159;
}

.maker-step {
  border-top: 4px solid var(--green);
  background: var(--soft);
}

.step-head {
  display: flex;
  align-items: center;
  gap: 9px;
}

.step-head span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  color: #102a25;
  background: #fff159;
  font-size: 11px;
  font-weight: 950;
}

.maker-step .step-head span {
  color: #fff;
  background: var(--green);
}

.step-head strong {
  font-size: 15px;
}

.fake-product,
.maker-card {
  display: grid;
  grid-template-columns: 56px 1fr;
  align-items: center;
  gap: 11px;
  border: 1px solid #dce6e1;
  border-radius: 10px;
  padding: 10px;
  background: #fff;
}

.fake-image {
  width: 56px;
  height: 56px;
  border-radius: 9px;
  background:
    linear-gradient(135deg, rgba(11, 124, 105, 0.18), rgba(168, 234, 108, 0.26)),
    #f2f6f4;
}

.fake-product b,
.maker-card b {
  display: block;
  font-size: 13px;
}

.fake-product small,
.maker-card small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.maker-logo {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  color: var(--green);
  background: #e8f7ef;
  font-size: 22px;
  font-weight: 950;
  box-shadow: inset 0 0 0 1px rgba(11, 124, 105, 0.18);
}

.flow-arrow {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  color: #fff;
  background: var(--green);
  font-weight: 950;
  box-shadow: 0 10px 26px rgba(11, 124, 105, 0.22);
}

.extension-result {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 0 22px 22px;
  border: 1px solid #a7dfc1;
  border-radius: 10px;
  padding: 15px;
  background: #effbf4;
}

.result-dot {
  flex: 0 0 auto;
  width: 12px;
  height: 12px;
  margin-top: 4px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px #d9f4e5;
}

.extension-result strong {
  color: #075f52;
}

.extension-result p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.difference-copy .primary-action {
  margin-top: 28px;
}

.comparison {
  border: 1px solid #cdded6;
  border-radius: 8px;
  padding: 22px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(28, 48, 41, 0.1);
}

.comparison-head,
.comparison-row,
.comparison-result {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.comparison-head {
  padding-bottom: 17px;
  border-bottom: 1px solid var(--line);
}

.comparison-row {
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

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

.comparison-result {
  margin-top: 18px;
  border-radius: 8px;
  padding: 14px;
  color: #087443;
  background: #e8f8ef;
  font-size: 13px;
}

.pricing-section {
  background: #fff;
}

.pricing-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  max-width: 980px;
  margin: 0 auto;
}

.pricing-card {
  position: relative;
  display: grid;
  gap: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  background: #fbfcfb;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(28, 48, 41, 0.11);
}

.pricing-card.recommended {
  border-color: var(--green);
  background: #f1faf5;
  box-shadow: 0 24px 60px rgba(11, 124, 105, 0.14);
}

.recommended-badge {
  position: absolute;
  top: 0;
  right: 20px;
  padding: 7px 10px;
  color: #fff;
  background: var(--green);
  font-size: 11px;
  font-weight: 900;
  transform: translateY(-50%);
}

.plan-name {
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.price-placeholder {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.price-placeholder strong {
  font-size: clamp(36px, 4vw, 46px);
  line-height: 1;
}

.price-placeholder span {
  color: var(--muted);
  font-size: 13px;
}

.price-comparison {
  display: grid;
  gap: 5px;
  border: 1px solid #cde2d8;
  border-radius: 8px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.72);
}

.price-comparison span {
  color: var(--muted);
  font-size: 13px;
}

.price-comparison strong {
  color: var(--green-dark);
  font-size: 14px;
}

.monthly-equivalent {
  width: fit-content;
  border-radius: 999px;
  padding: 8px 10px;
  color: #075f52;
  background: #dff6e9;
  font-size: 13px;
  font-weight: 900;
}

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

.pricing-card li {
  display: flex;
  gap: 9px;
  color: #46534f;
  font-size: 14px;
}

.pricing-card li::before {
  content: "✓";
  color: var(--green);
  font-weight: 900;
}

.full-action {
  width: 100%;
}

.faq-list {
  display: grid;
  max-width: 820px;
  margin: 0 auto;
  border-top: 1px solid #cfdcd6;
}

.faq-list details {
  border-bottom: 1px solid #cfdcd6;
  padding: 0 4px;
  transition: background 160ms ease, padding 160ms ease;
}

.faq-list details[open] {
  padding-inline: 14px;
  background: #fff;
}

.faq-list summary {
  cursor: pointer;
  padding: 21px 0;
  font-size: 16px;
  font-weight: 850;
}

.faq-list details p {
  margin: -4px 0 21px;
  color: var(--muted);
  line-height: 1.55;
}

.final-cta {
  display: grid;
  justify-items: center;
  padding: 88px 20px;
  color: #fff;
  text-align: center;
  background: #102a25;
}

.final-cta img {
  width: 52px;
  height: 52px;
  margin-bottom: 22px;
  border-radius: 13px;
}

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

.final-cta > p {
  color: #bad0c8;
}

.light-action {
  margin-top: 27px;
  color: #102a25;
  background: var(--lime);
}

.light-action:hover {
  background: #c0f28e;
}

footer {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 24px;
  width: min(1180px, calc(100% - 40px));
  min-height: 110px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 12px;
}

footer p {
  margin: 0;
}

.cookie-banner {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 16px;
  width: min(520px, calc(100% - 36px));
  border: 1px solid #cde2d8;
  border-radius: 10px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 20px 60px rgba(28, 48, 41, 0.16);
}

.cookie-banner strong {
  display: block;
  margin-bottom: 4px;
}

.cookie-banner p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.cookie-banner a {
  color: var(--green-dark);
  font-weight: 800;
}

.cookie-banner button {
  flex: 0 0 auto;
  border: 0;
  border-radius: 8px;
  padding: 11px 16px;
  color: #fff;
  background: var(--green);
  font-weight: 900;
  cursor: pointer;
}

.cookie-banner button:hover {
  background: var(--green-dark);
}

.hidden {
  display: none !important;
}

.footer-links {
  display: flex;
  gap: 14px;
}

.footer-links a {
  color: var(--green-dark);
  font-weight: 800;
  text-decoration: none;
}

@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes status-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(20, 167, 100, 0.4);
  }
  70%,
  100% {
    box-shadow: 0 0 0 7px rgba(20, 167, 100, 0);
  }
}

@keyframes gauge-arrive {
  from {
    left: 5%;
  }
  to {
    left: 85%;
  }
}


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

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

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

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 52px;
  }

  .hero-copy {
    max-width: 720px;
  }

  .calculator-mockup {
    width: min(100%, 680px);
  }

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

  .extension-highlight {
    grid-template-columns: 1fr;
  }

  .extension-highlight-visual {
    max-width: 100%;
    justify-self: stretch;
  }

  .difference-section {
    grid-template-columns: 1fr;
  }

  .extension-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 66px;
  }

  .header-cta {
    display: none;
  }

  .problem-section,
  .features-section,
  .pricing-section,
  .faq-section,
  .difference-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .problem-grid,
  .feature-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .extension-highlight {
    margin-bottom: 26px;
  }

  .extension-highlight-visual {
    grid-template-columns: 1fr;
  }

  .extension-ml-stage {
    grid-template-columns: 1fr;
  }

  .captured-product-photo img {
    height: 190px;
  }

  .maker-search-shots {
    grid-template-columns: 1fr;
  }

  .maker-search-shots img {
    height: 120px;
  }

  .extension-flow {
    grid-template-columns: 1fr;
  }

  .flow-arrow {
    justify-self: center;
    transform: rotate(90deg);
  }

  .feature-card {
    min-height: 220px;
  }

  footer {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 28px 0;
  }

  .cookie-banner {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .site-header,
  .hero,
  footer {
    width: min(100% - 24px, 1180px);
  }

  .hero {
    padding-top: 38px;
  }

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

  .hero-actions a {
    width: 100%;
  }

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

  .mockup-toolbar,
  .product-line,
  .mockup-decision,
  .comparison-head,
  .comparison-row,
  .comparison-result {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-line div:last-child {
    text-align: left;
  }

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

  .section-heading h2,
  .difference-copy h2,
  .final-cta h2 {
    font-size: 34px;
  }
}
