:root {
  --bg: #f4f7ef;
  --surface: #ffffff;
  --surface-strong: #0f1f1c;
  --text: #15211d;
  --muted: #4a5b54;
  --accent: #93e535;
  --accent-strong: #7ed127;
  --line: #d8e2d4;
  --shadow: 0 16px 38px rgba(22, 35, 29, 0.08);
  --radius: 20px;
  --radius-sm: 14px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background: linear-gradient(160deg, #f8fbf2 0%, #eef5e9 100%);
  line-height: 1.5;
}

.page-decor {
  position: fixed;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.32;
  pointer-events: none;
  z-index: -1;
}

.page-decor--top {
  top: -250px;
  right: -160px;
  background: radial-gradient(circle at center, #b4f056 0%, #8ada30 45%, transparent 70%);
}

.page-decor--bottom {
  bottom: -280px;
  left: -140px;
  background: radial-gradient(circle at center, #84d157 0%, #74c95d 45%, transparent 70%);
}

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

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.section {
  padding: 74px 0;
}

section[id] {
  scroll-margin-top: 110px;
}

.kicker {
  margin: 0 0 14px;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 800;
  color: #54704b;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Sora", "Trebuchet MS", sans-serif;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.75rem);
}

h2 {
  font-size: clamp(1.5rem, 2.5vw, 2.55rem);
}

h3 {
  font-size: clamp(1.03rem, 1.6vw, 1.2rem);
}

p {
  margin: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 12;
  backdrop-filter: blur(14px);
  background: rgba(244, 247, 239, 0.88);
  border-bottom: 1px solid rgba(84, 112, 75, 0.15);
}

.header-shell {
  min-height: 84px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Sora", "Trebuchet MS", sans-serif;
  font-size: 1rem;
  font-weight: 700;
}

.brand__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(147, 229, 53, 0.24);
}

.anchor-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(88, 115, 78, 0.18);
}

.anchor-nav a {
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.9rem;
  color: #2a3b34;
  transition: background-color 0.22s ease, color 0.22s ease;
}

.anchor-nav a:hover {
  background: #e7f4d4;
  color: #142115;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  border: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  cursor: pointer;
  font-weight: 700;
  border-radius: 999px;
  padding: 12px 18px;
  font-size: 0.95rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--primary {
  background: linear-gradient(135deg, var(--accent) 0%, #b0eb54 100%);
  color: #10220f;
  box-shadow: 0 10px 24px rgba(112, 177, 41, 0.3);
}

.btn--primary:hover {
  box-shadow: 0 14px 30px rgba(112, 177, 41, 0.36);
  background: linear-gradient(135deg, var(--accent-strong) 0%, #a2e747 100%);
}

.btn--ghost {
  background: transparent;
  border: 1px solid rgba(30, 47, 39, 0.22);
  color: #1d3028;
}

.btn--ghost:hover {
  background: #eff6e4;
}

.btn--secondary {
  background: #ffffff;
  border: 1px solid rgba(26, 39, 33, 0.2);
  color: #1b2c25;
}

.btn--secondary:hover {
  background: #eff8e2;
}

.btn--big {
  font-size: 1rem;
  padding: 14px 24px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 92px;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero::before {
  width: 360px;
  height: 360px;
  right: -130px;
  top: 20px;
  border: 1px solid rgba(96, 137, 76, 0.22);
}

.hero::after {
  width: 210px;
  height: 210px;
  left: -70px;
  top: 60px;
  border: 1px dashed rgba(96, 137, 76, 0.28);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 34px;
  align-items: start;
}

.hero-copy {
  display: grid;
  gap: 20px;
}

.hero-subtitle {
  max-width: 720px;
  font-size: 1.1rem;
  color: #364941;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-note {
  color: #485d54;
  font-weight: 600;
}

.hero-panel {
  border-radius: var(--radius);
  background: linear-gradient(180deg, #182a1f 0%, #0f2018 100%);
  padding: 24px;
  color: #ecf9da;
  box-shadow: var(--shadow);
}

.hero-panel h2 {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  margin-bottom: 16px;
}

.hero-panel ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.hero-panel li {
  padding: 13px 14px;
  border-radius: 12px;
  background: rgba(224, 252, 170, 0.08);
  font-size: 0.96rem;
  color: #d7e8ca;
}

.pill {
  display: inline-block;
  margin-bottom: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(147, 229, 53, 0.25);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #f4ffd9;
}

.section-head {
  display: grid;
  gap: 10px;
  margin-bottom: 26px;
}

.section-subtitle {
  max-width: 780px;
  color: var(--muted);
}

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

.step-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 20px;
  box-shadow: var(--shadow);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(24, 40, 29, 0.14);
}

.step-card__num {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #ecf8d9;
  color: #20331f;
  font-weight: 800;
  margin-bottom: 12px;
}

.step-card p {
  margin-top: 10px;
  color: var(--muted);
}

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

.feature-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 19px;
  box-shadow: var(--shadow);
  min-height: 166px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(126, 209, 39, 0.45);
}

.feature-card p {
  margin-top: 10px;
  color: var(--muted);
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: start;
}

.list-card {
  list-style: none;
  padding: 22px;
  margin: 0;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: grid;
  gap: 12px;
}

.list-card li {
  position: relative;
  padding-left: 28px;
  color: #324840;
}

.list-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #d7f7ad 0%, #8bd92f 70%);
  box-shadow: 0 0 0 4px rgba(147, 229, 53, 0.2);
}

.pill-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill-list li {
  padding: 12px 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow);
  font-weight: 700;
  color: #30453d;
}

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

.phone-mockup,
.image-placeholder {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}

.phone-mockup {
  position: relative;
  overflow: hidden;
}

.phone-mockup::before {
  content: "";
  position: absolute;
  right: -38px;
  top: -38px;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: rgba(147, 229, 53, 0.18);
}

.phone-mockup__top {
  width: 36%;
  height: 8px;
  border-radius: 999px;
  background: #d5e3ce;
  margin: 2px auto 14px;
}

.bubble {
  border-radius: 12px;
  background: #f4f7f2;
  border: 1px solid #dce8d8;
  padding: 10px 12px;
  margin-bottom: 8px;
  font-size: 0.92rem;
  color: #32453d;
}

.bubble--accent {
  background: #ebf8d8;
  border-color: #ceeba0;
  font-weight: 700;
}

.stat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 13px;
  border-radius: 12px;
  border: 1px solid #dce6d7;
  background: #f7faf5;
  margin-bottom: 9px;
}

.stat-row strong {
  font-family: "Sora", "Trebuchet MS", sans-serif;
}

.mockup-label {
  margin-top: 12px;
  font-size: 0.88rem;
  color: #5b6e66;
}

.image-placeholder {
  display: grid;
  gap: 10px;
  align-content: start;
}

.image-placeholder h3 {
  font-size: 1.03rem;
}

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

.placeholder-box {
  border: 1px dashed #a7b9a0;
  border-radius: 12px;
  min-height: 110px;
  display: grid;
  place-items: center;
  color: #61735f;
  background: linear-gradient(120deg, #f7fbf3 0%, #edf5e7 100%);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.final-cta {
  padding: 34px;
  border-radius: 26px;
  background: linear-gradient(120deg, #0f2018 0%, #173122 100%);
  color: #f2fde4;
  box-shadow: var(--shadow);
  display: grid;
  gap: 14px;
  justify-items: start;
}

.final-cta p {
  max-width: 700px;
  color: #d7ebc9;
}

.site-footer {
  border-top: 1px solid rgba(83, 105, 86, 0.2);
  padding: 26px 0 42px;
}

.footer-shell {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.footer-brand {
  font-family: "Sora", "Trebuchet MS", sans-serif;
  font-weight: 700;
  margin-bottom: 7px;
}

.footer-shell p {
  color: #4f6259;
}

.footer-links {
  display: grid;
  gap: 7px;
  justify-items: end;
  text-align: right;
  color: #3d544a;
}

.footer-links a:hover {
  color: #20331f;
}

@media (max-width: 1080px) {
  .header-shell {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 12px 0;
  }

  .anchor-nav {
    justify-self: start;
    overflow-x: auto;
    max-width: 100%;
  }

  .header-actions {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

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

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

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

  .preview-grid,
  .two-column {
    grid-template-columns: 1fr;
  }

  .footer-shell {
    flex-direction: column;
  }

  .footer-links {
    justify-items: start;
    text-align: left;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 58px 0;
  }

  .hero {
    padding-top: 72px;
  }

  .btn {
    width: 100%;
  }

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

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

  .final-cta {
    padding: 24px;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
