:root {
  --bg: #f5f8f5;
  --surface: #ffffff;
  --surface-soft: #eef5f1;
  --text: #12382d;
  --muted: #6c817a;
  --green: #0f8c5a;
  --green-dark: #0d5e45;
  --line: #dbe8e1;
  --shadow: 0 20px 60px rgba(21, 68, 51, 0.10);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(245, 248, 245, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(219, 232, 225, 0.9);
}

.topbar-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
  background: linear-gradient(145deg, var(--green), var(--green-dark));
  box-shadow: 0 10px 24px rgba(15, 140, 90, 0.22);
}

.brand strong,
.brand span {
  display: block;
}

.brand strong {
  font-size: 16px;
}

.brand span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

.hero {
  padding: 86px 0 76px;
  overflow: hidden;
}

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

.eyebrow {
  display: inline-block;
  color: var(--green);
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.14em;
}

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

h1 {
  margin-bottom: 24px;
  font-size: clamp(48px, 6vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1;
  letter-spacing: -0.045em;
}

h3 {
  font-size: 21px;
  letter-spacing: -0.02em;
}

.hero-copy .eyebrow {
  margin-bottom: 22px;
}

.hero-text {
  max-width: 620px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0 18px;
}

.hero-note {
  color: var(--muted);
  font-size: 13px;
}

.btn {
  min-height: 50px;
  padding: 0 22px;
  border: 0;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font: inherit;
  font-weight: 750;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.btn-primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 12px 26px rgba(15, 140, 90, 0.22);
}

.btn-secondary,
.btn-outline {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--line);
}

.btn-dark {
  background: var(--text);
  color: #fff;
}

.btn-small {
  min-height: 42px;
  padding: 0 17px;
  border-radius: 12px;
}

.btn-full {
  width: 100%;
}

.dashboard-card {
  position: relative;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255,255,255,0.95);
  box-shadow: var(--shadow);
}

.dashboard-card::before {
  content: "";
  position: absolute;
  width: 290px;
  height: 290px;
  right: -110px;
  top: -120px;
  border-radius: 50%;
  background: rgba(15,140,90,0.08);
  z-index: -1;
}

.dashboard-head,
.chart-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.dashboard-head strong,
.mini-label {
  display: block;
}

.mini-label {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.status-pill {
  padding: 7px 10px;
  border-radius: 999px;
  background: #e9f8f1;
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
}

.metric-main {
  padding: 34px 0 28px;
}

.metric-value {
  display: block;
  font-size: clamp(56px, 7vw, 82px);
  line-height: 0.95;
  font-weight: 850;
  letter-spacing: -0.06em;
}

.metric-label {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

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

.mini-card {
  padding: 15px;
  border-radius: 16px;
  background: var(--surface-soft);
}

.mini-card span,
.mini-card strong {
  display: block;
}

.mini-card span {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 12px;
}

.chart {
  margin-top: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
}

.chart-title span {
  color: var(--muted);
  font-size: 13px;
}

.chart-title strong {
  color: var(--green);
}

.bars {
  height: 120px;
  margin-top: 18px;
  display: flex;
  align-items: flex-end;
  gap: 14px;
}

.bars span {
  flex: 1;
  min-height: 20px;
  border-radius: 10px 10px 4px 4px;
  background: linear-gradient(180deg, #3db983, var(--green-dark));
}

.months {
  margin-top: 8px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  text-align: center;
  color: var(--muted);
  font-size: 11px;
}

.section {
  padding: 90px 0;
}

.section-soft {
  background: var(--surface-soft);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 42px;
}

.section-heading .eyebrow,
.offer-copy .eyebrow,
.pro-card .eyebrow {
  margin-bottom: 14px;
}

.section-heading p,
.offer-copy p,
.pro-card p {
  color: var(--muted);
  line-height: 1.7;
}

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

.feature-card,
.price-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.feature-icon {
  width: 46px;
  height: 46px;
  margin-bottom: 28px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--surface-soft);
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
}

.feature-card p,
.price-card p {
  color: var(--muted);
  line-height: 1.7;
}

.offer-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 60px;
}

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

.price-card.featured {
  border-color: rgba(15, 140, 90, 0.4);
  box-shadow: 0 16px 40px rgba(15, 140, 90, 0.10);
}

.price-tag {
  color: var(--green);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.10em;
}

.price-card h3 {
  margin: 16px 0 12px;
}

.price {
  margin-bottom: 18px;
  font-size: 50px;
  line-height: 1;
  font-weight: 850;
  letter-spacing: -0.05em;
}

.pro-card {
  padding: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  border-radius: 28px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.pro-card > div {
  max-width: 690px;
}

.footer {
  padding: 30px 0;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-size: 13px;
}

.footer strong {
  color: var(--text);
}

@media (max-width: 900px) {
  .hero {
    padding-top: 54px;
  }

  .hero-grid,
  .offer-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

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

  .pro-card {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .topbar-inner {
    min-height: 70px;
  }

  .brand span {
    display: none;
  }

  .hero {
    padding: 46px 0 56px;
  }

  h1 {
    font-size: 48px;
  }

  .hero-text {
    font-size: 17px;
  }

  .hero-actions {
    flex-direction: column;
  }

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

  .dashboard-card {
    padding: 20px;
    border-radius: 24px;
  }

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

  .section {
    padding: 68px 0;
  }

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

  .pro-card {
    padding: 28px;
  }

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


.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
  margin-right: 18px;
}

.main-nav a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  transition: color 160ms ease;
}

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

@media (max-width: 820px) {
  .topbar-inner {
    flex-wrap: wrap;
    padding: 12px 0;
  }

  .main-nav {
    order: 3;
    width: 100%;
    margin: 0;
    padding-top: 10px;
    border-top: 1px solid var(--line);
    overflow-x: auto;
    gap: 18px;
  }

  .main-nav a {
    white-space: nowrap;
  }
}

