:root {
  --graphite: #1f2328;
  --moss: #46614e;
  --light-moss: #7aaa67;
  --sand: #e8e2d8;
  --soft: #f5f6f7;
  --white: #ffffff;
  --muted: #69716b;
  --line: rgba(31, 35, 40, .1);
  --shadow: 0 24px 80px rgba(31, 35, 40, .09);
  --radius: 24px;
  font-family: Geist, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--graphite);
  background: var(--white);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(122, 170, 103, .08), transparent 25%),
    linear-gradient(180deg, #fff 0%, #fafaf8 100%);
  color: var(--graphite);
}

a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
.container { width: min(1160px, calc(100% - 48px)); margin: 0 auto; }
.center { text-align: center; }
.section { padding: 112px 0; }
.section-dark {
  position: relative;
  overflow: hidden;
  background: #111917;
  color: var(--white);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: .24em;
}

.brand-mark {
  --logo-dark: #1f2328;
  --logo-green: #46614e;
  --logo-dot: 7px;
  position: relative;
  display: block;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  inset: 0;
  display: block;
}

.brand-mark::before {
  background: var(--logo-dark);
  clip-path: polygon(16% 35%, 34% 17%, 74% 17%, 74% 30%, 40% 30%, 29% 41%, 29% 78%, 16% 91%);
}

.brand-mark::after {
  background: var(--logo-green);
  clip-path: polygon(30% 82%, 61% 82%, 74% 69%, 74% 52%, 87% 52%, 87% 76%, 68% 94%, 17% 94%);
}

.brand-mark i {
  position: absolute;
  top: 1%;
  right: 8%;
  z-index: 1;
  display: block;
  width: var(--logo-dot);
  height: var(--logo-dot);
  background: var(--logo-green);
}

.section-dark .brand-mark { --logo-dark: #fff; --logo-green: #7aaa67; }

.site-nav {
  position: fixed;
  z-index: 50;
  top: 20px;
  left: 50%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  width: min(1160px, calc(100% - 48px));
  min-height: 64px;
  padding: 10px 12px 10px 18px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  background: rgba(17, 25, 23, .72);
  color: #fff;
  box-shadow: 0 22px 70px rgba(0, 0, 0, .18);
  transform: translateX(-50%);
  backdrop-filter: blur(22px);
}

.site-nav nav {
  display: inline-flex;
  align-items: center;
  gap: 26px;
  color: rgba(255, 255, 255, .78);
  font-size: 13px;
  font-weight: 560;
}

.site-nav nav a,
.link-login {
  transition: color .18s ease, opacity .18s ease;
}

.site-nav nav a:hover,
.link-login:hover {
  color: #fff;
}

.nav-actions {
  display: inline-flex;
  justify-content: flex-end;
  align-items: center;
  gap: 16px;
}

.link-login {
  color: rgba(255, 255, 255, .8);
  font-size: 13px;
  font-weight: 650;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 13px;
  font-size: 13px;
  font-weight: 700;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}

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

.btn-primary {
  background: var(--moss);
  color: #fff;
  box-shadow: 0 16px 40px rgba(70, 97, 78, .24);
}

.btn-primary:hover {
  background: #3c5744;
  box-shadow: 0 20px 50px rgba(70, 97, 78, .32);
}

.btn-secondary-dark {
  border-color: rgba(255, 255, 255, .24);
  background: rgba(255, 255, 255, .04);
  color: #fff;
}

.btn-secondary-dark:hover {
  border-color: rgba(255, 255, 255, .44);
  background: rgba(255, 255, 255, .08);
}

.btn-light {
  border-color: var(--line);
  background: #fff;
  color: var(--graphite);
  box-shadow: 0 12px 28px rgba(31, 35, 40, .05);
}

.hero {
  min-height: 760px;
  padding: 154px 0 78px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 20%, rgba(122, 170, 103, .18), transparent 26%),
    linear-gradient(120deg, rgba(17, 25, 23, .98), rgba(17, 25, 23, .9)),
    linear-gradient(160deg, transparent 0 58%, rgba(255, 255, 255, .08) 58% 59%, transparent 60%);
}

.hero-bg::after {
  content: "";
  position: absolute;
  right: -12%;
  bottom: -8%;
  width: 58%;
  height: 58%;
  background: linear-gradient(135deg, rgba(255,255,255,.12), transparent);
  clip-path: polygon(18% 46%, 78% 12%, 100% 34%, 100% 100%, 0 100%);
  opacity: .45;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 58px;
  align-items: center;
}

.eyebrow,
.section-head span,
.benefits span {
  display: inline-flex;
  color: var(--light-moss);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 560px;
  margin: 22px 0 18px;
  color: #fff;
  font-size: clamp(48px, 6.2vw, 86px);
  line-height: .96;
  letter-spacing: -.055em;
}

.hero h1 span,
.section-head h2 strong,
.benefits h2 strong,
.pricing h2 strong {
  color: var(--light-moss);
}

.hero p {
  max-width: 500px;
  margin: 0;
  color: rgba(255, 255, 255, .78);
  font-size: 18px;
  line-height: 1.55;
}

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

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 22px 0 0;
  padding: 0;
  color: rgba(255, 255, 255, .72);
  list-style: none;
  font-size: 13px;
}

.trust-list i {
  margin-right: 7px;
  color: var(--light-moss);
}

.hero-product {
  position: relative;
  perspective: 1400px;
}

.dashboard-mockup,
.product-window {
  overflow: hidden;
  border: 1px solid rgba(31, 35, 40, .08);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 34px 110px rgba(0, 0, 0, .26);
}

.dashboard-mockup {
  display: grid;
  grid-template-columns: 150px 1fr;
  min-height: 430px;
  transform: rotateY(-8deg) rotateX(4deg);
  transform-origin: left center;
}

.dashboard-mockup aside,
.window-sidebar {
  display: grid;
  align-content: start;
  gap: 9px;
  padding: 22px 18px;
  border-right: 1px solid #eef0ed;
  background: #fbfbfa;
}

.mock-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 12px;
  letter-spacing: .18em;
}

.mock-brand .brand-mark,
.window-sidebar .brand-mark {
  width: 24px;
  height: 24px;
  --logo-dot: 5px;
}

.dashboard-mockup aside span,
.window-sidebar p {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 30px;
  margin: 0;
  padding: 0 10px;
  border-radius: 9px;
  color: #6c746d;
  font-size: 12px;
}

.dashboard-mockup aside .active,
.window-sidebar .on {
  background: #edf5ef;
  color: var(--moss);
}

.dashboard-mockup section {
  padding: 22px;
  background: #fff;
}

.mock-top,
.window-head,
.mock-main > article > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.mock-top h3,
.window-head h3 {
  margin: 0;
  font-size: 18px;
}

.mock-search,
.window-head span {
  min-width: 122px;
  padding: 8px 12px;
  border: 1px solid #e7e9e5;
  border-radius: 10px;
  color: #9aa19b;
  font-size: 12px;
}

.mock-kpis,
.product-kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 20px;
}

.mock-kpis article,
.product-kpis article {
  min-height: 108px;
  padding: 16px;
  border: 1px solid #edf0ed;
  border-radius: 16px;
  background: #fff;
}

.mock-kpis small,
.product-kpis small {
  color: #8a928a;
  font-size: 11px;
}

.mock-kpis strong,
.product-kpis strong {
  display: block;
  margin-top: 10px;
  font-size: 20px;
}

.mock-kpis em {
  display: block;
  margin-top: 8px;
  color: var(--moss);
  font-size: 11px;
  font-style: normal;
}

.mock-main {
  display: grid;
  grid-template-columns: 1.45fr .8fr;
  gap: 16px;
  margin-top: 18px;
}

.mock-main article {
  min-height: 190px;
  padding: 16px;
  border: 1px solid #edf0ed;
  border-radius: 17px;
  background: #fff;
}

.mock-main span {
  color: #8a928a;
  font-size: 11px;
}

.mock-chart svg {
  width: 100%;
  height: 146px;
  margin-top: 10px;
}

.mock-chart path {
  fill: none;
  stroke: var(--moss);
  stroke-width: 3;
  stroke-linecap: round;
}

.mock-chart path + path {
  stroke: #9cb59b;
  stroke-width: 2;
}

.mock-list p {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 17px 0;
  color: #515953;
  font-size: 12px;
}

.mock-list i {
  width: 24px;
  height: 24px;
  border-radius: 8px;
  background: #edf5ef;
}

.float-card {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  background: rgba(255, 255, 255, .9);
  color: var(--graphite);
  font-size: 12px;
  font-weight: 700;
  box-shadow: var(--shadow);
}

.float-one { right: -18px; top: 60px; }
.float-two { left: -20px; bottom: 58px; }

.scroll-hint {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 52px;
  color: rgba(255, 255, 255, .58);
  font-size: 12px;
}

.logo-strip {
  padding: 46px 0;
  border-bottom: 1px solid #eef0ed;
  background: #fff;
  text-align: center;
}

.logo-strip p {
  margin: 0 0 28px;
  color: #8c948d;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.logo-strip div {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(28px, 5vw, 70px);
  color: #8a8f8b;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .04em;
}

.section-head {
  max-width: 560px;
}

.section-head.center {
  margin: 0 auto 44px;
}

.section-head h2 {
  margin: 14px 0 0;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.08;
  letter-spacing: -.04em;
}

.section-head p {
  margin: 20px 0 28px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

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

.feature-card,
.testimonial-grid article,
.pricing-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(31, 35, 40, .045);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.feature-card:hover,
.testimonial-grid article:hover,
.pricing-card:hover {
  transform: translateY(-4px);
  border-color: rgba(70, 97, 78, .2);
  box-shadow: 0 24px 70px rgba(31, 35, 40, .08);
}

.feature-card {
  display: grid;
  gap: 12px;
  min-height: 192px;
  padding: 24px;
  text-align: center;
}

.feature-card i,
.benefits article i {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin: 0 auto;
  border-radius: 14px;
  background: #edf5ef;
  color: var(--moss);
  font-size: 20px;
}

.feature-card h3,
.benefits h3 {
  margin: 0;
  font-size: 15px;
}

.feature-card p,
.benefits p,
.testimonial-grid p,
.pricing-card p,
.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.58;
}

.button-row { margin-top: 28px; }

.product-section {
  background: linear-gradient(180deg, #fff, #f9faf8);
}

.product-grid {
  display: grid;
  grid-template-columns: .62fr 1.38fr;
  gap: 56px;
  align-items: center;
}

.product-window {
  display: grid;
  grid-template-columns: 150px 1fr;
  min-height: 500px;
  box-shadow: 0 28px 90px rgba(31, 35, 40, .12);
}

.window-content {
  padding: 24px;
}

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

.project-cards article {
  display: grid;
  align-content: end;
  min-height: 180px;
  padding: 16px;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(10, 18, 16, .06), rgba(10, 18, 16, .82)),
    linear-gradient(135deg, #46614e, #1f2328);
  color: #fff;
}

.project-cards b {
  font-size: 15px;
}

.project-cards em {
  margin-top: 28px;
  color: rgba(255, 255, 255, .78);
  font-size: 12px;
  font-style: normal;
}

.benefits {
  padding: 100px 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1.05fr repeat(4, 1fr);
  gap: 34px;
  align-items: center;
}

.benefits h2 {
  max-width: 330px;
  margin: 16px 0 0;
  color: #fff;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -.045em;
}

.benefits article {
  display: grid;
  gap: 12px;
}

.benefits article i {
  margin: 0;
  background: rgba(122, 170, 103, .12);
  color: var(--light-moss);
}

.benefits h3 {
  color: #fff;
}

.benefits p {
  color: rgba(255, 255, 255, .62);
}

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

.testimonial-grid article {
  display: grid;
  gap: 24px;
  padding: 28px;
}

.testimonial-grid p {
  color: #4f5751;
  font-size: 15px;
}

.testimonial-grid div {
  display: grid;
  grid-template-columns: 42px 1fr;
  column-gap: 12px;
  align-items: center;
}

.testimonial-grid span {
  display: grid;
  grid-row: span 2;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: var(--moss);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.testimonial-grid b {
  font-size: 13px;
}

.testimonial-grid small {
  color: var(--muted);
  font-size: 12px;
}

.pricing {
  background: #fbfbfa;
}

.billing-toggle {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 12px;
}

.billing-toggle span {
  font-weight: 650;
  transition: color .2s ease;
}

.billing-toggle span.is-active {
  color: var(--graphite);
}

.billing-toggle button {
  position: relative;
  width: 42px;
  height: 24px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease;
}

.billing-toggle button::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: var(--moss);
  box-shadow: 0 5px 14px rgba(70, 97, 78, .18);
  transition: transform .22s ease, background .22s ease;
}

.billing-toggle.is-annual button {
  border-color: rgba(70, 97, 78, .28);
  background: #edf5ef;
}

.billing-toggle.is-annual button::after {
  transform: translateX(18px);
}

.billing-toggle b {
  padding: 3px 7px;
  border-radius: 999px;
  background: #edf5ef;
  color: var(--moss);
  font-size: 10px;
  text-transform: uppercase;
}

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

.pricing-card {
  position: relative;
  display: grid;
  gap: 18px;
  padding: 30px;
}

.pricing-card.featured {
  border-color: var(--moss);
  box-shadow: 0 24px 70px rgba(70, 97, 78, .16);
}

.pricing-card > span {
  position: absolute;
  right: 20px;
  top: 20px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--moss);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
}

.pricing-card > .pricing-icon {
  position: static;
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: 14px;
  display: inline-grid;
  place-items: center;
  background: color-mix(in srgb, var(--moss) 10%, #fff);
  color: var(--moss);
  font-size: 23px;
}

.pricing-card.featured > .pricing-icon {
  background: color-mix(in srgb, var(--moss) 14%, #fff);
}

.pricing-card h3 {
  margin: 0;
}

.pricing-card strong {
  font-size: 34px;
  letter-spacing: -.04em;
}

.pricing-card small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

.pricing-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  color: #59615b;
  list-style: none;
  font-size: 13px;
}

.pricing-card li::before {
  content: "✓";
  margin-right: 9px;
  color: var(--moss);
  font-weight: 900;
}

.pricing-note {
  margin: 24px 0 0;
  color: var(--muted);
  text-align: center;
  font-size: 12px;
}

.cta-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  margin-bottom: 70px;
  padding: 42px 48px;
  overflow: hidden;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.07), transparent 50%),
    #111917;
  color: #fff;
}

.cta-section h2 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(26px, 3.4vw, 42px);
  line-height: 1.05;
  letter-spacing: -.04em;
}

.cta-section p {
  max-width: 520px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, .64);
}

.cta-section > div:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.site-footer {
  padding: 54px 0 26px;
  background: #111917;
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, .72fr) 1.2fr;
  gap: 34px;
}

.site-footer .brand-mark { --logo-dark: #fff; --logo-green: #7aaa67; }
.site-footer p {
  max-width: 260px;
  margin-top: 20px;
  color: rgba(255, 255, 255, .62);
}

.social {
  display: flex;
  gap: 14px;
  margin-top: 20px;
  color: rgba(255, 255, 255, .72);
}

.site-footer nav {
  display: grid;
  align-content: start;
  gap: 12px;
}

.site-footer b {
  margin-bottom: 8px;
  font-size: 13px;
}

.site-footer a {
  color: rgba(255, 255, 255, .62);
  font-size: 13px;
}

.site-footer a:hover {
  color: #fff;
}

.newsletter label {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 13px;
  background: rgba(255, 255, 255, .04);
}

.newsletter input {
  min-width: 0;
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff;
}

.newsletter button {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 10px;
  background: var(--light-moss);
  color: #fff;
}

.site-footer > small {
  display: block;
  width: min(1160px, calc(100% - 48px));
  margin: 44px auto 0;
  color: rgba(255, 255, 255, .42);
  font-size: 12px;
}

.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  pointer-events: none;
  opacity: 0;
  transition: opacity .22s ease;
}

.lead-modal.is-open {
  pointer-events: auto;
  opacity: 1;
}

.lead-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(31, 35, 40, .48);
  backdrop-filter: blur(14px);
}

.lead-modal__dialog {
  position: relative;
  width: min(720px, 100%);
  max-height: min(90vh, 820px);
  overflow: auto;
  border: 1px solid rgba(70, 97, 78, .14);
  border-radius: 30px;
  background: radial-gradient(circle at top right, rgba(122, 166, 126, .16), transparent 32%), #fff;
  box-shadow: 0 34px 100px rgba(31, 35, 40, .24);
  padding: 36px;
  transform: translateY(18px) scale(.98);
  transition: transform .22s ease;
}

.lead-modal.is-open .lead-modal__dialog {
  transform: translateY(0) scale(1);
}

.lead-modal__close {
  position: absolute;
  top: 22px;
  right: 22px;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, .86);
  color: var(--graphite);
  cursor: pointer;
  font-size: 22px;
  transition: transform .2s ease, background .2s ease;
}

.lead-modal__close:hover {
  background: var(--light);
  transform: translateY(-1px);
}

.lead-modal .eyebrow {
  color: var(--moss);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.lead-modal h2 {
  max-width: 560px;
  margin: 12px 0 10px;
  color: var(--graphite);
  font-size: clamp(30px, 4vw, 46px);
  line-height: .98;
  letter-spacing: -.045em;
}

.lead-modal p {
  max-width: 580px;
  margin: 0 0 26px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

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

.lead-form label {
  display: grid;
  gap: 8px;
  color: var(--graphite);
  font-size: 13px;
  font-weight: 700;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(245, 246, 247, .72);
  color: var(--graphite);
  font: inherit;
  font-weight: 500;
  outline: 0;
  padding: 14px 15px;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: rgba(70, 97, 78, .46);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(70, 97, 78, .08);
}

.lead-form textarea {
  resize: vertical;
}

.lead-form__wide,
.lead-form__feedback {
  grid-column: 1 / -1;
}

.lead-form__feedback {
  min-height: 20px;
  color: var(--moss);
  font-size: 13px;
  font-weight: 700;
}

@media (max-width: 1040px) {
  .site-nav {
    grid-template-columns: auto 1fr;
  }

  .site-nav nav {
    display: none;
  }

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

  .dashboard-mockup {
    transform: none;
  }

  .feature-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefits-grid {
    gap: 22px;
  }

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

@media (max-width: 720px) {
  .container { width: min(100% - 28px, 1160px); }
  .section { padding: 74px 0; }
  .site-nav {
    top: 12px;
    width: calc(100% - 24px);
    grid-template-columns: 1fr auto;
    border-radius: 20px;
  }

  .nav-actions .btn {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 122px;
  }

  .hero-grid {
    gap: 36px;
  }

  .dashboard-mockup,
  .product-window {
    grid-template-columns: 1fr;
  }

  .dashboard-mockup aside,
  .window-sidebar {
    display: none;
  }

  .mock-kpis,
  .mock-main,
  .product-kpis,
  .project-cards,
  .feature-grid,
  .testimonial-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .float-card {
    display: none;
  }

  .logo-strip div {
    gap: 22px;
    font-size: 14px;
  }

  .cta-section {
    align-items: flex-start;
    flex-direction: column;
    padding: 30px;
  }

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

  .lead-modal {
    padding: 14px;
  }

  .lead-modal__dialog {
    border-radius: 24px;
    padding: 28px 20px;
  }

  .lead-form {
    grid-template-columns: 1fr;
  }
}
