:root {
  --green: #075f38;
  --green-2: #0d7b4a;
  --orange: #f7941d;
  --orange-2: #ffac34;
  --ink: #123124;
  --muted: #5e6a62;
  --line: #e9dfcc;
  --paper: #fffdf7;
  --cream: #fbf4e6;
  --soft: #f8efe0;
  --card: rgba(255, 255, 255, 0.76);
  --card-border: rgba(232, 222, 200, 0.96);
  --radius: 8px;
  --shadow: 0 8px 18px rgba(82, 55, 11, 0.06);
  --shadow-button: 0 9px 18px rgba(3, 85, 49, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Prompt", Tahoma, Arial, sans-serif;
  background:
    radial-gradient(circle at 20% 5%, rgba(247, 148, 29, 0.06), transparent 30%),
    linear-gradient(180deg, #fffaf1 0%, #fffdf8 52%, #fbf2e3 100%);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 66px;
  padding: 8px clamp(20px, 5vw, 64px);
  background: rgba(255, 253, 247, 0.94);
  border-bottom: 1px solid rgba(224, 211, 187, 0.78);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: auto;
  flex: 0 0 auto;
}

.brand img {
  display: block;
  width: auto;
  height: 47px;
}

.main-nav {
  display: flex;
  gap: clamp(24px, 4.4vw, 58px);
  align-items: center;
  font-size: 13.5px;
  font-weight: 500;
}

.main-nav a {
  color: #111f18;
}

.line-pill,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 45px;
  padding: 0 22px;
  border: 0;
  border-radius: var(--radius);
  font-weight: 650;
  white-space: nowrap;
  box-shadow: var(--shadow-button);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

@media (hover: hover) {
  .line-pill:hover,
  .btn:hover {
    transform: translateY(-1px);
  }

  .line-pill:hover,
  .btn-primary:hover {
    box-shadow: 0 12px 22px rgba(3, 85, 49, 0.18);
  }

  .btn-orange:hover {
    box-shadow: 0 12px 22px rgba(236, 127, 0, 0.22);
  }

  .btn-light:hover {
    box-shadow: 0 6px 14px rgba(7, 95, 56, 0.1);
  }
}

.line-pill:active,
.btn:active {
  transform: translateY(0);
}

.line-pill,
.btn-primary {
  color: white;
  background: linear-gradient(180deg, var(--green-2), var(--green));
}

.line-pill {
  font-size: 13.5px;
}

.btn-orange {
  color: white;
  background: linear-gradient(180deg, var(--orange-2), var(--orange));
  box-shadow: 0 9px 18px rgba(236, 127, 0, 0.17);
}

.btn-light {
  color: var(--green);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(7, 95, 56, 0.34);
  box-shadow: none;
}

.btn svg,
.line-pill svg,
.icon-line-bubble {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(490px, 1fr) minmax(490px, 1fr);
  gap: clamp(12px, 2vw, 24px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(28px, 3.8vw, 42px) clamp(20px, 5vw, 64px) 12px;
}

.eyebrow {
  display: none;
  margin: 0 0 8px;
  color: var(--orange);
  font-weight: 700;
}

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

p {
  margin-bottom: 0;
}

h1 {
  max-width: 650px;
  margin-bottom: 16px;
  color: var(--green);
  font-size: clamp(39px, 4.45vw, 60px);
  line-height: 1.13;
  font-weight: 700;
}

h1 span {
  color: var(--orange);
}

h2 {
  margin-bottom: 15px;
  color: var(--green);
  font-size: clamp(24px, 2.2vw, 31px);
  line-height: 1.25;
  font-weight: 700;
}

h3 {
  font-size: 18px;
  font-weight: 700;
}

.lead {
  max-width: 595px;
  margin-bottom: 20px;
  color: #3f4b45;
  font-size: clamp(16px, 1.45vw, 19px);
  line-height: 1.5;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 15px;
  margin-top: 28px;
}

.trust-row article,
.problem-cards article,
.feature-grid article,
.steps article,
.template-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.trust-row article {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 11px;
  align-items: center;
  min-height: 54px;
  padding: 9px 14px;
}

.trust-row svg {
  grid-row: span 2;
  width: 26px;
  height: 26px;
  color: var(--green);
  stroke-width: 2.6;
}

.trust-row article:nth-child(2) svg {
  color: var(--orange);
}

.trust-row strong {
  align-self: end;
  font-size: 15px;
  line-height: 1.1;
  font-weight: 700;
}

.trust-row span {
  align-self: start;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.3;
  font-weight: 500;
}

.hero-art {
  min-width: 0;
  align-self: stretch;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}

.hero-art img {
  width: min(100%, 560px);
  max-width: 100%;
  height: auto;
  margin-left: auto;
  transform: translateY(-4px);
  border-radius: 0;
  filter:
    drop-shadow(0 22px 22px rgba(24, 16, 3, 0.12))
    drop-shadow(0 6px 10px rgba(24, 16, 3, 0.08));
}

.hero .btn {
  min-height: 50px;
  padding-inline: 26px;
  font-size: 16px;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding-inline: clamp(20px, 5vw, 64px);
}

.problem-section,
.examples,
.feature-pricing,
.steps-cta {
  border-top: 1px solid var(--line);
}

.problem-grid,
.split-grid,
.bottom-grid {
  display: grid;
  gap: 30px;
}

.problem-grid {
  grid-template-columns: minmax(0, 1.5fr) minmax(330px, 1fr);
  align-items: center;
  gap: 30px;
  padding-top: 25px;
  padding-bottom: 16px;
}

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

.problem-cards article {
  min-height: 146px;
  padding: 14px 11px 12px;
  text-align: center;
}

.problem-cards .problem-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 10px;
  object-fit: contain;
  display: block;
}

.problem-cards strong {
  display: block;
  min-height: 36px;
  color: var(--green);
  font-size: 14px;
  line-height: 1.28;
  font-weight: 700;
}

.problem-cards p {
  font-size: 13px;
}

.problem-cards p,
.solution-panel p,
.steps p,
.cta-card p {
  color: var(--muted);
  line-height: 1.42;
}

.cta-card p {
  margin-bottom: 14px;
}

.solution-panel {
  display: grid;
  align-self: center;
  min-height: 260px;
  padding: 0 0 0 8px;
  align-content: start;
  background-image: url("assets/solution-shop-cutout.png");
  background-repeat: no-repeat;
  background-position: right 0 bottom 0;
  background-size: min(105%, 365px) auto;
}

.solution-copy {
  max-width: 350px;
}

.solution-panel h2 {
  margin-bottom: 9px;
  font-size: clamp(23px, 2.05vw, 28px);
  line-height: 1.23;
}

.solution-panel p {
  font-size: 17px;
  line-height: 1.52;
}

.examples {
  padding: 22px 0 18px;
}

.example-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 13px;
  align-items: stretch;
}

.template-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 9px 9px 12px;
  text-align: center;
}

.template-card h3 {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  min-height: 2.5em;
  margin-bottom: 7px;
  font-size: 15px;
  line-height: 1.25;
}

.template-thumb {
  flex: 1 1 auto;
  aspect-ratio: 520 / 693;
  overflow: hidden;
}

.template-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.feature-pricing {
  padding: 21px 0 21px;
}

.split-grid {
  grid-template-columns: 0.96fr 1.04fr;
  align-items: start;
}

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

.feature-grid article {
  display: flex;
  height: 112px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  place-items: center;
  padding: 9px 6px;
  text-align: center;
  font-size: 12.25px;
  line-height: 1.18;
  font-weight: 650;
}

.feature-grid .feature-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 8px;
  object-fit: contain;
}

.feature-grid span {
  display: flex;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  color: #151c18;
}

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

.price-card {
  position: relative;
  padding: 15px 16px 17px;
  background: var(--card);
  border: 1.5px solid rgba(7, 95, 56, 0.38);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.price-card.featured {
  border-color: var(--orange);
}

.badge {
  position: absolute;
  top: -14px;
  right: 0;
  display: inline-grid;
  height: 30px;
  padding: 0 14px;
  place-items: center;
  color: white;
  background: var(--orange);
  border-radius: var(--radius);
  font-weight: 700;
}

.price-card h3 {
  margin-bottom: 0;
  color: var(--green);
  text-align: center;
  font-size: 16px;
}

.featured h3,
.featured .price {
  color: var(--orange);
}

.price {
  margin-bottom: 10px;
  color: var(--green);
  text-align: center;
  font-size: 29px;
  line-height: 1;
  font-weight: 750;
}

.price span {
  font-size: 18px;
}

.price-card ul {
  display: grid;
  gap: 6px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.price-card li {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  color: #26382e;
  font-size: 12px;
  line-height: 1.35;
}

.price-card li svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  color: var(--green);
}

.price-card .btn {
  width: 100%;
  min-height: 40px;
  font-size: 13px;
}

.note {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  margin: 12px auto 0;
  padding: 7px 22px;
  color: #c77010;
  background: #fff0c8;
  border-radius: var(--radius);
  font-weight: 650;
}

.note svg {
  width: 18px;
  height: 18px;
  color: var(--green);
}

.steps-cta {
  padding: 21px 0 18px;
}

.bottom-grid {
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 13px;
}

.steps article {
  position: relative;
  min-height: 130px;
  padding: 13px 10px 10px;
  text-align: center;
}

.steps article + article::before {
  position: absolute;
  top: 50px;
  left: -15px;
  width: 16px;
  height: 2px;
  content: "";
  background: var(--green);
}

.steps span {
  position: absolute;
  top: -10px;
  left: -5px;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: white;
  background: var(--green);
  border-radius: 999px;
  font-weight: 700;
}

.steps .step-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 6px;
  object-fit: contain;
}

.steps strong {
  display: block;
  color: var(--green);
  font-size: 13px;
}

.steps p {
  margin: 3px 0 0;
  font-size: 11px;
  line-height: 1.35;
}

.cta-card {
  position: relative;
  overflow: hidden;
  min-height: 156px;
  padding: 20px 28px;
  text-align: center;
  background:
    linear-gradient(90deg, rgba(255, 245, 221, 0.92), rgba(255, 250, 238, 0.92)),
    radial-gradient(circle at 92% 82%, rgba(247, 148, 29, 0.18), transparent 25%);
  border: 1px solid #f0dfbf;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.cta-card::before {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 200px;
  height: 140px;
  content: "";
  background: url("assets/cta-card-bg.svg") right bottom / 200px auto no-repeat;
  opacity: 0.55;
  pointer-events: none;
}

.cta-card > * {
  position: relative;
  z-index: 1;
}

.cta-card .hero-actions {
  justify-content: center;
  flex-wrap: nowrap;
  gap: 12px;
}

.cta-card .btn {
  min-height: 44px;
  padding: 0 18px;
  font-size: 14px;
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 24px;
  align-items: center;
  padding: 13px clamp(20px, 5vw, 64px) 14px;
  background: rgba(255, 253, 247, 0.88);
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
  color: var(--muted);
}

.site-footer nav {
  display: flex;
  gap: 24px;
  font-size: 13px;
  font-weight: 500;
}

.footer-contact {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green);
}

.footer-contact svg,
.footer-contact .icon-line-bubble {
  width: 20px;
  height: 20px;
}

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

  .hero,
  .problem-grid,
  .split-grid,
  .bottom-grid {
    grid-template-columns: 1fr;
  }

  .hero-art img {
    margin: 0 auto;
  }

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

  .problem-cards strong {
    font-size: 15px;
    line-height: 1.3;
    min-height: 38px;
  }

  .problem-cards p {
    font-size: 13.5px;
  }

  .solution-panel p {
    font-size: 16px;
    line-height: 1.5;
  }

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

  .feature-grid article {
    height: auto;
    min-height: 100px;
    padding: 9px 5px;
    font-size: 12.5px;
  }

  .feature-grid .feature-icon {
    width: 46px;
    height: 46px;
    margin-bottom: 6px;
  }

  .feature-grid span {
    min-height: 2.4em;
    font-size: 12.5px;
    line-height: 1.28;
  }

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

  .template-card h3 {
    font-size: 16px;
    line-height: 1.28;
  }

  .trust-row {
    position: relative;
    display: block;
    min-height: 58px;
    margin-top: 22px;
  }

  .trust-row article {
    position: absolute;
    inset: 0;
    width: 100%;
    min-height: 58px;
    padding: 10px 16px;
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
  }

  .trust-row article.is-active {
    opacity: 1;
    pointer-events: auto;
  }

  .trust-row strong {
    font-size: 16px;
  }

  .trust-row span {
    font-size: 13.5px;
    line-height: 1.35;
  }

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

  .steps article + article::before {
    display: none;
  }

  .steps strong {
    font-size: 15px;
  }

  .steps p {
    font-size: 13px;
  }

  .price-card li {
    font-size: 13px;
  }

  .price-card .btn {
    font-size: 14px;
  }

  .note {
    font-size: 14px;
  }

  @media (prefers-reduced-motion: reduce) {
    .trust-row article {
      transition: none;
    }
  }

  .site-footer {
    grid-template-columns: 1fr;
  }
}

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

  .brand {
    width: auto;
  }

  .brand img {
    height: 44px;
  }

  .line-pill {
    min-height: 42px;
    padding-inline: 12px;
    font-size: 13.5px;
    gap: 7px;
  }

  .line-pill .icon-line-bubble {
    width: 18px;
    height: 18px;
  }

  .hero {
    padding-top: 30px;
  }

  .hero-art {
    align-self: auto;
    justify-content: center;
  }

  .hero-art img {
    width: min(100%, 520px);
    height: auto;
    max-width: 100%;
    transform: none;
  }

  .hero-actions,
  .hero-actions .btn {
    width: 100%;
  }

  .price-cards,
  .steps {
    grid-template-columns: 1fr;
  }

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

  .problem-cards strong {
    font-size: 16px;
  }

  .problem-cards p {
    font-size: 14px;
  }

  .feature-grid article {
    font-size: 13px;
    padding: 10px 6px;
  }

  .feature-grid span {
    font-size: 13px;
    line-height: 1.28;
  }

  .steps strong {
    font-size: 15px;
  }

  .steps p {
    font-size: 13.5px;
  }

  .price-card li {
    font-size: 14px;
  }

  .cta-card p {
    font-size: 15px;
    line-height: 1.5;
  }

  .cta-card .btn {
    font-size: 15px;
  }

  .site-footer p,
  .site-footer nav {
    font-size: 14px;
  }

  .steps article + article::before {
    display: none;
  }

  .cta-card {
    padding: 24px 18px;
  }

  .cta-card::before {
    width: 168px;
    height: 118px;
    background-size: 168px auto;
  }

  .cta-card .hero-actions {
    flex-wrap: wrap;
  }

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

  .site-footer nav {
    flex-wrap: wrap;
    gap: 14px 22px;
  }
}

@media (max-width: 420px) {
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .line-pill,
  .btn {
    transition: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
