:root {
  --ink: #11141c;
  --muted: #606a71;
  --green: #0f7a4f;
  --green-dark: #075b39;
  --green-bright: #09c86b;
  --mint: #ecfaf3;
  --mint-soft: #f5fcf8;
  --dark: #101018;
  --line: #e8ece9;
  --white: #fff;
  --violet: #8368ef;
  --violet-soft: #f4f0ff;
  --shadow: 0 18px 50px rgba(25, 34, 30, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
}

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

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

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

.wrap {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  height: 76px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
}

.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 750;
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 11px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
  font-size: 14px;
  color: #333a42;
}

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

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 8px;
  padding: 0 26px;
  font-weight: 650;
  font-size: 15px;
  transition: background 160ms ease, transform 160ms ease, color 160ms ease;
}

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

.button-small {
  min-height: 44px;
  padding: 0 22px;
}

.button-primary {
  color: var(--white);
  background: var(--green);
}

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

.button-link {
  padding: 0 6px;
  color: var(--ink);
}

.button-link::after {
  content: "->";
}

.button-white {
  min-height: 42px;
  background: var(--white);
  color: var(--green-dark);
}

.button-dark {
  min-height: 42px;
  background: var(--dark);
  color: var(--white);
}

.button-outline {
  min-height: 42px;
  width: 100%;
  border: 1px solid #cbd5ce;
}

.button.disabled {
  cursor: default;
  color: var(--muted);
}

.button.disabled:hover {
  transform: none;
}

.eyebrow {
  margin-bottom: 15px;
  color: var(--green);
  font-size: 13px;
  font-weight: 750;
  text-transform: uppercase;
}

.hero {
  padding: 72px 0 94px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: 74px;
  align-items: center;
}

.hero-copy h1 {
  max-width: 525px;
  font-size: clamp(42px, 4.2vw, 57px);
  line-height: 1.09;
  font-weight: 750;
  margin-bottom: 22px;
}

.lead {
  max-width: 510px;
  color: var(--muted);
  font-size: 17px;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  gap: 25px;
  align-items: center;
  margin-bottom: 54px;
}

.hero-trust {
  display: flex;
  gap: 19px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.hero-visual {
  position: relative;
  min-height: 520px;
}

.shape {
  position: absolute;
  top: 4px;
  right: -55px;
  width: 116px;
  height: 116px;
  background: var(--green-bright);
  border-radius: 0 72px 0 72px;
}

.hero-photo {
  width: 82%;
  height: 450px;
  object-fit: cover;
  border-radius: 4px;
  margin: 40px 0 0 auto;
}

.ui-card {
  position: absolute;
  background: var(--white);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  padding: 17px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.reminder {
  left: 22px;
  top: 0;
  width: 180px;
}

.chart {
  bottom: 18px;
  right: 0;
  width: 210px;
}

.ui-label {
  color: var(--muted);
  font-size: 12px;
}

.ui-card strong {
  font-size: 17px;
}

.ui-meta,
.ui-good {
  color: var(--green);
  font-size: 12px;
  font-weight: 650;
}

.spark {
  height: 40px;
  display: flex;
  gap: 10px;
  align-items: flex-end;
  margin: 9px 0 5px;
}

.spark i {
  width: 8px;
  border-radius: 6px 6px 0 0;
  background: var(--green-bright);
}

.spark i:nth-child(1) { height: 17px; }
.spark i:nth-child(2) { height: 30px; }
.spark i:nth-child(3) { height: 21px; }
.spark i:nth-child(4) { height: 38px; }
.spark i:nth-child(5) { height: 28px; }

.feature-band {
  background: #f7f6fc;
  padding: 78px 0 92px;
}

.section-intro h2 {
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.18;
  font-weight: 720;
}

.section-intro p {
  color: var(--muted);
}

.section-intro.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: end;
  margin-bottom: 46px;
}

.feature-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.feature-card {
  min-height: 267px;
  padding: 32px 27px;
  background: var(--dark);
  color: var(--white);
  border-radius: 5px;
}

.feature-icon {
  display: inline-flex;
  width: 38px;
  height: 38px;
  margin-bottom: 29px;
  border-radius: 6px;
  background: var(--green-bright);
  color: var(--dark);
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 750;
}

.feature-card h3 {
  font-size: 20px;
  margin-bottom: 11px;
}

.feature-card p {
  color: #b6b8be;
  font-size: 14px;
  margin-bottom: 22px;
}

.feature-card a {
  color: var(--white);
  font-size: 13px;
  font-weight: 650;
}

.feature-card a::after {
  content: "  ->";
  color: var(--green-bright);
}

.audience {
  padding: 56px 0;
}

.audience-row {
  display: flex;
  gap: clamp(20px, 4vw, 62px);
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  color: #30343b;
  font-size: 15px;
}

.audience-row span {
  color: var(--muted);
}

.benefits {
  padding: 46px 0 100px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 0.92fr 1fr;
  gap: 80px;
  align-items: center;
}

.portrait {
  position: relative;
  width: min(100%, 445px);
}

.portrait::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  left: 10px;
  top: 52px;
  background: #d6f7e6;
  border-radius: 50%;
}

.portrait img {
  position: relative;
  width: 350px;
  height: 410px;
  object-fit: cover;
  margin: 0 auto;
  border-radius: 210px 210px 0 0;
}

.floating-note {
  position: absolute;
  bottom: 40px;
  right: 0;
  width: 185px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-radius: 9px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.floating-note span,
.floating-note small {
  font-size: 12px;
  color: var(--muted);
}

.floating-note strong {
  font-size: 14px;
}

.benefit-copy h2,
.workflow-copy h2 {
  font-size: clamp(30px, 3.2vw, 43px);
  line-height: 1.15;
  margin-bottom: 32px;
}

.benefit-list {
  display: grid;
  gap: 26px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.benefit-list li {
  position: relative;
  padding-left: 58px;
}

.benefit-list li::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--green);
}

.benefit-list li::after {
  content: "\2713";
  position: absolute;
  left: 13px;
  top: 10px;
  color: var(--white);
  font-weight: 700;
}

.benefit-list strong {
  display: block;
  margin-bottom: 5px;
  font-size: 17px;
}

.benefit-list span {
  color: var(--muted);
  font-size: 14px;
}

.cta-ribbon {
  position: relative;
  overflow: hidden;
  padding: 64px 0;
  background: var(--green);
  color: var(--white);
}

.cta-ribbon::before,
.cta-ribbon::after {
  content: "";
  position: absolute;
  width: 125px;
  height: 125px;
  border-radius: 50%;
  background: var(--green-bright);
}

.cta-ribbon::before {
  top: -65px;
  left: -65px;
}

.cta-ribbon::after {
  bottom: -75px;
  right: -65px;
}

.cta-ribbon-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-ribbon h2 {
  max-width: 700px;
  margin: 0 auto 10px;
  font-size: clamp(27px, 3vw, 38px);
  line-height: 1.2;
}

.cta-ribbon p {
  margin-bottom: 29px;
  color: #dcf7e8;
}

.cta-ribbon-inner div {
  display: flex;
  justify-content: center;
  gap: 14px;
}

.workflow {
  padding: 100px 0 78px;
}

.workflow-grid {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: 78px;
  align-items: center;
}

.workflow-copy > p:not(.eyebrow) {
  color: var(--muted);
  margin-bottom: 22px;
}

.checks {
  list-style: none;
  margin: 0 0 31px;
  padding: 0;
  display: grid;
  gap: 12px;
}

.checks li {
  position: relative;
  padding-left: 27px;
  font-size: 15px;
}

.checks li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--green-bright);
  font-weight: 800;
}

.workflow-image {
  position: relative;
}

.workflow-image img {
  width: 100%;
  height: 405px;
  object-fit: cover;
  border-radius: 4px;
}

.mini-dashboard {
  position: absolute;
  right: -18px;
  bottom: 32px;
  width: 210px;
  padding: 16px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.mini-dashboard span {
  color: var(--muted);
  font-size: 12px;
}

.mini-dashboard strong {
  font-size: 14px;
}

.bars {
  display: flex;
  align-items: end;
  gap: 11px;
  height: 57px;
  margin: 12px 0;
}

.bars b {
  width: 20px;
  border-radius: 3px;
  background: var(--green);
}

.bars b:nth-child(1) { height: 25px; }
.bars b:nth-child(2) { height: 42px; }
.bars b:nth-child(3) { height: 32px; }
.bars b:nth-child(4) { height: 52px; }

.uses {
  padding: 22px 0 92px;
}

.centered {
  max-width: 690px;
  margin: 0 auto 45px;
  text-align: center;
}

.centered p {
  margin-top: 16px;
}

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

.use-grid article {
  min-height: 168px;
  padding: 28px;
  border-radius: 5px;
  background: #f2f8f5;
}

.use-grid article.highlight {
  background: var(--mint);
}

.use-grid p {
  margin-bottom: 19px;
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
}

.use-grid h3 {
  font-size: 18px;
  line-height: 1.45;
}

.plans {
  padding: 78px 0 92px;
  background: var(--mint-soft);
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 19px;
  max-width: 980px;
  margin: 0 auto;
}

.plan {
  position: relative;
  padding: 31px 27px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.plan h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.plan-caption {
  min-height: 52px;
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 26px;
}

.plan .checks {
  min-height: 160px;
}

.plan-featured {
  background: var(--green);
  color: var(--white);
  transform: translateY(-11px);
}

.plan-featured .plan-caption {
  color: #d5f6e5;
}

.plan-featured .checks li::before {
  color: #b4ffd8;
}

.popular {
  position: absolute;
  top: 17px;
  right: 15px;
  padding: 4px 9px;
  border-radius: 20px;
  background: var(--green-bright);
  color: #043321;
  font-size: 11px;
  font-weight: 700;
}

.faq {
  padding: 86px 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  max-width: 1020px;
  margin: 0 auto;
}

.faq details {
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 20px 22px;
}

.faq summary {
  cursor: pointer;
  font-weight: 650;
  list-style: none;
}

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

.faq summary::after {
  content: "+";
  float: right;
  color: var(--green);
}

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

.faq details p {
  padding-top: 15px;
  color: var(--muted);
  font-size: 14px;
}

.closing {
  padding: 0 0 84px;
}

.closing-box {
  min-height: 302px;
  padding: 65px 26px;
  background: #071b18;
  color: var(--white);
  text-align: center;
  border-radius: 7px;
}

.closing-box h2 {
  margin-bottom: 14px;
  font-size: clamp(29px, 3vw, 41px);
}

.closing-box p {
  margin-bottom: 32px;
  color: #cbd7d3;
}

.footer {
  padding: 0 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 50px;
  padding: 0 0 48px;
}

.footer-brand p {
  max-width: 305px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
}

.footer-grid h2 {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
}

.footer-grid div:not(.footer-brand) a {
  display: block;
  margin-bottom: 11px;
  font-size: 14px;
}

.footer-grid div:not(.footer-brand) a:hover {
  color: var(--green);
}

.copyright {
  border-top: 1px solid var(--line);
  padding-top: 25px;
  color: var(--muted);
  font-size: 13px;
}

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

  .hero-grid,
  .benefits-grid,
  .workflow-grid,
  .section-intro.split {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .hero {
    padding-top: 44px;
  }

  .hero-visual {
    min-height: 495px;
  }

  .hero-photo {
    width: 90%;
  }

  .feature-cards,
  .use-grid,
  .plan-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: auto;
  }

  .plan-featured {
    transform: none;
  }

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

@media (max-width: 600px) {
  .wrap {
    width: min(100% - 32px, 1180px);
  }

  .nav {
    height: 68px;
  }

  .brand {
    font-size: 21px;
  }

  .brand img {
    width: 35px;
    height: 35px;
  }

  .button-small {
    min-height: 40px;
    padding: 0 15px;
    font-size: 14px;
  }

  .hero {
    padding: 33px 0 58px;
  }

  .hero-copy h1 {
    font-size: 36px;
  }

  .lead {
    font-size: 15px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 36px;
  }

  .hero-visual {
    min-height: 400px;
  }

  .hero-photo {
    height: 345px;
    width: 100%;
    margin-top: 28px;
  }

  .reminder {
    left: 8px;
    width: 158px;
  }

  .chart {
    bottom: 0;
    right: 8px;
    width: 178px;
  }

  .feature-band,
  .benefits,
  .plans,
  .faq {
    padding: 56px 0;
  }

  .portrait::before {
    width: 285px;
    height: 285px;
  }

  .portrait img {
    height: 360px;
    width: 290px;
  }

  .floating-note {
    bottom: 18px;
  }

  .cta-ribbon {
    padding: 50px 0;
  }

  .cta-ribbon-inner div {
    flex-direction: column;
  }

  .workflow {
    padding: 60px 0 55px;
  }

  .workflow-image img {
    height: 280px;
  }

  .mini-dashboard {
    right: 10px;
  }

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

  .closing {
    padding-bottom: 55px;
  }

  .closing-box {
    padding: 48px 20px;
  }
}
