:root {
  --bg: #f3f7f5;
  --bg-glow-1: #d6efe3;
  --bg-glow-2: #dfeaf8;
  --surface: #ffffffee;
  --surface-solid: #ffffff;
  --text: #122022;
  --text-soft: #526367;
  --line: #d6e1de;
  --accent: #0f8a6b;
  --accent-strong: #0c6f56;
  --accent-soft: #e7f8f2;
  --radius-lg: 24px;
  --radius-md: 14px;
  --shadow-sm: 0 10px 22px rgba(14, 48, 39, 0.08);
  --shadow-lg: 0 24px 55px rgba(15, 54, 43, 0.14);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 8%, var(--bg-glow-1) 0%, transparent 36%),
    radial-gradient(circle at 86% 0%, var(--bg-glow-2) 0%, transparent 38%),
    var(--bg);
  line-height: 1.65;
  min-height: 100vh;
}

.page {
  max-width: 860px;
  margin: 0 auto;
  padding: 1rem 0.85rem 2rem;
}

.card {
  background: var(--surface);
  backdrop-filter: blur(6px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 1.15rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 0.85rem;
  padding: 0.36rem 0.78rem;
  border-radius: 999px;
  border: 1px solid #b9ead9;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2 {
  font-family: "Space Grotesk", sans-serif;
  margin: 0;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(1.75rem, 6.6vw, 2.85rem);
  line-height: 1.08;
  text-wrap: balance;
  margin-bottom: 0.65rem;
}

h2 {
  font-size: clamp(1.08rem, 3.9vw, 1.34rem);
  line-height: 1.25;
  margin-top: 1.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--line);
}

p,
ul {
  margin: 0.6rem 0 0.95rem;
}

p {
  color: var(--text);
}

ul {
  padding-left: 1.15rem;
}

li {
  margin-bottom: 0.4rem;
}

li::marker {
  color: var(--accent);
}

a {
  color: var(--accent-strong);
  text-underline-offset: 0.14em;
}

a:hover,
a:focus-visible {
  color: #095a46;
}

.meta {
  color: var(--text-soft);
  font-size: 0.95rem;
  margin-bottom: 0.95rem;
}

nav {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  margin: 0.8rem 0 1.2rem;
}

nav a {
  display: block;
  text-decoration: none;
  text-align: center;
  font-weight: 700;
  color: var(--text);
  background: var(--surface-solid);
  border: 1px solid var(--line);
  border-radius: 11px;
  padding: 0.72rem 0.9rem;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease,
    color 160ms ease;
}

nav a:hover,
nav a:focus-visible {
  border-color: #8ad8c1;
  color: var(--accent-strong);
  transform: translateY(-1px);
  box-shadow: 0 8px 16px rgba(14, 110, 86, 0.13);
}

nav a.current {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(140deg, var(--accent) 0%, var(--accent-strong) 100%);
  box-shadow: 0 10px 18px rgba(15, 116, 90, 0.3);
}

.note {
  margin-top: 1.25rem;
  padding: 0.85rem 0.9rem;
  border: 1px solid #bcebdc;
  border-left: 4px solid var(--accent);
  border-radius: 0 12px 12px 0;
  background: #f0fbf6;
  color: #264039;
}

.site-footer-global {
  margin-top: 1.5rem;
  background: linear-gradient(180deg, #0e5f4d 0%, #0b4f40 100%);
  border-top: 1px solid rgba(12, 79, 64, 0.45);
  color: #e5f2ed;
}

.site-footer-wrap {
  max-width: 980px;
  margin: 0 auto;
  padding: 1.05rem 0.85rem 1.2rem;
  font-size: 0.92rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.34rem 1.4rem;
}

.site-footer-wrap p {
  margin: 0.25rem 0;
}

.footer-brand {
  color: #ffffff;
  font-weight: 700;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.36rem 0.5rem;
}

.footer-links a {
  color: #d4ffee;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 150ms ease, color 150ms ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #ffffff;
  border-bottom-color: rgba(255, 255, 255, 0.6);
}

.footer-links span {
  color: #96cfbe;
  font-size: 0.8rem;
}

.footer-meta {
  color: #d6ece5;
  font-weight: 700;
}

.footer-note {
  max-width: 66ch;
  color: #e2f2ec;
}

.footer-contact a {
  color: #ffffff;
  font-weight: 700;
}

@media (min-width: 520px) {
  .page {
    padding: 1.3rem 1rem 2.5rem;
  }

  .card {
    padding: 1.6rem;
  }

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

  .site-footer-global {
    margin-top: 1.7rem;
  }

  .site-footer-wrap {
    padding: 1.15rem 1rem 1.35rem;
  }
}

@media (min-width: 860px) {
  .page {
    padding: 2.3rem 1.1rem 3.4rem;
  }

  .card {
    padding: 2.4rem 2.6rem;
    box-shadow: var(--shadow-lg);
  }

  .site-footer-global {
    margin-top: 2.1rem;
  }

  .site-footer-wrap {
    padding: 1.35rem 1.1rem 1.5rem;
    grid-template-columns: 1.25fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / 2;
  }

  .footer-links {
    grid-column: 2 / 3;
    justify-content: flex-end;
  }

  .footer-meta,
  .footer-note,
  .footer-contact {
    grid-column: 1 / -1;
  }
}

.home {
  --home-bg: #e6f2ed;
  --home-surface: #ffffff;
  --home-text: #10221c;
  --home-muted: #586b63;
  --home-line: #d3e4dc;
  --home-accent: #0d6f51;
  --home-accent-dark: #084934;
  --home-accent-soft: #dff2ea;
  --home-shadow: 0 18px 45px rgba(8, 73, 52, 0.12);
  --home-shadow-soft: 0 10px 28px rgba(8, 73, 52, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.42) 0%, rgba(255, 255, 255, 0) 44%),
    var(--home-bg);
  color: var(--home-text);
  overflow-x: hidden;
  position: relative;
}

.home::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 18rem 36rem at -6rem 18rem, rgba(13, 111, 81, 0.12) 0 45%, transparent 46%),
    radial-gradient(ellipse 15rem 31rem at calc(100% + 6rem) 38rem, rgba(13, 111, 81, 0.11) 0 45%, transparent 46%),
    linear-gradient(118deg, transparent 0 64%, rgba(13, 111, 81, 0.045) 64% 64.45%, transparent 64.45%),
    linear-gradient(123deg, transparent 0 70%, rgba(13, 111, 81, 0.04) 70% 70.35%, transparent 70.35%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0));
  opacity: 1;
  pointer-events: none;
}

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

.home img {
  max-width: 100%;
  height: auto;
}

.home h1,
.home h2,
.home h3,
.home p {
  margin: 0;
}

.home h1,
.home h2,
.home h3 {
  color: var(--home-text);
  letter-spacing: 0;
}

.home h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.25rem;
  line-height: 1.04;
  max-width: 14ch;
}

.home h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.72rem;
  line-height: 1.12;
}

.home h3 {
  font-size: 1.06rem;
  line-height: 1.25;
}

.home p {
  color: var(--home-muted);
  line-height: 1.65;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 0.75rem;
  background: rgba(230, 242, 237, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(211, 228, 220, 0.76);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 0.8rem;
  max-width: 1180px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.62rem;
  min-width: 0;
  color: var(--home-text);
  font-weight: 800;
  text-decoration: none;
}

.brand img {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.8rem;
  box-shadow: 0 8px 18px rgba(8, 73, 52, 0.18);
}

.brand span {
  white-space: nowrap;
}

.site-nav {
  display: none;
  margin: 0;
}

.site-nav a,
.header-cta {
  text-decoration: none;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  padding: 0.5rem 0.2rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--home-muted);
  font-size: 0.94rem;
  font-weight: 800;
  transition: color 150ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--home-accent-dark);
  transform: none;
  box-shadow: none;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
  padding: 0 1rem;
  border-radius: 999px;
  background: var(--home-accent-dark);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(8, 73, 52, 0.2);
}

.header-cta:hover,
.header-cta:focus-visible {
  color: #fff;
  background: #063827;
}

.section {
  position: relative;
  padding: 4.2rem 1rem;
}

.section-white {
  background: rgba(255, 255, 255, 0.48);
}

.section-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: calc(82vh - 4.1rem);
  display: flex;
  align-items: center;
  padding-top: 2rem;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  right: -8rem;
  bottom: -6rem;
  width: min(42vw, 31rem);
  height: 15rem;
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0)),
    linear-gradient(90deg, rgba(8, 73, 52, 0.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(8, 73, 52, 0.04) 1px, transparent 1px),
    rgba(223, 242, 234, 0.58);
  background-size: auto, 3.4rem 3.4rem, 3.4rem 3.4rem, auto;
  border: 1px solid rgba(188, 222, 208, 0.55);
  border-radius: 2.4rem;
  transform: rotate(-4deg);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2.2rem;
  align-items: center;
}

.hero-copy {
  display: grid;
  gap: 1.1rem;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  padding: 0.42rem 0.72rem;
  border: 1px solid #bcded0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--home-accent-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-subtitle {
  max-width: 42rem;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0 1.2rem;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--home-accent-dark);
  color: #fff;
  box-shadow: 0 16px 30px rgba(8, 73, 52, 0.22);
}

.button-primary:hover,
.button-primary:focus-visible {
  color: #fff;
  background: #063827;
}

.button-secondary {
  border: 1px solid #c0d8ce;
  background: rgba(255, 255, 255, 0.72);
  color: var(--home-accent-dark);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: #92c8b3;
  color: var(--home-accent-dark);
  box-shadow: var(--home-shadow-soft);
}

.hero-visual {
  position: relative;
  display: grid;
  justify-items: center;
  align-items: center;
  overflow: visible;
  padding: 0.4rem 0 1.4rem;
}

.home .hero .hero-mockup {
  display: block;
  width: min(58vw, 17rem);
  max-width: 100%;
  height: auto;
  max-height: 32rem;
  object-fit: contain;
  background: transparent;
  filter: none;
  transform: translateZ(0);
}

.section-heading {
  position: relative;
  display: grid;
  gap: 0.8rem;
  max-width: 44rem;
  margin-bottom: 1.65rem;
}

.section-heading::after {
  content: "";
  width: 5.5rem;
  height: 0.18rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--home-accent) 0%, rgba(13, 111, 81, 0) 100%);
  opacity: 0.38;
}

.wide-heading {
  max-width: 50rem;
}

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

.info-card,
.feature-card,
.pricing-card,
.step-card,
.trust-panel,
.faq-list details,
.final-cta-panel {
  border: 1px solid rgba(211, 228, 220, 0.86);
  border-radius: 1.55rem;
  background: var(--home-surface);
  box-shadow: var(--home-shadow-soft);
}

.info-card,
.feature-card {
  position: relative;
  display: grid;
  gap: 0.75rem;
  padding: 1.15rem;
  overflow: hidden;
  z-index: 0;
}

.info-card::after,
.feature-card::after {
  content: "";
  position: absolute;
  right: -2.8rem;
  top: -5.5rem;
  width: 10rem;
  height: 15rem;
  background:
    radial-gradient(ellipse 3.4rem 7.2rem at 50% 24%, rgba(13, 111, 81, 0.08) 0 47%, transparent 48%),
    radial-gradient(ellipse 3rem 6.4rem at 70% 58%, rgba(13, 111, 81, 0.06) 0 47%, transparent 48%);
  opacity: 1;
  pointer-events: none;
  z-index: 0;
}

.info-card > *,
.feature-card > * {
  position: relative;
  z-index: 1;
}

.info-card p,
.feature-card p {
  font-size: 0.95rem;
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.9rem;
  background: var(--home-accent-soft);
  color: var(--home-accent-dark);
  font-size: 0.78rem;
  font-weight: 900;
}

.feature-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 0.8rem;
  background: var(--home-accent);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 900;
  box-shadow: 0 0 0 0.42rem var(--home-accent-soft);
}

.problem-section {
  padding-top: 5rem;
  padding-bottom: 5.6rem;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.54));
}

.problem-section::before {
  content: "";
  position: absolute;
  left: -16rem;
  bottom: -24rem;
  width: min(48vw, 32rem);
  height: min(78vh, 44rem);
  background:
    radial-gradient(ellipse 9rem 22rem at 45% 45%, rgba(13, 111, 81, 0.08) 0 48%, transparent 49%),
    radial-gradient(ellipse 8rem 18rem at 72% 56%, rgba(13, 111, 81, 0.06) 0 48%, transparent 49%);
  opacity: 1;
  pointer-events: none;
}

.problem-layout {
  display: grid;
  gap: 1.35rem;
}

.problem-panel {
  position: relative;
  display: grid;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid rgba(188, 222, 208, 0.9);
  border-radius: 1.75rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(239, 248, 244, 0.74)),
    #fff;
  box-shadow: var(--home-shadow);
  overflow: hidden;
}

.problem-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 9rem 15rem at -2rem -4rem, rgba(13, 111, 81, 0.08) 0 48%, transparent 49%),
    linear-gradient(135deg, transparent 0 64%, rgba(13, 111, 81, 0.04) 64% 64.4%, transparent 64.4%);
  pointer-events: none;
}

.garden-map-preview {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  grid-template-rows: repeat(4, minmax(2.8rem, 1fr));
  gap: 0.55rem;
  min-height: 15rem;
  padding: 0.85rem;
  border-radius: 1.25rem;
  background:
    linear-gradient(135deg, rgba(224, 244, 235, 0.94), rgba(250, 255, 252, 0.76)),
    #eff8f4;
}

.garden-map-preview span {
  display: flex;
  align-items: end;
  padding: 0.75rem;
  border: 1px solid rgba(13, 111, 81, 0.12);
  border-radius: 1rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0)),
    repeating-linear-gradient(
      0deg,
      rgba(121, 92, 55, 0.2) 0 0.28rem,
      rgba(121, 92, 55, 0.09) 0.28rem 0.64rem
    ),
    #c99b62;
  color: #274239;
  font-size: 0.8rem;
  font-weight: 900;
}

.garden-map-preview span:nth-child(1) {
  grid-row: span 2;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(212, 238, 229, 0.62)),
    #e9f7f1;
}

.garden-map-preview span:nth-child(4) {
  grid-row: span 2;
}

.garden-map-preview span:nth-child(5) {
  background:
    linear-gradient(135deg, rgba(199, 232, 205, 0.92), rgba(230, 246, 236, 0.88)),
    #dff2ea;
}

.garden-map-preview span:nth-child(6) {
  background:
    linear-gradient(135deg, rgba(128, 89, 56, 0.42), rgba(224, 196, 137, 0.68)),
    #d9b878;
}

.problem-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.7rem;
}

.problem-section .info-card {
  grid-template-columns: auto 1fr;
  align-items: start;
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: none;
}

.problem-section .info-card::after {
  content: none;
}

.problem-section .card-icon {
  border-radius: 999px;
  background: var(--home-accent-dark);
  color: #fff;
}

.features-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(246, 252, 249, 0.54));
}

.features-section .section-heading {
  max-width: 38rem;
}

.feature-grid {
  align-items: stretch;
}

.features-section .feature-card {
  min-height: 12.5rem;
  align-content: end;
  padding: 1.25rem;
  border-color: rgba(188, 222, 208, 0.94);
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.94), rgba(243, 250, 247, 0.82)),
    #fff;
}

.features-section .feature-card::before {
  content: "";
  position: absolute;
  left: 1.25rem;
  top: 1.25rem;
  width: 4.3rem;
  height: 4.3rem;
  border-radius: 1.35rem;
  background:
    radial-gradient(circle at 35% 35%, rgba(13, 111, 81, 0.28), transparent 34%),
    linear-gradient(135deg, rgba(223, 242, 234, 0.95), rgba(255, 255, 255, 0.78));
}

.features-section .feature-card::after {
  right: -4.5rem;
  top: auto;
  bottom: -9rem;
  width: 15rem;
  height: 22rem;
  opacity: 0.2;
}

.features-section .feature-dot {
  width: 2.45rem;
  height: 2.45rem;
  border-radius: 1rem;
  background: var(--home-accent-dark);
  box-shadow: 0 0 0 0.5rem rgba(223, 242, 234, 0.92);
}

.feature-card-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}

.feature-card-image {
  display: block;
  width: min(8.6rem, 56%);
  height: auto;
  max-height: 4.8rem;
  object-fit: contain;
  border-radius: 1rem;
  box-shadow: 0 14px 28px rgba(8, 73, 52, 0.12);
}

.features-section .feature-card h3 {
  margin-top: 2.35rem;
}

.features-section .feature-card.feature-card-with-image h3 {
  margin-top: 1.45rem;
}

.features-section .feature-card:nth-child(1),
.features-section .feature-card:nth-child(4) {
  background:
    linear-gradient(155deg, rgba(8, 73, 52, 0.96), rgba(13, 111, 81, 0.84)),
    #084934;
}

.features-section .feature-card:nth-child(1) h3,
.features-section .feature-card:nth-child(1) p,
.features-section .feature-card:nth-child(4) h3,
.features-section .feature-card:nth-child(4) p {
  color: #fff;
}

.features-section .feature-card:nth-child(1) .feature-dot,
.features-section .feature-card:nth-child(4) .feature-dot {
  background: #fff;
  color: var(--home-accent-dark);
  box-shadow: 0 0 0 0.5rem rgba(255, 255, 255, 0.14);
}

.steps-section::before {
  content: "";
  position: absolute;
  left: max(1rem, calc((100vw - 1180px) / 2));
  bottom: -12rem;
  width: min(34rem, 78vw);
  height: 25rem;
  background:
    linear-gradient(90deg, rgba(13, 111, 81, 0.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(13, 111, 81, 0.045) 1px, transparent 1px),
    rgba(223, 242, 234, 0.38);
  background-size: 3rem 3rem;
  border-radius: 2rem;
  opacity: 1;
  pointer-events: none;
}

.split-section {
  display: grid;
  gap: 1.2rem;
}

.steps-list {
  display: grid;
  gap: 0.8rem;
}

.step-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: start;
  padding: 1rem;
}

.step-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: var(--home-accent-dark);
  color: #fff;
  font-weight: 900;
}

.step-card p {
  margin-top: 0.28rem;
  font-size: 0.96rem;
}

.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem 0.95rem;
  align-items: start;
}

.screenshot-card {
  display: grid;
  justify-items: center;
  gap: 0.75rem;
  margin: 0;
  min-width: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.screenshot-card img {
  display: block;
  width: min(100%, 12rem);
  height: auto;
  max-height: 25rem;
  object-fit: contain;
  border-radius: 0;
  background: transparent;
  filter: drop-shadow(0 16px 24px rgba(8, 73, 52, 0.12));
}

.screenshot-card figcaption {
  max-width: 13rem;
  padding: 0;
  color: var(--home-text);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
}

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

.pricing-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.2rem;
}

.pricing-card ul,
.trust-points {
  display: grid;
  gap: 0.58rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pricing-card li,
.trust-points li {
  position: relative;
  padding-left: 1.55rem;
  color: var(--home-muted);
}

.pricing-card li::before,
.trust-points li::before {
  content: "";
  position: absolute;
  top: 0.62rem;
  left: 0;
  width: 0.52rem;
  height: 0.52rem;
  border-radius: 50%;
  background: var(--home-accent);
}

.pricing-lead {
  font-size: 0.96rem;
}

.price {
  color: var(--home-text);
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
}

.price span {
  color: var(--home-muted);
  font-size: 0.95rem;
  font-weight: 800;
}

.pricing-card .button {
  margin-top: auto;
}

.pricing-card-pro {
  position: relative;
  z-index: 0;
  border-color: rgba(8, 73, 52, 0.24);
  background:
    linear-gradient(180deg, rgba(223, 242, 234, 0.7) 0%, rgba(255, 255, 255, 0.96) 45%),
    #fff;
  box-shadow: var(--home-shadow);
  overflow: hidden;
}

.pricing-card-pro::after {
  content: "";
  position: absolute;
  right: -4rem;
  bottom: -7rem;
  width: 15rem;
  height: 22rem;
  background:
    radial-gradient(ellipse 5.5rem 12rem at 46% 38%, rgba(13, 111, 81, 0.09) 0 47%, transparent 48%),
    radial-gradient(ellipse 4.6rem 10rem at 70% 63%, rgba(13, 111, 81, 0.06) 0 47%, transparent 48%);
  opacity: 1;
  pointer-events: none;
  z-index: 0;
}

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

.plan-label {
  width: fit-content;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: var(--home-accent-dark);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.trust-section {
  padding-top: 2rem;
}

.trust-panel {
  position: relative;
  z-index: 0;
  display: grid;
  gap: 1.4rem;
  padding: 1.3rem;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.94) 0%, rgba(239, 248, 244, 0.94) 100%),
    #f8fcfa;
  overflow: hidden;
}

.trust-panel::after {
  content: "";
  position: absolute;
  right: -4rem;
  top: -8rem;
  width: 17rem;
  height: 24rem;
  background:
    radial-gradient(ellipse 6rem 14rem at 40% 36%, rgba(13, 111, 81, 0.08) 0 47%, transparent 48%),
    radial-gradient(ellipse 5rem 12rem at 70% 62%, rgba(13, 111, 81, 0.06) 0 47%, transparent 48%);
  opacity: 1;
  pointer-events: none;
  z-index: 0;
}

.trust-panel > * {
  position: relative;
  z-index: 1;
}

.trust-panel h2 {
  margin: 0.7rem 0 0.85rem;
}

.faq-wrap {
  display: grid;
  gap: 0.5rem;
}

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

.faq-list details {
  padding: 0.1rem 1rem;
}

.faq-list summary {
  cursor: pointer;
  padding: 1rem 0;
  color: var(--home-text);
  font-weight: 900;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--home-accent-dark);
  font-size: 1.25rem;
  line-height: 1;
}

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

.faq-list details p {
  padding: 0 0 1rem;
  font-size: 0.96rem;
}

.final-cta {
  padding-bottom: 5rem;
}

.final-cta-panel {
  display: grid;
  justify-items: start;
  gap: 1rem;
  padding: 1.5rem;
  background:
    linear-gradient(135deg, rgba(8, 73, 52, 0.95) 0%, rgba(13, 111, 81, 0.95) 100%),
    var(--home-accent-dark);
}

.final-cta-panel h2,
.final-cta-panel p {
  color: #fff;
}

.final-cta-panel p {
  max-width: 42rem;
  color: #e0f3ec;
}

.final-cta-panel .button-primary {
  background: #fff;
  color: var(--home-accent-dark);
  box-shadow: none;
}

.final-cta-panel .button-primary:hover,
.final-cta-panel .button-primary:focus-visible {
  color: var(--home-accent-dark);
  background: #eef8f4;
}

.home-footer {
  margin-top: 0;
}

.section-action {
  display: flex;
  margin-top: 1.35rem;
}

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

.article-card {
  min-width: 0;
  border: 1px solid rgba(211, 228, 220, 0.86);
  border-radius: 1.45rem;
  background: #fff;
  box-shadow: var(--home-shadow-soft);
  overflow: hidden;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease;
}

.article-card:hover,
.article-card:focus-within {
  border-color: #a8d3c2;
  box-shadow: var(--home-shadow);
  transform: translateY(-2px);
}

.article-card a {
  display: grid;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.article-card a::before {
  content: "";
  height: 0.28rem;
  background: linear-gradient(90deg, var(--home-accent) 0%, #9bcf72 100%);
}

.article-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #dff2ea;
}

.article-card span {
  width: fit-content;
  margin: 1rem 1rem 0;
  padding: 0.3rem 0.58rem;
  border-radius: 999px;
  background: var(--home-accent-soft);
  color: var(--home-accent-dark);
  font-size: 0.74rem;
  font-weight: 900;
}

.article-card h3 {
  padding: 0.7rem 1rem 0;
  font-size: 1.12rem;
}

.article-card p {
  padding: 0.52rem 1rem 1.05rem;
  font-size: 0.94rem;
}

.articles-overview-hero {
  padding-bottom: 2.6rem;
}

.articles-overview-hero .section-inner {
  display: grid;
  gap: 1rem;
  max-width: 900px;
}

.articles-overview-hero h1 {
  max-width: 15ch;
}

.articles-overview-hero p:not(.eyebrow) {
  max-width: 47rem;
  font-size: 1.05rem;
}

.article-filter-row {
  display: flex;
  gap: 0.55rem;
  margin: 0 0 2rem;
  padding: 0.35rem 0;
  overflow-x: auto;
}

.article-filter-row a {
  flex: 0 0 auto;
  padding: 0.55rem 0.82rem;
  border: 1px solid #c0d8ce;
  border-radius: 999px;
  background: #fff;
  color: var(--home-accent-dark);
  font-size: 0.88rem;
  font-weight: 900;
  text-decoration: none;
}

.article-filter-row a.current {
  background: var(--home-accent-dark);
  color: #fff;
  border-color: var(--home-accent-dark);
}

.article-category-block {
  scroll-margin-top: 5.5rem;
  padding: 2rem 0;
}

.article-featured-block {
  padding-top: 0;
}

.article-category-block + .article-category-block {
  border-top: 1px solid rgba(211, 228, 220, 0.9);
}

.article-page {
  max-width: 1120px;
  margin: 0 auto;
  padding: 2rem 1rem 5.5rem;
}

.back-link {
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--home-accent-dark);
  font-weight: 900;
  text-decoration: none;
}

.back-link::before {
  content: "<";
  margin-right: 0.45rem;
}

.article-hero {
  display: grid;
  gap: 1.35rem;
  align-items: center;
  margin-bottom: 2.2rem;
}

.article-hero div {
  display: grid;
  gap: 0.9rem;
}

.article-hero h1 {
  max-width: 12ch;
  font-size: 2.15rem;
}

.article-hero p:not(.eyebrow) {
  max-width: 46rem;
  font-size: 1.04rem;
}

.article-hero img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 1.6rem;
  background: #dff2ea;
  box-shadow: var(--home-shadow-soft);
}

.article-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 1.2rem;
  border: 1px solid rgba(211, 228, 220, 0.86);
  border-radius: 1.35rem;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--home-shadow-soft);
}

.article-content h2,
.article-content h3 {
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: 0;
}

.article-content h2 {
  margin-top: 2.1rem;
  font-size: 1.78rem;
  line-height: 1.12;
}

.article-content h2:first-child {
  margin-top: 0;
}

.article-content h3 {
  margin-top: 1.55rem;
  font-size: 1.18rem;
}

.article-content p,
.article-content li {
  color: #2e4038;
  font-size: 1rem;
  line-height: 1.75;
}

.article-content p {
  margin-top: 0.85rem;
}

.article-content ul {
  margin: 0.9rem 0 0;
  padding-left: 1.25rem;
}

.article-content li {
  margin-bottom: 0.42rem;
}

.article-content li::marker {
  color: var(--home-accent);
}

.article-image {
  margin: 1.5rem 0;
}

.article-image img {
  display: block;
  width: 100%;
  max-height: 32rem;
  object-fit: cover;
  border-radius: 1.25rem;
  background: #dff2ea;
}

.article-image figcaption {
  margin-top: 0.5rem;
  color: var(--home-muted);
  font-size: 0.88rem;
}

.article-note {
  margin: 1.25rem 0;
  padding: 1rem;
  border: 1px solid #b8ddce;
  border-left: 5px solid var(--home-accent);
  border-radius: 0 1rem 1rem 0;
  background: #edf8f3;
}

.article-note p:first-child {
  margin-top: 0;
}

.article-footer-note {
  max-width: 780px;
  margin: 1.25rem auto 0;
  padding: 1rem 1.1rem;
  border: 1px solid #b8ddce;
  border-radius: 1.2rem;
  background: #edf8f3;
  box-shadow: var(--home-shadow-soft);
}

.article-footer-note span {
  display: inline-flex;
  margin-bottom: 0.35rem;
  color: var(--home-accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.article-footer-note p {
  margin: 0;
  color: #2e4038;
  font-size: 1rem;
  line-height: 1.65;
}

.related-articles {
  max-width: 760px;
  margin: 1.6rem auto 0;
  padding: 1.1rem;
  border: 1px solid rgba(211, 228, 220, 0.86);
  border-radius: 1.35rem;
  background: #fff;
  box-shadow: var(--home-shadow-soft);
}

.related-articles h2 {
  font-size: 1.55rem;
}

.related-articles .article-card-grid {
  margin-top: 1rem;
}

.article-app-cta {
  display: none !important;
}

@media (min-width: 520px) {
  .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .button {
    width: auto;
    min-width: 11rem;
  }

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

  .screenshot-grid {
    gap: 1rem;
  }
}

@media (min-width: 760px) {
  .header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .site-nav {
    display: flex;
    justify-content: center;
    gap: 1.1rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(15rem, 0.72fr);
  }

  .home h1 {
    font-size: 3.35rem;
  }

  .home h2 {
    font-size: 2.2rem;
  }

  .section {
    padding: 4.7rem 1.25rem;
  }

  .section-heading {
    margin-bottom: 2rem;
  }

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

  .problem-layout {
    grid-template-columns: minmax(0, 0.74fr) minmax(0, 1.26fr);
    align-items: center;
  }

  .problem-layout .section-heading {
    margin-bottom: 0;
  }

  .problem-panel {
    grid-template-columns: minmax(13rem, 0.86fr) minmax(0, 1fr);
    gap: 1.15rem;
    padding: 1.15rem;
  }

  .garden-map-preview {
    min-height: 20rem;
  }

  .problem-list {
    align-content: center;
  }

  .problem-section .info-card {
    padding: 1.05rem;
  }

  .split-section,
  .trust-panel,
  .faq-wrap {
    grid-template-columns: 0.86fr 1.14fr;
    align-items: start;
  }

  .sticky-heading {
    position: sticky;
    top: 6rem;
  }

  .screenshot-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.8rem;
  }

  .screenshot-card img {
    width: min(100%, 14rem);
    max-height: 30rem;
  }

  .screenshot-card figcaption {
    max-width: 15rem;
    font-size: 0.95rem;
  }

  .article-card-grid-featured,
  .articles-overview .article-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .article-hero {
    grid-template-columns: minmax(0, 0.95fr) minmax(18rem, 0.85fr);
    gap: 2rem;
  }

  .article-hero h1 {
    font-size: 2.8rem;
  }

  .article-content,
  .article-footer-note,
  .related-articles {
    padding: 1.85rem;
  }

  .pricing-grid {
    align-items: stretch;
  }

  .pricing-card {
    padding: 1.45rem;
  }

  .pricing-card-pro {
    transform: translateY(-0.5rem);
  }

  .final-cta-panel {
    padding: 2.2rem;
  }
}

@media (min-width: 1020px) {
  .hero {
    padding-top: 1rem;
  }

  .home h1 {
    font-size: 3.9rem;
    max-width: 13ch;
  }

  .home h2 {
    font-size: 2.55rem;
  }

  .hero-subtitle {
    font-size: 1.15rem;
  }

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

  .features-section .feature-grid {
    grid-template-columns: 1.05fr 0.95fr 0.95fr;
    grid-auto-rows: minmax(12rem, auto);
  }

  .features-section .feature-card:nth-child(1) {
    grid-row: span 2;
    min-height: 26rem;
  }

  .features-section .feature-card:nth-child(4) {
    grid-column: span 2;
  }

  .info-card,
  .feature-card {
    padding: 1.35rem;
  }

  .home .hero .hero-mockup {
    width: min(23vw, 18rem);
    max-height: 34rem;
  }
}

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

/* Article polish: keep web article imagery card-sized and consistently rounded. */
.home .article-card-grid {
  align-items: stretch;
}

.home .article-card {
  border-radius: 1.45rem;
  overflow: hidden;
}

.home .article-card a {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  color: inherit;
  text-decoration: none;
}

.home .article-card img {
  display: block;
  width: calc(100% - 1rem);
  height: 11.5rem;
  margin: 0.5rem 0.5rem 0;
  object-fit: cover;
  border-radius: 1.05rem;
  background: #dff2ea;
}

.home .article-card h3,
.home .article-card p,
.home .article-card span {
  text-decoration: none;
}

.home .article-card p {
  flex: 1;
}

.articles-overview .article-card img,
.article-card-grid-featured .article-card img {
  height: 12.5rem;
}

.article-page .article-hero img {
  max-height: 27rem;
  border-radius: 1.6rem;
  object-fit: cover;
}

.article-page .article-image img {
  max-height: 28rem;
  border-radius: 1.35rem;
  object-fit: cover;
}

@media (min-width: 760px) {
  .articles-overview .article-card img,
  .article-card-grid-featured .article-card img {
    height: 13.5rem;
  }

  .article-page .article-hero img {
    height: 22rem;
  }
}

@media (min-width: 1020px) {
  .article-page {
    padding-top: 2.5rem;
  }

  .article-hero {
    margin-bottom: 2.6rem;
  }

  .article-hero h1 {
    font-size: 3.2rem;
  }

  .article-hero p:not(.eyebrow) {
    font-size: 1.1rem;
  }

  .article-content {
    border-radius: 1.2rem;
    padding: 2.2rem 2.35rem;
  }
}
