:root {
  --ink: #202720;
  --muted: #667067;
  --paper: #FBF9F6;
  --panel: #fffdfa;
  --line: #e8e3d9;
  --green: #1f6c4d;
  --green-dark: #2B4C3B;
  --yellow: #f2d66d;
  --mint: #dcefe2;
  --peach: #f7e3d6;
  --shadow: 0 18px 55px rgba(53, 59, 48, 0.11);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
h1, h2, h3 { font-family: "Manrope", sans-serif; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 18px clamp(20px, 5vw, 76px);
  border-bottom: 1px solid rgba(232, 227, 217, 0.78);
  background: rgba(251, 249, 246, 0.92);
  backdrop-filter: blur(16px);
}

.brand { display: inline-flex; align-items: center; gap: 11px; font: 800 21px/1 "Manrope", sans-serif; }
.brand-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--yellow);
  color: var(--green-dark);
}
.brand-mark svg { width: 25px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }

nav { display: flex; align-items: center; gap: 24px; color: var(--muted); font-size: 14px; font-weight: 800; }
nav a:hover { color: var(--green-dark); }

.header-action,
.primary-action {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 0 19px;
  background: var(--green-dark);
  color: white;
  box-shadow: 0 10px 24px rgba(43, 76, 59, 0.16);
  font-size: 14px;
  font-weight: 900;
}

.hero {
  min-height: calc(100vh - 78px);
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(390px, 1.1fr);
  align-items: center;
  gap: clamp(34px, 5vw, 76px);
  padding: clamp(48px, 7vw, 92px) clamp(20px, 5vw, 76px) clamp(42px, 6vw, 76px);
}
.hero-copy { max-width: 690px; }
.eyebrow {
  margin: 0;
  color: #7d857b;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.8px;
}
h1 {
  max-width: 760px;
  margin: 15px 0 20px;
  color: var(--green-dark);
  font-size: clamp(44px, 6.5vw, 82px);
  line-height: 1;
  letter-spacing: 0;
}
.hero-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin: 0;
  color: #5d675f;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.7;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-product { margin: 0; align-self: end; }
.hero-product img {
  width: 100%;
  border: 1px solid rgba(222, 217, 207, 0.95);
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.hero-product figcaption { margin-top: 12px; color: #7b8379; font-size: 13px; font-weight: 800; text-align: right; }

.pain-section,
.solution-section,
.final-cta {
  margin: 0 clamp(20px, 5vw, 76px);
  padding: clamp(52px, 7vw, 88px) 0;
  border-top: 1px solid var(--line);
}
.section-heading {
  max-width: 900px;
  margin-bottom: 28px;
}
.section-heading h2,
.final-cta h2 {
  margin: 8px 0 0;
  color: var(--green-dark);
  font-size: clamp(30px, 4.4vw, 52px);
  line-height: 1.12;
  letter-spacing: 0;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.pain-grid article,
.solution-list article {
  border: 1px solid rgba(222, 217, 207, 0.92);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 10px 30px rgba(53, 59, 48, 0.04);
}
.pain-grid article {
  min-height: 250px;
  padding: 28px;
}
.pain-grid article:nth-child(2) { background: #fff8ec; }
.pain-grid article:nth-child(3) { background: #f2f8ef; }
.pain-grid span,
.solution-list > article > span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--mint);
  font-size: 23px;
}
.pain-grid h3,
.solution-list h3 {
  margin: 20px 0 10px;
  color: var(--green-dark);
  font-size: 21px;
}
.pain-grid p,
.solution-list p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.68;
}

.solution-section {
  display: grid;
  grid-template-columns: minmax(260px, .82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}
.solution-section .section-heading { margin-bottom: 0; }
.solution-list { display: grid; gap: 14px; }
.solution-list article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  padding: 24px;
}
.solution-list h3 { margin-top: 0; }
.solution-list article:nth-child(2) > span { background: var(--peach); }
.solution-list article:nth-child(3) > span { background: #eef3dc; }

.final-cta {
  margin-bottom: 28px;
  padding: clamp(40px, 6vw, 70px);
  border: 0;
  border-radius: 8px;
  background: var(--green-dark);
  color: white;
  text-align: center;
}
.final-cta .eyebrow { color: #e4d47a; }
.final-cta h2 {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: white;
}
.final-cta p {
  max-width: 620px;
  margin: 16px auto 28px;
  color: #d7e1da;
  font-size: 18px;
  line-height: 1.65;
}
.final-cta .primary-action {
  background: var(--yellow);
  color: var(--green-dark);
  box-shadow: none;
}

.pricing-section {
  margin: 0 clamp(20px, 5vw, 76px);
  padding: clamp(52px, 7vw, 88px) 0;
  border-top: 1px solid var(--line);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: clamp(26px, 4vw, 36px);
  border: 1px solid rgba(222, 217, 207, 0.95);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 10px 30px rgba(53, 59, 48, 0.04);
}

.pricing-card-pro {
  border-color: rgba(31, 108, 77, 0.42);
  background: linear-gradient(180deg, #fffdfa 0%, #f2f8ef 100%);
  box-shadow: 0 22px 58px rgba(31, 108, 77, 0.14);
}

.pricing-badge {
  width: max-content;
  max-width: 100%;
  padding: 9px 12px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 900;
}

.pricing-label {
  margin: 0 0 10px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.pricing-card h3 {
  margin: 0;
  color: var(--green-dark);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.12;
}

.pricing-price {
  margin: 18px 0 0;
  color: var(--green-dark);
  font: 900 clamp(36px, 5vw, 54px)/1 "Manrope", sans-serif;
}

.pricing-price span {
  margin-left: 6px;
  color: var(--muted);
  font: 800 17px/1 "DM Sans", sans-serif;
}

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

.pricing-card li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.pricing-card li::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--mint);
  color: var(--green-dark);
  font-weight: 900;
}

.pricing-card .primary-action,
.pricing-card .secondary-action {
  width: 100%;
  margin-top: auto;
}

.secondary-action {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0 19px;
  background: #fffdfa;
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 900;
}

.faq-section {
  margin: 0 clamp(20px, 5vw, 76px);
  padding: clamp(52px, 7vw, 88px) 0;
  border-top: 1px solid var(--line);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid rgba(222, 217, 207, 0.92);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 10px 30px rgba(53, 59, 48, 0.04);
}

.faq-item summary {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 24px;
  color: var(--green-dark);
  cursor: pointer;
  font: 900 18px/1.3 "Manrope", sans-serif;
  list-style: none;
}

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

.faq-item summary::after {
  content: "+";
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--mint);
  color: var(--green-dark);
  font-size: 24px;
  line-height: 1;
}

.faq-item[open] summary::after { content: "−"; }

.faq-item summary:focus-visible {
  outline: 3px solid rgba(242, 214, 109, 0.95);
  outline-offset: 3px;
}

.faq-item p {
  max-width: 840px;
  margin: 0;
  padding: 0 24px 24px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.faq-item a {
  color: var(--green);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.testimonials-section {
  margin: 0 clamp(20px, 5vw, 76px) 28px;
  padding: clamp(52px, 7vw, 88px) 0;
  border-top: 1px solid var(--line);
}

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

.testimonial-card {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 18px;
  align-items: start;
  padding: 24px;
  border: 1px solid rgba(222, 217, 207, 0.92);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 10px 30px rgba(53, 59, 48, 0.04);
}

.testimonial-photo {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--mint);
}

.testimonial-card h3 {
  margin: 0 0 4px;
  color: var(--green-dark);
  font-size: 20px;
}

.testimonial-business {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 900;
}

.testimonial-card blockquote {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 26px clamp(20px, 5vw, 76px) 34px;
  color: #6d746d;
  font-size: 14px;
}
.site-footer-brand { display: flex; flex-direction: column; gap: 4px; }
.site-footer strong { color: var(--green-dark); }
.site-footer small { color: #8a9188; font-size: 12px; }
.site-footer-links { display: flex; flex-wrap: wrap; gap: 14px; font-weight: 800; }
.site-footer-links a { color: var(--green-dark); }
.site-footer-links a:hover { text-decoration: underline; }

.legal-main {
  width: min(100% - 40px, 1040px);
  margin: 0 auto;
  padding: clamp(42px, 7vw, 86px) 0 70px;
}
.legal-hero {
  padding: clamp(34px, 6vw, 62px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}
.legal-hero h1 {
  max-width: 900px;
  margin-bottom: 16px;
  font-size: clamp(38px, 6vw, 70px);
}
.legal-hero > p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}
.legal-draft-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding: 10px 14px;
  border: 1px solid #ead9a9;
  border-radius: 999px;
  background: #fff6d7;
  color: #7a5b10;
  font-size: 13px;
  font-weight: 900;
}
.legal-content {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}
.legal-card {
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdfa;
}
.legal-card h2 {
  margin: 0 0 12px;
  color: var(--green-dark);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.15;
}
.legal-card h3 {
  margin: 22px 0 8px;
  color: var(--green-dark);
  font-size: 19px;
}
.legal-card p,
.legal-card li {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}
.legal-card p { margin: 0 0 12px; }
.legal-card ul {
  display: grid;
  gap: 8px;
  margin: 10px 0 0;
  padding-left: 22px;
}
.legal-card a {
  color: var(--green);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-meta {
  margin-top: 16px;
  color: #7b8379;
  font-size: 13px;
  font-weight: 800;
}

@media (max-width: 980px) {
  nav { display: none; }
  .hero,
  .solution-section { grid-template-columns: 1fr; min-height: auto; }
  .hero-product { align-self: auto; }
  .pain-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .site-header { padding: 14px 16px; }
  .brand { font-size: 19px; }
  .brand-mark { width: 36px; height: 36px; border-radius: 10px; }
  .header-action { min-height: 40px; padding: 0 12px; font-size: 13px; }
  .hero { padding: 34px 16px 30px; gap: 28px; }
  h1 { font-size: 42px; }
  .hero-actions a,
  .final-cta .primary-action { width: 100%; }
  .hero-product img { border-radius: 8px; }
  .pain-section,
  .solution-section,
  .pricing-section,
  .faq-section,
  .final-cta,
  .testimonials-section { margin-left: 16px; margin-right: 16px; }
  .legal-main { width: min(100% - 32px, 1040px); padding-top: 30px; }
  .legal-hero { padding: 24px; }
  .pain-grid article { min-height: auto; padding: 24px; }
  .solution-list article { grid-template-columns: 1fr; }
  .site-footer { align-items: flex-start; flex-direction: column; padding-left: 16px; padding-right: 16px; }
}
