:root {
  --ink: #19231f;
  --muted: #65736d;
  --line: #dfe7e2;
  --surface: #fffdf8;
  --stone: #f6f2ea;
  --stone-2: #ebe4d8;
  --emerald: #0f5c4d;
  --emerald-2: #0a3f37;
  --teal: #2f9b8c;
  --gold: #c59a3d;
  --gold-soft: #f2dfad;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(20, 41, 35, 0.13);
  --radius: 8px;
  --max: 1180px;
}

* {
  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;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  max-width: 100%;
}

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

p {
  margin: 0;
  color: var(--muted);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2.55rem, 6vw, 5.45rem);
  max-width: 820px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.65rem);
}

h3 {
  font-size: 1.2rem;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 253, 248, 0.91);
  border-bottom: 1px solid rgba(223, 231, 226, 0.85);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  color: var(--emerald-2);
  white-space: nowrap;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(145deg, var(--emerald), var(--emerald-2));
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(15, 92, 77, 0.22);
}

.brand-mark svg {
  width: 24px;
  height: 24px;
}

.brand span:last-child {
  font-size: 1.08rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  padding: 9px 13px;
  border-radius: 8px;
  color: #40504a;
  font-weight: 650;
  font-size: 0.95rem;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--emerald-2);
  background: rgba(15, 92, 77, 0.08);
}

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

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--emerald-2);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  border-radius: 2px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

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

.btn-primary {
  color: var(--white);
  background: var(--emerald);
  box-shadow: 0 14px 28px rgba(15, 92, 77, 0.22);
}

.btn-primary:hover {
  background: var(--emerald-2);
}

.btn-secondary {
  color: var(--emerald-2);
  background: var(--white);
  border-color: var(--line);
}

.btn-secondary:hover {
  border-color: rgba(15, 92, 77, 0.35);
  box-shadow: 0 12px 28px rgba(15, 92, 77, 0.08);
}

.btn-gold {
  color: #33250d;
  background: var(--gold-soft);
  border-color: rgba(197, 154, 61, 0.34);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  padding: 7px 11px;
  color: var(--emerald-2);
  background: rgba(15, 92, 77, 0.08);
  border: 1px solid rgba(15, 92, 77, 0.12);
  border-radius: 999px;
  font-size: 0.83rem;
  font-weight: 800;
}

.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 999px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 36px;
  background:
    linear-gradient(120deg, rgba(255, 253, 248, 0.96) 0%, rgba(255, 253, 248, 0.74) 52%, rgba(235, 228, 216, 0.42) 100%),
    repeating-linear-gradient(90deg, transparent 0, transparent 96px, rgba(15, 92, 77, 0.045) 97px);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(390px, 0.78fr);
  gap: 54px;
  align-items: center;
}

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

.hero-copy p {
  max-width: 720px;
  font-size: 1.18rem;
}

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

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 740px;
  padding-top: 8px;
}

.trust-item {
  padding: 15px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.trust-item strong {
  display: block;
  color: var(--emerald-2);
  font-size: 1.35rem;
  line-height: 1;
}

.trust-item span {
  color: var(--muted);
  font-size: 0.88rem;
}

.dashboard-frame {
  position: relative;
  min-height: 560px;
}

.dashboard-card {
  width: 100%;
  background: var(--white);
  border: 1px solid rgba(223, 231, 226, 0.92);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.dash-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px;
  background: #fbfaf6;
  border-bottom: 1px solid var(--line);
}

.dash-title strong {
  display: block;
}

.dash-title span,
.dash-pill,
.mini-label,
.metric span,
.feed span,
.feature-card p,
.plan-list li,
.faq-answer {
  color: var(--muted);
}

.dash-pill {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(47, 155, 140, 0.12);
  font-size: 0.78rem;
  font-weight: 800;
}

.dash-body {
  display: grid;
  gap: 16px;
  padding: 18px;
}

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

.metric {
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #fbfaf6);
}

.metric strong {
  display: block;
  font-size: 1.45rem;
  color: var(--emerald-2);
}

.progress {
  height: 8px;
  margin-top: 13px;
  background: #e7ede9;
  border-radius: 999px;
  overflow: hidden;
}

.progress i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--emerald), var(--gold));
  border-radius: inherit;
}

.workflow {
  display: grid;
  gap: 10px;
}

.feed {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.feed-icon,
.feature-icon,
.benefit-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--emerald-2);
  background: rgba(15, 92, 77, 0.09);
  border-radius: 8px;
}

.feed b {
  display: block;
  font-size: 0.93rem;
}

.feed em {
  color: var(--gold);
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 800;
}

.floating-panel {
  position: absolute;
  right: -18px;
  bottom: 24px;
  width: 255px;
  padding: 16px;
  background: var(--emerald-2);
  color: var(--white);
  border-radius: 8px;
  box-shadow: 0 22px 54px rgba(10, 63, 55, 0.28);
}

.floating-panel span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.86rem;
}

.floating-panel strong {
  display: block;
  margin: 4px 0 12px;
  font-size: 1.6rem;
}

.mini-bars {
  display: grid;
  gap: 7px;
}

.mini-bars i {
  display: block;
  height: 8px;
  background: rgba(255, 255, 255, 0.22);
  border-radius: 999px;
}

.mini-bars i::after {
  content: "";
  display: block;
  width: var(--w);
  height: 100%;
  background: var(--gold-soft);
  border-radius: inherit;
}

.section {
  padding: 88px 0;
}

.section-muted {
  background: var(--stone);
}

.section-dark {
  color: var(--white);
  background: var(--emerald-2);
}

.section-dark p,
.section-dark .section-kicker {
  color: rgba(255, 255, 255, 0.74);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
  gap: 36px;
  align-items: end;
  margin-bottom: 38px;
}

.section-head p {
  font-size: 1.04rem;
}

.section-kicker {
  display: block;
  margin-bottom: 13px;
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

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

.feature-card {
  display: grid;
  gap: 15px;
  padding: 24px;
  min-height: 230px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.feature-card:hover {
  border-color: rgba(15, 92, 77, 0.28);
  box-shadow: 0 16px 34px rgba(25, 35, 31, 0.08);
}

.feature-card.highlight {
  color: var(--white);
  background: var(--emerald-2);
  border-color: var(--emerald-2);
}

.feature-card.highlight p {
  color: rgba(255, 255, 255, 0.75);
}

.feature-card.highlight .feature-icon {
  color: var(--gold-soft);
  background: rgba(255, 255, 255, 0.11);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.7fr);
  gap: 52px;
  align-items: center;
}

.benefit-list {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

.benefit {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: start;
}

.benefit-icon {
  width: 44px;
  height: 44px;
  background: rgba(197, 154, 61, 0.18);
}

.mock-stack {
  display: grid;
  gap: 14px;
}

.mock-note {
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(25, 35, 31, 0.08);
}

.mock-note strong {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.mock-note span {
  color: var(--muted);
}

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

.step {
  position: relative;
  padding: 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.step span {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  margin-bottom: 42px;
  color: #2d220c;
  background: var(--gold-soft);
  border-radius: 8px;
  font-weight: 900;
}

.step h3 {
  margin-bottom: 8px;
}

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

.quote-card {
  display: grid;
  gap: 20px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.quote-card blockquote {
  margin: 0;
  color: #35433e;
  font-size: 1.04rem;
}

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

.avatar {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: var(--emerald);
  border-radius: 8px;
  font-weight: 900;
}

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

.person span {
  color: var(--muted);
  font-size: 0.88rem;
}

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

.plan {
  position: relative;
  display: grid;
  gap: 20px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.plan.featured {
  border-color: rgba(15, 92, 77, 0.45);
  box-shadow: var(--shadow);
}

.plan-tag {
  width: fit-content;
  padding: 6px 10px;
  color: var(--emerald-2);
  background: rgba(197, 154, 61, 0.18);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
}

.plan h3 {
  font-size: 1.45rem;
}

.plan-price {
  color: var(--emerald-2);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

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

.plan-list li {
  display: flex;
  gap: 10px;
}

.plan-list li::before {
  content: "";
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  margin-top: 9px;
  background: var(--gold);
  border-radius: 999px;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.faq-question span:last-child {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  color: var(--emerald-2);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.faq-answer {
  display: none;
  padding: 0 20px 20px;
}

.faq-item.open .faq-answer {
  display: block;
}

.cta {
  padding: 58px;
  background:
    linear-gradient(135deg, rgba(15, 92, 77, 0.96), rgba(10, 63, 55, 0.96)),
    linear-gradient(90deg, transparent 0, transparent 60px, rgba(255, 255, 255, 0.1) 61px);
  border-radius: 8px;
  color: var(--white);
}

.cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.cta p {
  color: rgba(255, 255, 255, 0.75);
  max-width: 690px;
  margin-top: 14px;
}

.page-hero {
  padding: 70px 0;
  background: linear-gradient(135deg, #fffdf8 0%, #f2eee5 100%);
}

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

.page-hero p {
  max-width: 760px;
  font-size: 1.14rem;
}

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

.panel {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

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

.panel li {
  color: var(--muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(350px, 1fr);
  gap: 42px;
  align-items: start;
}

.contact-card,
.form-card {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(25, 35, 31, 0.07);
}

.contact-card {
  display: grid;
  gap: 20px;
}

.contact-line {
  display: grid;
  gap: 5px;
}

.contact-line strong {
  color: var(--emerald-2);
}

.contact-line a {
  color: var(--muted);
}

.form-card form {
  display: grid;
  gap: 16px;
}

.field {
  display: grid;
  gap: 7px;
}

.field label {
  font-weight: 800;
  font-size: 0.92rem;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.field textarea {
  min-height: 132px;
  resize: vertical;
}

.form-note {
  min-height: 22px;
  color: var(--emerald);
  font-weight: 750;
}

.site-footer {
  padding: 56px 0 24px;
  background: #121c18;
  color: var(--white);
}

.site-footer .brand {
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(3, minmax(150px, 0.5fr));
  gap: 34px;
}

.footer-grid p,
.footer-grid a,
.footer-bottom {
  color: rgba(255, 255, 255, 0.66);
}

.footer-links {
  display: grid;
  gap: 9px;
  margin-top: 14px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 42px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -44px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--emerald-2);
  color: var(--white);
  border-radius: 8px;
}

.skip-link:focus {
  top: 12px;
}

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

  .menu-toggle {
    display: block;
  }

  .nav-links.open {
    position: fixed;
    inset: 74px 16px auto;
    display: grid;
    gap: 6px;
    padding: 16px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .nav-links.open a {
    padding: 13px;
  }

  .hero-grid,
  .two-column,
  .section-head,
  .contact-grid,
  .cta-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-frame {
    min-height: auto;
  }

  .floating-panel {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 14px;
  }

  .feature-grid,
  .testimonials,
  .plans,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

  .hero,
  .page-hero {
    padding-top: 44px;
  }

  .hero-grid {
    gap: 34px;
  }

  .trust-row,
  .metric-grid,
  .feature-grid,
  .testimonials,
  .plans,
  .timeline,
  .comparison {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 62px 0;
  }

  .hero-actions,
  .section-actions,
  .footer-bottom {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .dash-top,
  .feed,
  .mock-note strong {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .feed {
    display: grid;
  }

  .feed em {
    justify-self: start;
  }

  .cta {
    padding: 32px 22px;
  }

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