@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@500;600;700&display=swap");

:root {
  --color-estimator-bg: #1e2840;
  --color-surface-bg: #0f172a;
  --color-surface-panel: #0b1223;
  --color-surface-panel-2: #0c1428;
  --color-surface-border: #1e293b;
  --color-text: #e2e8f0;
  --color-muted: #94a3b8;
  --color-underline: #243044;
  --color-primary: #27a059;
  --color-primary-strong: #1b6d3d;
  --color-accent: #ff8a00;
  --color-cta-base: #06112b;
  --color-cta-stroke: #4d516d;
  --color-danger: #ff626b;
  --color-warning: #ff9262;
  --color-light-teal: #27565D;
  --color-teal-bg-dk:  #081518;
  --color-text-muted: #94a3b8;
  --color-bright-green: #27a059;
  --color-bright-green-rgb: 39 160 89;
  --color-white-rgb: 255 255 255;
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 12px;
  --shadow-elev: 0 4px 10px rgba(0, 0, 0, 0.1);
  --space-100: 1.25rem;
  --space-200: 1rem;
  --header-anchor-offset: 5.25rem;
}



*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: linear-gradient(180deg, var(--color-surface-bg), var(--color-surface-panel-2));
  color: var(--color-text);
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--color-text);
  font-family: "Oswald", "Arial Narrow", Arial, sans-serif;
  margin: 0 0 var(--space-200);
  line-height: 1.15;
  text-transform: uppercase;
}

p {
  color: #fff;
  margin: 0 0 14px;
  line-height: 1.33;
}

a,
a:visited,
a:active {
  color: #475569;
  text-decoration: none;
  outline: none;
  transition: color 0.2s ease;
}

p a:not(.btn),
p a:not(.btn):visited,
p a:not(.btn):active {
  color: var(--color-bright-green);
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(var(--color-bright-green-rgb) / 0.65);
  text-underline-offset: 0.16em;
}

a:hover,
p a:not(.btn):hover {
  color: var(--color-bright-green);
}

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

.card {
  background: linear-gradient(135deg, rgba(255, 255, 255, .15) 0, rgba(255, 255, 255, .05) 30%, rgba(255, 255, 255, 0) 60%), #06112b;
  border: 1px solid var(--color-surface-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-elev);
  color: var(--color-text);
  overflow: hidden;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-cta-stroke);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 30%, rgba(255, 255, 255, 0) 60%), var(--color-cta-base);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.06s ease, background-color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease, color 0.2s ease;
}

.btn:hover {
  background-color: var(--color-accent);
  border-color: #fff;
  color: #fff;
}

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

.btn[disabled],
.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* layout */

.container {
  width: min(1420px, 100% - 3rem);
  margin: 0 auto;
}

.site-header {
  padding: .45rem 0;
  background: linear-gradient(180deg, rgba(7, 16, 34, 0.96), rgba(7, 16, 34, 0.9));
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 10px 30px rgba(2, 6, 23, 0.16);
  position: sticky;
  top: 0;
  z-index: 200;
  backdrop-filter: blur(14px);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1.35rem;
}

.site-logo {
  display: inline-flex;
  align-items: center;
}

.site-logo img {
  display: block;
  height: 54px;
  width: auto;
  transition: height 0.2s ease;
}

.site-header.is-sticky .site-logo img {
  height: 34px;
}

.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: clamp(0.9rem, 1.4vw, 1.45rem);
}

.site-nav a {
  color: var(--color-text);
  font-size: 0.94rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.site-nav__actions {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  margin-left: clamp(0.35rem, 1vw, 0.9rem);
  padding: 0.32rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.site-nav__login {
  padding: 0 0.35rem;
  color: rgba(226, 232, 240, 0.84) !important;
}

.site-nav__cta,
.site-nav__cta:visited {
  display: inline-flex;
  min-width: 10.6rem;
  min-height: 3rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.05rem;
  padding: 0.48rem 1.05rem;
  border: 1px solid rgba(190, 228, 116, 0.55);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.17), rgba(255, 255, 255, 0)),
    #6ca536;
  box-shadow: 0 14px 30px rgba(22, 74, 35, 0.32);
  color: #ffffff !important;
  text-align: center;
  line-height: 1.1;
}

.site-nav__cta span {
  display: block;
  color: inherit;
  font-size: 0.9rem;
  font-weight: 700;
}

.site-nav__cta small {
  display: block;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.68rem;
  font-weight: 500;
}

.site-nav__group {
  position: relative;
}

.site-nav__group summary {
  list-style: none;
  cursor: pointer;
  color: var(--color-text);
  font-size: 0.94rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

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

.site-nav__group summary::after {
  content: "▾";
  margin-left: 0.35rem;
  font-size: 0.8em;
}

.site-nav__group[open] summary::after {
  content: "▴";
}

.site-nav__group summary:hover,
.site-nav__group summary:focus-visible,
.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--color-bright-green);
}

.site-nav__cta:hover,
.site-nav__cta:focus-visible {
  border-color: #ffffff;
  background-color: #7ebd3e;
  color: #ffffff !important;
}

.site-nav__submenu {
  position: absolute;
  top: calc(100% + 0.6rem);
  left: 0;
  min-width: 220px;
  padding: 0.75rem 0.9rem;
  display: grid;
  gap: 0.65rem;
  background: rgba(11, 18, 35, 0.98);
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: var(--radius-md);
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.28);
  z-index: 50;
}

.site-nav__submenu a {
  display: block;
  font-size: 0.95rem;
}

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 32px;
  height: 28px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: transparent;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 3px;
  transition: border-color 0.2s ease;
}

.nav-toggle__bar {
  width: 14px;
  height: 2px;
  background: var(--color-text);
  display: block;
  transition: background 0.2s ease;
}

.nav-close {
  display: none;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.nav-backdrop {
  display: none;
}

body.nav-open {
  overflow: hidden;
}

.nav-toggle:hover {
  border-color: var(--color-bright-green);
}

.nav-toggle:hover .nav-toggle__bar {
  background: var(--color-bright-green);
}

.nav-close:hover {
  color: var(--color-bright-green);
  border-color: var(--color-bright-green);
}

@media (min-width: 901px) and (max-width: 1120px) {
  .site-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: min(310px, 82vw);
    height: 100vh;
    padding: 4.5rem 1.5rem 1.5rem;
    flex-direction: column;
    align-items: flex-start;
    background: #0b1223;
    transform: translateX(-100%);
    transition: transform 0.25s ease;
    box-shadow: 0 18px 40px rgba(2, 6, 23, 0.4);
    z-index: 300;
  }

  .site-nav__group {
    width: 100%;
  }

  .site-nav__group summary {
    width: 100%;
  }

  .site-nav__submenu {
    position: static;
    min-width: 0;
    margin-top: 0.65rem;
    padding: 0 0 0 1rem;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .site-nav__actions {
    width: 100%;
    margin-left: 0;
    padding: 0.75rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .site-nav__login {
    padding: 0;
  }

  .site-nav__cta {
    width: 100%;
  }

  body.nav-open .site-nav {
    transform: translateX(0);
  }

  .nav-close {
    display: inline-flex;
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    background: transparent;
    color: var(--color-text);
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(2, 6, 23, 0.6);
    z-index: 250;
  }

  body.nav-open .nav-backdrop {
    display: block;
  }
}

.hero {
  padding: clamp(2.5rem, 6vw, 5.5rem) 0;
  padding-top: clamp(1.5rem, 2vw, 3rem);
  position: relative;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-anchor-offset);
}

[id] {
  scroll-margin-top: calc(var(--header-anchor-offset) + 0.75rem);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(/assets/images/hero_bg.png);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 50%;
  opacity: 0.4;
  transform: scaleX(-1);
  pointer-events: none;
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.65fr);
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: center;
}

.hero-copy {
  display: grid;
  gap: 0.75rem;
}

.hero-eyebrow {
  margin: 0;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  font-weight: 600;
  color: var(--color-muted);
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  letter-spacing: -0.02em;
}

.hero-qualifier-mark {
  width: 96px;
  height: auto;
  display: inline-block;
  vertical-align: middle;
}

.hero-qualifier-link {
  align-items: center;
  vertical-align: middle;
  text-align: center;
  width: 100%;

}

.hero-subheadline {
  margin: 0;
  font-size: 1.1rem;
  color: var(--color-text);
  max-width: 40rem;
}

.hero-qualifier {
  margin: 0;
  font-size: 1rem;
  color: var(--color-muted);
  max-width: 40rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.hero-action {
  display: flex;
  gap: 1rem;
  padding: clamp(1.4rem, 2.8vw, 2.25rem);
  background:
    linear-gradient(180deg, rgba(18, 30, 56, 0.98), rgba(7, 14, 30, 0.98)),
    linear-gradient(145deg, rgba(39, 160, 89, 0.12), rgba(255, 138, 0, 0.08));
  border: 1px solid rgba(108, 128, 171, 0.35);
  border-radius: 1.35rem;
  box-shadow: 0 26px 60px rgba(2, 6, 23, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.hero-action::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.08), rgba(255, 138, 0, 0.4), rgba(255, 255, 255, 0.08));
  pointer-events: none;
}

.hero-started-label {
  margin: 0;
  color: #ff8a00;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  align-self: flex-start;
  padding: 0.45rem 0.75rem;
  border: 1px solid rgba(255, 138, 0, 0.28);
  border-radius: 999px;
  background: rgba(255, 138, 0, 0.08);
}

.hero-started-label::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: #27a059;
  box-shadow: 0 0 0 0.18rem rgba(39, 160, 89, 0.2);
}

.hero-action-buttons {
  display: grid;
  gap: 0.75rem;
}

.hero-subnav {
  align-items: center;
  justify-content: center;
  margin-top: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.hero-subnav-row {
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  padding: 0.85rem 0;
}

.hero-trust-strip__text {
  margin: 0;
  text-align: center;
  font-size: 0.92rem;
  font-weight: 600;
  color: #0f172a;
}

.hero-subnav__link,
.hero-subnav__link:visited {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.78rem;
  border: none;
  border-radius: 999px;
  color: #fff;
  font-size: 0.86rem;
  background: #06112b;
  transition: color 0.25s ease, border-color 0.25s ease, background-color 0.25s ease, transform 0.2s ease;
}

.hero-subnav__link:hover,
.hero-subnav__link:focus-visible {
  border-color: rgba(39, 160, 89, 0.95);
  color: #fff;
  background: #ff8a00;
  transform: translateY(-1px);
}

.hero-cta {
  width: 100%;
  font-size: 1.05rem;
  padding: 0.95rem 1.1rem;
  color: #fff !important;
  min-height: 3.45rem;
}

.hero-email-cta {
  min-height: 3.45rem;
  color: #fff !important;
  box-shadow: 0 14px 28px rgba(15, 63, 34, 0.34);
}

.hero-proof-line {
  margin: 0;
  color: #e5edf6;
  font-size: 0.9rem;
  line-height: 1.45;
}

.hero-platform-line {
  margin: -0.2rem 0 0;
  color: rgba(229, 237, 246, 0.82);
  font-size: 0.86rem;
  line-height: 1.45;
}

.hero-google-logo {
  width: 18px;
  height: 18px;
  display: inline-block;
}

.hero-cta:hover {
  color: #fff;
}

.hero-signup-card .hero-cta:not(.hero-email-cta) {
  background: linear-gradient(180deg, rgba(21, 32, 60, 0.96), rgba(12, 21, 40, 0.96));
  border-color: rgba(121, 140, 182, 0.34);
}

.hero-signup-card .hero-cta:not(.hero-email-cta):hover {
  background: linear-gradient(180deg, rgba(28, 41, 74, 0.98), rgba(15, 25, 46, 0.98));
  border-color: rgba(255, 255, 255, 0.36);
}

.hero-form {
  max-width: none;
  gap: var(--space-200);
}

.hero-action .input-wrapper {
  margin: 0;
}

.hero-pricing-block {
  display: grid;
  gap: 0.7rem;
  padding: 1rem 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
}

.hero-pricing-label {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #90a3bf;
}

.hero-pricing {
  display: grid;
  gap: 0.45rem;
  font-size: 0.98rem;
  margin: 0;
  color: #ffffff;
}

.hero-pricing-item {
  position: relative;
  padding-left: 1.5rem;
  color: #ffffff;
  line-height: 1.45;
}

.hero-pricing-item--price {
  font-size: 1.15rem;
  font-weight: 700;
}

.hero-pricing-item::before {
  position: absolute;
  left: 0;
  top: 0.05rem;
  content: "\2713";
  font-weight: 700;
  color: var(--color-primary);
}

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

.hero-note {
  margin: 0;
  font-size: 0.92rem;
  color: #c1cfdf;
  line-height: 1.5;
}

.hero-action .hero-note:not(.hero-note--more-details) {
  color: #fff;
}

.hero-note--more-details {
  align-self: flex-start;
}

.hero-note--more-details a {
  color: #f6fbff;
  text-decoration: underline;
  text-decoration-color: rgba(255, 138, 0, 0.42);
  text-underline-offset: 0.16em;
}

.hero-trust {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.95rem;
  align-items: center;
  padding-top: 0.2rem;
}

.hero-trust .hero-qualifier {
  max-width: none;
}

.hero-trust .hero-qualifier-link {
  display: inline-flex;
  width: auto;
}

.hero-trust-copy {
  display: grid;
  gap: 0.35rem;
}

.home-hero {
  padding: clamp(2.4rem, 3.7vw, 4rem) 0 clamp(2rem, 3.5vw, 3.7rem);
  background: #030a10;
  overflow: hidden;
  isolation: isolate;
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(3, 10, 16, 0.18) 0%, rgba(3, 10, 16, 0.04) 48%, rgba(3, 10, 16, 0.02) 100%),
    url(/assets/images/home-hero-bg-stump-grinder.png);
  background-position: center, center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
  pointer-events: none;
  z-index: 0;
}

.home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3, 10, 16, 0.04) 0%, rgba(3, 10, 16, 0) 44%, rgba(3, 10, 16, 0.3) 100%),
    linear-gradient(110deg, rgba(39, 160, 89, 0.13) 0%, rgba(39, 160, 89, 0) 34%, rgba(255, 138, 0, 0.08) 100%),
    repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 18px);
  opacity: 1;
  pointer-events: none;
  transform: none;
  z-index: 0;
}

.home-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(500px, 1.18fr);
  align-items: center;
  gap: clamp(1.4rem, 3.1vw, 3.8rem);
  min-height: min(640px, calc(100svh - 150px));
}

.home-hero__copy {
  display: grid;
  gap: 1rem;
  max-width: 660px;
}

.home-hero__eyebrow,
.home-hero__subhead,
.home-hero__note {
  margin: 0;
}

.home-hero__eyebrow {
  color: #8cc350;
  font-family: "Oswald", "Arial Narrow", Arial, sans-serif;
  font-size: clamp(0.78rem, 1vw, 1rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.35;
}

.home-hero h1 {
  max-width: 680px;
  margin: 0;
  color: #ffffff;
  font-family: "Oswald", "Arial Narrow", Arial, sans-serif;
  font-size: clamp(3.35rem, 6.35vw, 6.9rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.91;
  text-transform: uppercase;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.32);
  text-wrap: balance;
}

.home-hero h1 span {
  display: block;
  color: #7fb13f;
}

.home-hero__subhead {
  max-width: 560px;
  color: #edf5ef;
  font-size: clamp(1.02rem, 1.35vw, 1.22rem);
  line-height: 1.55;
}

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  padding-top: 0.45rem;
}

.home-hero__primary,
.home-hero__primary:visited,
.home-hero__secondary,
.home-hero__secondary:visited {
  min-height: 3.45rem;
  color: #ffffff;
  font-weight: 800;
}

.home-hero__primary {
  align-items: stretch;
  justify-content: flex-start;
  gap: 0;
  min-width: 18rem;
  min-height: 4rem;
  padding: 0;
  border-color: rgba(190, 228, 116, 0.58);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0)),
    #6ca536;
  box-shadow: 0 18px 34px rgba(29, 86, 40, 0.34);
  overflow: hidden;
}

.home-hero__secondary {
  min-width: 13.5rem;
  padding-right: 1.15rem;
  padding-left: 1.15rem;
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(5, 15, 22, 0.78);
}

.home-hero__google-mark {
  display: inline-flex;
  flex: 0 0 3.5rem;
  align-items: center;
  justify-content: center;
  background: #ffffff;
}

.home-hero__google-mark img {
  display: block;
  width: 1.38rem;
  height: 1.38rem;
}

.home-hero__primary-copy {
  display: grid;
  align-content: center;
  gap: 0.05rem;
  padding: 0.62rem 1.05rem 0.62rem 0.9rem;
  text-align: left;
}

.home-hero__primary-copy strong,
.home-hero__primary-copy small {
  display: block;
  color: inherit;
  line-height: 1.15;
}

.home-hero__primary-copy strong {
  font-size: 1rem;
}

.home-hero__primary-copy small {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.78rem;
  font-weight: 600;
}

.home-hero__primary:hover,
.home-hero__primary:focus-visible {
  border-color: #ffffff;
  background-color: #7ebd3e;
  color: #ffffff;
}

.home-hero__secondary:hover,
.home-hero__secondary:focus-visible {
  border-color: rgba(255, 255, 255, 0.72);
  background-color: rgba(255, 138, 0, 0.16);
  color: #ffffff;
}

.home-hero__primary:focus-visible,
.home-hero__secondary:focus-visible {
  outline: 3px solid rgba(190, 228, 116, 0.5);
  outline-offset: 3px;
}

.home-hero__note {
  color: #d8e7d4;
  font-size: 0.96rem;
}

.home-hero__visual {
  position: relative;
  min-height: 660px;
  width: 100%;
}

.home-hero__field-photo {
  position: absolute;
  top: 7%;
  right: -8%;
  bottom: 5%;
  width: 66%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(6, 17, 18, 0.48), rgba(6, 17, 18, 0.14) 58%, rgba(6, 17, 18, 0.72)),
    linear-gradient(180deg, rgba(6, 17, 18, 0.2), rgba(6, 17, 18, 0.86)),
    url(/assets/images/kurt-dommermuth-stump-grinding.jpg);
  background-position: 38% center;
  background-size: cover;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
  opacity: 0.68;
  overflow: hidden;
}

.home-hero__field-photo::before {
  content: "";
  position: absolute;
  right: -5.5rem;
  bottom: -4.8rem;
  width: 17rem;
  height: 17rem;
  border: 1.15rem solid rgba(5, 8, 11, 0.72);
  border-radius: 999px;
  background:
    repeating-conic-gradient(from 8deg, rgba(255, 138, 0, 0.22) 0deg 8deg, rgba(0, 0, 0, 0.38) 8deg 19deg),
    #161c1f;
  box-shadow: inset 0 0 0 2.5rem rgba(6, 17, 18, 0.68), 0 0 44px rgba(255, 138, 0, 0.15);
}

.home-hero__field-photo::after {
  content: "";
  position: absolute;
  right: 6.2rem;
  bottom: 5.7rem;
  width: 15.5rem;
  height: 5.2rem;
  background: linear-gradient(90deg, rgba(255, 138, 0, 0.42), rgba(255, 138, 0, 0.14));
  clip-path: polygon(0 44%, 100% 0, 88% 58%, 11% 100%);
  transform: rotate(-8deg);
  filter: saturate(0.9);
}

.phone-mockup {
  position: absolute;
  top: 50%;
  left: 2%;
  z-index: 3;
  width: min(365px, 55%);
  padding: 0.64rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 2rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0) 28%),
    #05080d;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.72);
  transform: translateY(-50%) rotate(-2deg);
}

.phone-mockup::before {
  content: "";
  position: absolute;
  top: 0.72rem;
  left: 50%;
  z-index: 4;
  width: 5.2rem;
  height: 1rem;
  border-radius: 0 0 1rem 1rem;
  background: #05080d;
  transform: translateX(-50%);
}

.phone-mockup__screen {
  display: grid;
  gap: 0.62rem;
  min-height: 36rem;
  padding: 0.9rem;
  border: 1px solid rgba(105, 142, 160, 0.26);
  border-radius: 1.5rem;
  background:
    linear-gradient(180deg, rgba(8, 31, 51, 0.98), rgba(4, 15, 29, 0.98)),
    #06112b;
  color: #ffffff;
  overflow: hidden;
}

.phone-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 1rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.68rem;
  font-weight: 700;
}

.phone-topbar {
  display: grid;
  grid-template-columns: 1.2rem 1fr 1.2rem;
  align-items: center;
  text-align: center;
}

.phone-topbar p,
.phone-topbar span,
.phone-label,
.phone-detail,
.phone-total,
.phone-message p,
.phone-work-card p,
.phone-work-card span {
  margin: 0;
}

.phone-topbar p {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.2;
}

.phone-topbar span {
  display: block;
  color: #c6d7e7;
  font-size: 0.74rem;
  line-height: 1.25;
}

.phone-back {
  width: 0.7rem;
  height: 0.7rem;
  border-bottom: 2px solid #ffffff;
  border-left: 2px solid #ffffff;
  transform: rotate(45deg);
}

.phone-estimate-card {
  position: relative;
  padding: 0.9rem;
  border: 1px solid rgba(74, 155, 133, 0.48);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(19, 73, 76, 0.98), rgba(9, 44, 54, 0.98));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.phone-estimate-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: #ff8a00;
}

.phone-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.7rem;
  padding: 0.25rem 0.62rem;
  border-radius: 999px;
  background: #31b85f;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
}

.phone-label {
  color: #c9d9dc;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.phone-total {
  color: #34d16c;
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1.15;
}

.phone-detail {
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 700;
}

.phone-message {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  max-width: 88%;
  padding: 0.68rem 0.78rem;
  border-radius: 8px;
  color: #11221b;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.phone-message p {
  color: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.35;
}

.phone-message--customer {
  justify-self: start;
  background: #dff4c8;
}

.phone-message--reply {
  justify-self: end;
  background: #ffffff;
}

.phone-avatar {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 999px;
  background: #1b6d3d;
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 800;
}

.phone-work-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.78rem 0.85rem;
  border: 1px solid rgba(77, 135, 139, 0.44);
  border-radius: 8px;
  background: rgba(12, 52, 62, 0.9);
}

.phone-work-card__status {
  color: #34d16c;
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.phone-work-card span {
  color: #d8e4ed;
  font-size: 0.78rem;
}

.phone-work-card strong {
  flex: 0 0 auto;
  color: #34d16c;
  font-size: 0.92rem;
}

.phone-work-card__icon {
  position: relative;
  flex: 0 0 auto;
  width: 2rem;
  height: 2rem;
  border: 1px solid rgba(52, 209, 108, 0.6);
  border-radius: 8px;
}

.phone-work-card__icon::before,
.phone-work-card__icon::after {
  content: "";
  position: absolute;
  left: 0.5rem;
  right: 0.5rem;
  height: 2px;
  background: #34d16c;
}

.phone-work-card__icon::before {
  top: 0.72rem;
}

.phone-work-card__icon::after {
  top: 1.2rem;
}

.phone-work-card--paid {
  border-color: rgba(52, 209, 108, 0.42);
}

.workflow-cards {
  position: absolute;
  top: 15%;
  right: 0;
  z-index: 4;
  display: grid;
  gap: 0.92rem;
  width: min(278px, 43%);
  margin: 0;
  padding: 0;
  list-style: none;
}

.workflow-cards::before {
  content: "";
  position: absolute;
  top: 2rem;
  bottom: 2rem;
  left: -1.2rem;
  border-left: 2px dashed rgba(140, 195, 80, 0.48);
}

.workflow-cards li {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.85rem;
  min-height: 5rem;
  padding: 0.85rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 8px;
  background: rgba(255, 252, 247, 0.94);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(4px);
}

.workflow-cards li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -1.65rem;
  width: 0.58rem;
  height: 0.58rem;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  background: #8cc350;
  transform: translateY(-50%);
}

.workflow-cards__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 999px;
  background: rgba(108, 165, 54, 0.18);
  color: #2a6b2f;
  font-weight: 800;
}

.workflow-cards strong {
  display: block;
  color: #0d1519;
  font-size: 0.96rem;
  line-height: 1.2;
}

.workflow-cards span:not(.workflow-cards__number) {
  display: block;
  color: #26363d;
  font-size: 0.84rem;
  line-height: 1.35;
}

.home-trust-strip {
  padding: 1.22rem 0;
  border-top: 1px solid rgba(140, 195, 80, 0.18);
  border-bottom: 1px solid #e6e3dc;
  background: linear-gradient(180deg, #f3f0e8, #fbfaf7);
  box-shadow: inset 0 10px 22px rgba(6, 17, 18, 0.08);
}

.home-trust-strip__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-trust-strip__list li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 3.7rem;
  padding: 0.3rem 0.9rem;
  border-left: 1px solid #ddd8cf;
  color: #0f172a;
  font-weight: 800;
  line-height: 1.2;
}

.home-trust-strip__list li:first-child {
  border-left: 0;
}

.home-trust-strip__list li > span {
  position: relative;
  flex: 0 0 auto;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 999px;
  background: rgba(108, 165, 54, 0.16);
}

.home-trust-strip__list li > span::before {
  content: "";
  position: absolute;
  top: 0.78rem;
  left: 0.76rem;
  width: 0.85rem;
  height: 0.45rem;
  border-bottom: 2px solid #4a8d2a;
  border-left: 2px solid #4a8d2a;
  transform: rotate(-45deg);
}

@media (max-width: 1120px) {
  .home-hero__grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
    gap: clamp(1.4rem, 3vw, 2.4rem);
  }

  .phone-mockup {
    left: 0;
    width: min(335px, 55%);
  }

  .workflow-cards {
    width: min(245px, 45%);
  }
}

@media (max-width: 900px) {
  .home-hero {
    padding: 2.5rem 0 2.25rem;
  }

  .home-hero__grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .home-hero__copy {
    max-width: 760px;
  }

  .home-hero__visual {
    justify-self: center;
    max-width: 700px;
    min-height: 620px;
  }

  .home-hero__field-photo {
    right: 0;
    width: 58%;
  }

  .phone-mockup {
    left: 6%;
    width: min(330px, 54%);
  }

  .workflow-cards {
    right: 2%;
    width: min(265px, 42%);
  }

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

  .home-trust-strip__list li {
    justify-content: flex-start;
    border-left: 0;
    border-top: 1px solid #ddd8cf;
  }

  .home-trust-strip__list li:nth-child(-n + 2) {
    border-top: 0;
  }
}

@media (max-width: 680px) {
  .home-hero {
    padding: 2.1rem 0 1.8rem;
  }

  .home-hero::before {
    background-image:
      linear-gradient(180deg, rgba(3, 10, 16, 0.08) 0%, rgba(3, 10, 16, 0.2) 100%),
      url(/assets/images/home-hero-bg-stump-grinder.png);
    background-position: center, center;
  }

  .home-hero__copy {
    gap: 1rem;
  }

  .home-hero h1 {
    font-size: clamp(3.1rem, 13vw, 4.55rem);
    line-height: 0.94;
  }

  .home-hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .home-hero__primary,
  .home-hero__secondary {
    width: 100%;
  }

  .home-hero__visual {
    display: grid;
    gap: 1rem;
    min-height: 0;
    padding-top: 0.25rem;
  }

  .home-hero__field-photo {
    top: 1rem;
    right: -1rem;
    bottom: auto;
    width: 70%;
    height: 18rem;
  }

  .home-hero__field-photo::before,
  .home-hero__field-photo::after {
    display: none;
  }

  .phone-mockup {
    position: relative;
    top: auto;
    left: auto;
    justify-self: center;
    width: min(335px, 100%);
    transform: none;
  }

  .phone-mockup__screen {
    min-height: 0;
  }

  .workflow-cards {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
  }

  .workflow-cards li {
    min-height: 0;
  }

  .home-trust-strip__list {
    grid-template-columns: 1fr;
  }

  .home-trust-strip__list li,
  .home-trust-strip__list li:nth-child(-n + 2) {
    border-top: 1px solid #ddd8cf;
  }

  .home-trust-strip__list li:first-child {
    border-top: 0;
  }
}

.home-hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  margin: 0;
  padding: 0;
}

.home-hero__visual-image {
  display: block;
  width: auto;
  max-width: 100%;
  height: clamp(560px, 78vh, 760px);
  border: 0;
  filter: drop-shadow(0 28px 54px rgba(0, 0, 0, 0.42));
  object-fit: contain;
}

@media (max-width: 900px) {
  .home-hero__visual {
    max-width: min(100%, 700px);
    min-height: 0;
    padding-top: 0.35rem;
  }
}

@media (max-width: 680px) {
  .home-hero__visual {
    display: flex;
    gap: 0;
    min-height: 0;
    padding-top: 0.25rem;
  }

  .home-hero__visual-image {
    width: min(100%, 420px);
    height: auto;
  }
}

.form-message {
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
  color: var(--color-muted);
}

.form-message.is-success {
  color: var(--color-primary);
}

.form-message.is-error {
  color: var(--color-danger);
}

.form-message:empty {
  display: none;
}

/* feature row */



.feature-row {
  padding: clamp(3.5rem, 4vw, 5rem) 0;
  background: #fff;
  --color-text: #0f172a;
  --color-muted: #475569;
  color: var(--color-text);
}

.crm-faq {
  padding-top: clamp(2rem, 3vw, 2.8rem);
}

.feature-row-workflow-divider {
  padding-bottom: clamp(2.5rem, 4vw, 3.8rem);
}

.feature-row-workflow-divider .container {
  padding-bottom: clamp(1.75rem, 2.5vw, 2.2rem);
  margin-bottom: clamp(1.75rem, 2.5vw, 2.2rem);
  border-bottom: 1px solid rgba(15, 23, 42, 0.12);
}

.feature-row-estimator,
.feature-row-estimator ~ .feature-row {
  padding: clamp(7.35rem, 8.4vw, 10.5rem) 0;
}

.founder-testimonial {
  position: relative;
  padding-bottom: clamp(7.6rem, 8.8vw, 8.9rem);
}

.full-bleed {
  width: 100%;
}

.plan {
  position: relative;
  scroll-margin-top: 5.5rem;
  padding: clamp(3.5rem, 6vw, 5.6rem) 1.25rem;
  background:
    radial-gradient(circle at 7% 12%, rgba(118, 145, 87, 0.18), transparent 12rem),
    radial-gradient(circle at 93% 82%, rgba(118, 145, 87, 0.16), transparent 15rem),
    linear-gradient(180deg, #fbfaf3 0%, #f3f7ee 100%);
  color: #071421;
  overflow: hidden;
}

.plan::before,
.plan::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.plan::before {
  background:
    linear-gradient(0deg, rgba(118, 145, 87, 0.16), rgba(118, 145, 87, 0)),
    radial-gradient(ellipse at 8% 100%, rgba(118, 145, 87, 0.22), transparent 36%),
    radial-gradient(ellipse at 96% 100%, rgba(118, 145, 87, 0.18), transparent 34%);
  opacity: 0.8;
}

.plan::after {
  background:
    repeating-linear-gradient(115deg, rgba(7, 20, 33, 0.025) 0 1px, transparent 1px 18px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.48), rgba(255, 255, 255, 0));
  opacity: 0.7;
}

.plan .plan-showcase {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: clamp(1.6rem, 3vw, 2.25rem);
}

.plan .plan-showcase__heading {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  gap: 0.65rem;
  text-align: center;
}

.plan .plan-showcase__heading h2,
.plan .plan-showcase__heading h3 {
  margin: 0;
  color: #071421;
  font-size: clamp(2.35rem, 4.9vw, 4.6rem);
  font-weight: 700;
  line-height: 0.98;
}

.plan .plan-showcase__heading p {
  margin: 0;
  color: #26384d;
  font-size: clamp(1.05rem, 1.45vw, 1.25rem);
  line-height: 1.5;
}

.plan .plan-showcase__grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.84fr) minmax(0, 1.16fr);
  gap: clamp(1.35rem, 3vw, 2rem);
  align-items: start;
}

.plan .plan-showcase__details,
.plan .plan-showcase__feature-card {
  border-radius: 8px;
  box-shadow: 0 24px 48px -34px rgba(15, 23, 42, 0.48);
}

.plan .plan-showcase__details {
  position: relative;
  display: grid;
  gap: 1.2rem;
  padding: clamp(1.6rem, 3vw, 2.25rem);
  border: 1px solid rgba(15, 23, 42, 0.18);
  background:
    radial-gradient(circle at 78% 12%, rgba(122, 153, 83, 0.18), transparent 15rem),
    linear-gradient(155deg, #1c2d43 0%, #0d1a2d 72%);
  color: #ffffff;
  overflow: hidden;
}

.plan .plan-showcase__details::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-radial-gradient(circle at 86% 7%, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 13px);
  opacity: 0.62;
  pointer-events: none;
}

.plan .plan-showcase__details > * {
  position: relative;
  z-index: 1;
}

.plan .plan-showcase__badge {
  justify-self: center;
  margin: 0;
  padding: 0.45rem 1.25rem;
  border: 1px solid rgba(231, 238, 209, 0.22);
  border-radius: 999px;
  background: rgba(118, 145, 87, 0.92);
  color: #ffffff;
  font-family: "Oswald", "Arial Narrow", Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  line-height: 1;
  text-transform: uppercase;
}

.plan .plan-showcase__price {
  display: flex;
  justify-content: center;
  align-items: baseline !important;
  gap: 0.35rem;
  padding-top: 0.15rem;
}

.plan .plan-showcase__currency {
  color: #9aaf69;
  font-size: clamp(2rem, 3vw, 2.7rem);
  font-weight: 700;
  align-self: baseline !important;
  line-height: 1;
  display: inline-block;
  transform: translateY(-0.9rem);
}

.plan .plan-showcase__amount {
  color: #ffffff;
  font-size: clamp(5rem, 9vw, 7.6rem);
  font-weight: 700;
  line-height: 1;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.18);
}

.plan .plan-showcase__period {
  color: #9aaf69;
  font-size: clamp(1.25rem, 2.1vw, 1.7rem);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.plan .plan-showcase__billing {
  margin: 0;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.05rem;
  line-height: 1.55;
  text-align: center;
}

.plan .plan-showcase__callouts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.plan .plan-showcase__callouts li {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 0.55rem;
  padding: 0 0.85rem;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  color: #eef5f7;
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
}

.plan .plan-showcase__callouts li:first-child {
  border-left: 0;
}

.plan .plan-showcase__callouts li::before {
  content: "\2713";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.05rem;
  height: 2.05rem;
  border-radius: 999px;
  background: rgba(122, 153, 83, 0.88);
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 800;
}

.plan .plan-showcase__actions {
  display: grid;
  gap: 0.8rem;
  padding-top: 0.3rem;
}

.plan .plan-showcase__google-cta,
.plan .plan-showcase__email-cta {
  min-height: 3.65rem;
  width: 100%;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-size: 1.02rem;
  font-weight: 800;
}

.plan .plan-showcase__google-cta {
  gap: 0.85rem;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #ffffff;
  color: #071421 !important;
  box-shadow: 0 16px 28px -24px rgba(15, 23, 42, 0.65);
}

.plan .plan-showcase__email-cta {
  position: relative;
  border: 1px solid rgba(231, 238, 209, 0.26);
  background: #769157;
  color: #ffffff !important;
  box-shadow: 0 18px 34px -26px rgba(56, 89, 52, 0.82);
}

.plan .plan-showcase__email-cta::after {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  margin-left: 0.7rem;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.plan .plan-showcase__google-cta:hover,
.plan .plan-showcase__google-cta:focus-visible {
  border-color: rgba(118, 145, 87, 0.55);
  background: #f8faf5;
  color: #071421 !important;
}

.plan .plan-showcase__email-cta:hover,
.plan .plan-showcase__email-cta:focus-visible {
  background: #667f4a;
  color: #ffffff !important;
}

.plan .plan-showcase__google-cta:focus-visible,
.plan .plan-showcase__email-cta:focus-visible {
  outline: 3px solid rgba(118, 145, 87, 0.34);
  outline-offset: 3px;
}

.plan .plan-showcase__google-cta img {
  width: 1.25rem;
  height: 1.25rem;
}

.plan .plan-showcase__google-cta span,
.plan .plan-showcase__email-cta {
  line-height: 1.15;
}

.plan .plan-showcase__guarantee {
  margin: 0;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  font-weight: 700;
}

.plan .plan-showcase__guarantee::before {
  content: "";
  width: 0.72rem;
  height: 0.72rem;
  border: 2px solid currentColor;
  border-radius: 2px;
}

.plan .plan-showcase__feature-card {
  display: grid;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2.1rem);
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: rgba(255, 255, 255, 0.94);
  color: #122033;
}

.plan .plan-showcase__feature-card h4 {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin: 0;
  color: #071421;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  letter-spacing: 0.04em;
}

.plan .plan-showcase__feature-card h4::before {
  content: "\2713";
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 999px;
  background: #769157;
  color: #ffffff;
  font-family: Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
}

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

.plan .plan-showcase__feature-list li {
  position: relative;
  min-height: 2.55rem;
  padding: 0.7rem 0 0.7rem 2.25rem;
  border-top: 1px solid rgba(15, 23, 42, 0.1);
  color: #23344a;
  font-size: 0.96rem;
  line-height: 1.42;
}

.plan .plan-showcase__feature-list li:first-child {
  border-top: 0;
}

.plan .plan-showcase__feature-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0.76rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 999px;
  background: #769157;
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 800;
}

.plan .plan-showcase__feature-list a {
  color: inherit;
  text-decoration: none;
}

.plan .plan-showcase__feature-list a:hover,
.plan .plan-showcase__feature-list a:focus-visible {
  color: #395b35;
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

@media (max-width: 900px) {
  .plan .plan-showcase__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .plan {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .plan .plan-showcase__details,
  .plan .plan-showcase__feature-card {
    padding: 1.25rem;
  }

  .plan .plan-showcase__callouts {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }

  .plan .plan-showcase__callouts li {
    grid-template-columns: auto 1fr;
    justify-items: start;
    align-items: center;
    padding: 0;
    border-left: 0;
    text-align: left;
  }

  .plan .plan-showcase__price {
    gap: 0.25rem;
  }

  .plan .plan-showcase__amount {
    font-size: clamp(4.4rem, 22vw, 6rem);
  }

  .plan .plan-showcase__feature-card h4 {
    align-items: flex-start;
  }

  .plan .plan-showcase__feature-list li {
    padding-left: 2rem;
  }
}

.btn-success {
  background: #27a059;
  border-color: #1b6d3d;
  color: #fff;
}

.quick-steps-cta {
  background: #27a059 !important;
  border-color: #1b6d3d !important;
  color: #fff !important;
}

.payment-cta {
  background: #27a059 !important;
  border-color: #1b6d3d !important;
  color: #fff !important;
}

.btn-success:hover {
  background: #1b6d3d;
  border-color: #0f3f22;
  color: #fff;
}

.feature-pricing {
  background-color: #eef2f6;
  --color-text: #0f172a;
  --color-muted: #475569;
}

.feature-pricing .pricing-panel {
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  padding: clamp(2rem, 4vw, 3rem);
  box-shadow: 0 20px 30px -24px rgba(15, 23, 42, 0.25);
  align-items: start;
}

.feature-pricing .pricing-copy {
  max-width: 540px;
}

.feature-pricing .pricing-media {
  justify-self: end;
}

.tinted-bg{
  background: rgba(255,255,255,.95);
}

.feature-band {
  position: relative;
  background: rgba(255,255,255,.85);
  overflow: hidden;
}

.feature-band .feature-row {
  background: transparent;
}

.feature-band > * {
  position: relative;
  z-index: 1;
}

.feature-band-pattern::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(/assets/images/hero_bg.png);
  background-repeat: no-repeat;
  background-size: 520px;
  background-position: left bottom;
  opacity: 0.09;
  pointer-events: none;
}

.feature-band-pattern::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(/assets/images/hero2_bg.png);
  background-repeat: no-repeat;
  background-size: 460px;
  background-position: right top;
  opacity: 0.4;
  pointer-events: none;
}

.feature-workspace-separator {
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.feature-row-dark {
  background: linear-gradient(180deg, var(--color-surface-bg), var(--color-surface-panel-2));
  --color-text: #e2e8f0;
  --color-muted: #94a3b8;
}

.feature-row-dark p,
.feature-row-dark li,
.feature-row-dark h2,
.feature-row-dark h3 {
  color: #FFF !important;
}

.feature-row-dark-teal {
  background: linear-gradient(90deg, var(--color-light-teal), var(--color-teal-bg-dk));
  --color-text: #e2e8f0;
  --color-muted: #94a3b8;
}

.feature-row-soft {
  background: #f3f4f6;
}

.founder-intro {
  position: relative;
  padding: clamp(2.6rem, 4vw, 3.8rem) 0;
  background:
    linear-gradient(rgba(15, 23, 42, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.035) 1px, transparent 1px),
    #f5f7f4;
  background-size: 28px 28px;
  overflow: hidden;
}

.founder-intro__inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.72fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.founder-intro__copy {
  max-width: 680px;
  margin: 0;
  text-align: left;
  display: grid;
  gap: 0.85rem;
}

.founder-intro__copy h2,
.founder-intro__copy p,
.founder-proof-card p,
.founder-proof-card h3 {
  margin: 0;
}

.founder-intro__eyebrow {
  color: #1b6d3d;
  font-family: "Oswald", "Arial Narrow", Arial, sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.founder-intro__copy h2 {
  max-width: 620px;
  font-size: clamp(2rem, 3.2vw, 3rem);
  letter-spacing: 0;
}

.founder-intro__copy p {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-muted);
}

.founder-intro__cta {
  margin-top: 0.25rem;
  color: #fff !important;
}

.founder-proof-card {
  position: relative;
  display: grid;
  gap: 0.9rem;
  padding: clamp(1.35rem, 3vw, 1.85rem);
  border: 1px solid rgba(39, 160, 89, 0.32);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(39, 160, 89, 0.16), rgba(39, 160, 89, 0) 45%),
    #071421;
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.18);
  overflow: hidden;
}

.founder-proof-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
}

.founder-proof-card > * {
  position: relative;
  z-index: 1;
}

.founder-proof-card__label {
  color: #8cc350;
  font-family: "Oswald", "Arial Narrow", Arial, sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.founder-proof-card__logo {
  width: min(100%, 240px);
  padding: 0.65rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
}

.founder-proof-card__logo img {
  display: block;
  width: 100%;
  height: auto;
}

.founder-proof-card p {
  color: #ffffff;
  line-height: 1.55;
}

.founder-proof-card__body {
  color: #ffffff !important;
}

.founder-proof-card .founder-proof-card__label {
  color: #8cc350;
}

.founder-proof-card__list {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0.25rem 0 0;
  list-style: none;
}

.founder-proof-card__list li {
  position: relative;
  padding: 0.58rem 0.7rem 0.58rem 2.05rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  color: #f8fafc;
  font-weight: 700;
}

.founder-proof-card__list li::before {
  content: "\2713";
  position: absolute;
  left: 0.75rem;
  top: 50%;
  color: #27a059;
  font-weight: 800;
  transform: translateY(-50%);
}

.founder-proof-card__footer {
  padding-top: 0.15rem;
  color: #ffffff !important;
  font-size: 0.92rem;
  font-weight: 700;
}

@media (max-width: 820px) {
  .founder-intro__inner {
    grid-template-columns: 1fr;
  }

  .founder-intro__copy {
    max-width: none;
  }

  .founder-proof-card {
    width: min(100%, 520px);
  }
}

.founder-intro__video {
  max-width: 920px;
  width: 100%;
  margin: 0 auto;
}

.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 1.35rem;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: linear-gradient(180deg, rgba(10, 18, 35, 0.98), rgba(6, 17, 43, 0.98));
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.16);
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.founder-testimonial {
  padding: clamp(2.4rem, 3.2vw, 3.3rem) 0 clamp(7.6rem, 8.8vw, 8.9rem);
}

.founder-testimonial__inner {
  max-width: 860px;
  margin: 0 auto;
}

.founder-testimonial__quote {
  margin: 0 0 clamp(1.25rem, 2.5vw, 1.6rem);
  padding: clamp(1.65rem, 3vw, 2.3rem) clamp(1.4rem, 3vw, 2.35rem) clamp(1.45rem, 2.8vw, 1.95rem);
  border-radius: 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(7, 14, 30, 0.3), rgba(6, 17, 43, 0.16));
  box-shadow: 0 20px 42px rgba(6, 17, 43, 0.18);
  text-align: left;
  position: relative;
  display: grid;
  gap: 0.95rem;
  overflow: hidden;
}

.founder-testimonial__quote p,
.founder-testimonial__quote footer {
  margin: 0;
}

.founder-testimonial__quote::before {
  content: "\201C";
  position: absolute;
  left: clamp(1.4rem, 3vw, 2.35rem);
  top: 0.5rem;
  font-size: 100px;
  line-height: 100px;
  color: rgba(255, 255, 255, 0.12);
  pointer-events: none;
}

.founder-testimonial__quote p {
  position: relative;
  z-index: 1;
  padding-top: 1.1rem;
  max-width: none;
  font-size: clamp(1.45rem, 2.45vw, 1.95rem);
  line-height: 1.55;
  font-weight: 600;
  color: #ffffff;
}

.founder-testimonial__quote footer {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.98rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.founder-testimonial__quote footer::before {
  content: "";
  width: 2.25rem;
  height: 1px;
  background: rgba(255, 255, 255, 0.32);
}

.bg-yard {
   background:
    linear-gradient(
      rgba(255, 255, 255, 0.85),
      rgba(255, 255, 255, 0.85)
    ),
    url(/assets/images/tree-service-software-bg-yard-01.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}

.feature-row-reverse .feature-grid {
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
}

.feature-row-reverse .feature-media {
  justify-self: start;
}

.feature-media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  border: none;
}

.feature-media {
  justify-self: end;
  width: clamp(260px, 32vw, 420px);
}

.feature-copy h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  letter-spacing: -0.01em;
}

.feature-copy p {
  margin: 0 0 1rem;
  font-size: 1rem;
}

.feature-row p {
  color: var(--color-text);
}

.hero-action .hero-started-label {
  color: #ff8a00;
}

.feature-intro {
  max-width: 1420px;
  display: grid;
  gap: 1rem;
}

.feature-intro h2 {
  margin: 0;
  font-size: clamp(1.9rem, 3vw, 2.7rem);
}

.feature-intro p {
  margin: 0;
}

.feature-row-tight-bottom {
  padding-bottom: clamp(0.75rem, 1.5vw, 1.25rem);
}

.fieldwork-separator {
  position: relative;
}

.fieldwork-separator .container {
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  padding-bottom: 0.75rem;
  margin-bottom: 0.75rem;
}

.feature-row-tight-top {
  padding-top: clamp(0.75rem, 1.5vw, 1.25rem);
}

.feature-compare {
  max-width: 820px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.5rem, 4vw, 3rem);
}

.feature-compare h3 {
  margin: 0 0 0.75rem;
  font-size: 1.05rem;
  color: var(--color-text);
}

.feature-compare ul {
  margin: 0;
  padding-left: 1.25rem;
  color: var(--color-text);
  display: grid;
  gap: 0.5rem;
}

.feature-compare p {
  margin: 0;
  color: var(--color-text);
}

.feature-compare li {
  margin: 0;
}

.compare-grid {
  gap: 0;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

.compare-grid > div {
  padding: 1.5rem;
}

.compare-grid > div + div {
  border-left: 1px solid #e2e8f0;
}

.feature-points {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
  color: var(--color-text);
  display: grid;
  gap: 0.5rem;
}

.feature-points li {
  margin: 0;
}

.feature-close {
  margin: 0;
  color: var(--color-muted);
}

.feature-copy p:last-child {
  margin-bottom: 0;
  color: var(--color-muted);
}

/* pricing card */

.pricing-card {
  width: min(100%, 380px);
  padding: 1.85rem;
  display: grid;
  gap: 1rem;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #ffffff;
  box-shadow: 0 16px 26px -22px rgba(15, 23, 42, 0.35);
}

.pricing-card__eyebrow {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: rgba(15, 23, 42, 0.04);
  color: #1f2937;
  border: 1px solid rgba(255, 138, 0, 0.25);
}

.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  line-height: 1;
  padding: 0.6rem 0.75rem;
  border-radius: 10px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #f8fafc;
  box-shadow: inset 3px 0 0 rgba(255, 138, 0, 0.3);
}

.pricing-card__currency {
  font-size: 1.35rem;
  font-weight: 600;
  color: #64748b;
}

.pricing-card__amount {
  font-size: clamp(2.6rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1;
  color: #0f172a;
}

.pricing-card__period {
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #64748b;
}

.pricing-card__billing,
.pricing-card__note {
  margin: 0;
  color: #475569;
  font-size: 0.9rem;
}

.pricing-card .feature-points {
  margin: 0;
  list-style: none;
  padding-left: 0;
  gap: 0.65rem;
}

.pricing-card .feature-points li {
  position: relative;
  padding-left: 1.6rem;
  color: #0f172a;
  font-weight: 600;
}

.pricing-card .feature-points li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.05rem;
  color: var(--color-primary);
}

.pricing-card .btn {
  width: 100%;
  justify-content: center;
  font-size: 1.05rem;
  font-weight: 600;
  padding: 0.9rem 1.15rem;
  background: #f8fafc;
  border-color: #94a3b8;
  color: #0f172a;
  box-shadow: none;
}

.pricing-card .btn:hover {
  background: #e2e8f0;
  border-color: #0f172a;
  color: #0f172a;
}

.pricing-card__note {
  text-align: center;
}

/* crm page */

.crm-hero {
  position: relative;
  overflow: hidden;
}

.crm-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(/assets/images/hero_bg.png);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 50%;
  opacity: 0.4;
  transform: scaleX(-1);
  pointer-events: none;
}

.crm-hero > .container {
  position: relative;
  z-index: 1;
}

.crm-hero .hero-copy {
  display: grid;
  gap: 1rem;
}

.about-hero .hero-copy {
  align-self: center;
}

.about-hero .hero-grid {
  align-items: center;
  grid-template-areas: "copy action";
}

.crm-hero h1 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  letter-spacing: -0.02em;
}

.crm-hero .hero-action {
  width: min(100%, 520px);
  justify-self: end;
  padding: 0;
  background: none;
  border: none;
  box-shadow: none;
  display:flex;
  
}

.crm-hero .hero-action img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
}

.crm-hero-caption {
  margin: 0.75rem 0 0;
  text-align: center;
  color: var(--color-muted);
  font-size: 0.95rem;
}

.about-hero-card {
  padding: 0.75rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #141f36, #0f172a);
  box-shadow: 0 12px 26px rgba(2, 6, 23, 0.35);
  border: 1px solid rgba(148, 163, 184, 0.2);
}

.about-hero-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
}

.about-problem-list {
  list-style: none;
  padding-left: 1.25rem;
}

.about-problem-list li {
  position: relative;
}

.about-problem-list li::before {
  content: "–";
  position: absolute;
  left: -1.25rem;
  color: var(--color-muted);
  font-weight: 600;
}

.about-cta-card {
  margin-top: 1.5rem;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.7), rgba(12, 20, 40, 0.9));
  border: 1px solid rgba(148, 163, 184, 0.2);
  box-shadow: 0 12px 28px rgba(2, 6, 23, 0.35);
}

.about-cta .feature-media {
  width: 100%;
  max-width: 360px;
  justify-self: end;
}

.about-cta .about-cta-card {
  margin-top: 0;
  width: 100%;
}

.about-cta .hero-form {
  width: 100%;
}

.about-cta .hero-pricing,
.about-cta .hero-note {
  color: var(--color-muted);
}

.about-cta .feature-grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, 360px);
}

@media (max-width: 960px) {
  .about-cta .feature-grid {
    grid-template-columns: 1fr;
  }

  .about-cta .feature-media {
    max-width: 100%;
    justify-self: center;
  }
}

.crm-card-grid {
  display: grid;
  gap: clamp(1rem, 3vw, 1.75rem);
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
}

.crm-card-grid--three {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

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

.crm-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.06);
}

.crm-card__icon {
  font-size: 1.6rem;
  margin-bottom: 0.6rem;
  color: var(--color-primary);
  display: inline-flex;
}

.crm-card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.1rem;
}

.crm-card p {
  margin: 0 0 0.75rem;
}

.crm-card p:last-child {
  margin-bottom: 0;
}

.crm-card .feature-points {
  margin-bottom: 0.75rem;
}

.crm-soft {
  background: #f8fafc;
}

.crm-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.crm-who {
  max-width: none;
}

.crm-reasons-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 3vw, 2rem);
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
}

.crm-reason {
  padding: 1.5rem;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: var(--radius-md);
  background: rgba(15, 23, 42, 0.4);
}

.crm-reason h3 {
  margin: 0 0 0.75rem;
}

.faq-list {
  margin-top: 1.5rem;
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  background: #fff;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
}

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

.faq-item summary h3 {
  margin: 0;
  font-size: 1.1rem;
}

.faq-item p {
  margin: 0.75rem 0 0;
}

.faq-item[open] {
  border-color: #cbd5f5;
  background: #f8fafc;
}

.faq-list--minimal {
  margin-top: 0.75rem;
  gap: 0;
}

.faq-list--minimal .faq-item {
  border: none;
  border-bottom: 1px solid var(--color-light-teal);
  border-radius: 0;
  padding: 0.75rem 0;
  background: transparent;
}

.faq-list--minimal .faq-item summary {
  cursor: pointer;
  list-style: none;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-right: 1.3rem;
}

.faq-list--minimal .faq-item summary::after {
  content: "";
  flex-shrink: 0;
  width: 0.6rem;
  height: 0.6rem;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  color: #ffffff;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
  margin-left: auto;
  opacity: 1;
}

.faq-list--minimal .faq-item[open] {
  border-bottom-color: var(--color-light-teal);
  background: transparent;
}

.faq-list--minimal .faq-item[open] summary::after {
  transform: rotate(-45deg);
}

.not-found-cta,
.not-found-cta:visited,
.not-found-cta:hover,
.not-found-cta:active,
.not-found-cta:focus {
  color: #ffffff !important;
}

.not-found-link,
.not-found-link:visited,
.not-found-link:hover,
.not-found-link:active,
.not-found-link:focus {
  color: #ffffff !important;
}

.cta-meta {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.95rem;
}

/* final cta */

.section-cta-final {
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  background: linear-gradient(180deg, #0b1223, #08101f);
}

.section-cta-final__inner {
  max-width: 680px;
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 2.75rem);
  text-align: center;
  display: grid;
  gap: 1rem;
}

.section-cta-final__inner h2,
.section-cta-final__inner p {
  margin: 0;
}

.section-cta-final__inner h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
}

.section-cta-final__subtitle {
  color: var(--color-text);
}

.section-cta-final__note,
.section-cta-final__fine {
  color: var(--color-muted);
}

.section-cta-final__fine {
  font-size: 0.95rem;
}

/* lightbox */

.lightbox-link {
  display: inline-flex;
  text-decoration: none;
}

.lightbox-padded {
  background: #fff;
  padding: 10px;
  border-radius: var(--radius-lg);
}

.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 1000;
}

.lightbox:target {
  display: flex;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, 0.7);
}

.lightbox-content {
  position: relative;
  z-index: 1;
  max-width: min(1100px, 92vw);
  max-height: 86vh;
}

.lightbox-content img {
  width: 100%;
  height: auto;
  max-height: 86vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 18px 36px rgba(2, 6, 23, 0.4);
}

.lightbox-close {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #fff;
  color: #0f172a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.1rem;
  box-shadow: 0 6px 16px rgba(2, 6, 23, 0.25);
}

@media (max-width: 900px) {
  :root {
    --header-anchor-offset: 4.5rem;
  }

  .hero-grid {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .hero-subnav {
    margin-top: 0;
    gap: 0.45rem;
  }

  .hero-subnav__link {
    font-size: 0.78rem;
    padding: 0.3rem 0.82rem;
  }

  .about-hero .hero-grid {
    grid-template-areas:
      "copy"
      "action";
  }

  .hero-copy,
  .hero-subheadline,
  .hero-qualifier {
    max-width: none;
  }

  .crm-hero .hero-action {
    width: min(100%, 360px);
    justify-self: center;
  }

  .site-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: min(280px, 80vw);
    height: 100vh;
    padding: 4.5rem 1.5rem 1.5rem;
    flex-direction: column;
    align-items: flex-start;
    background: #0b1223;
    transform: translateX(-100%);
    transition: transform 0.25s ease;
    box-shadow: 0 18px 40px rgba(2, 6, 23, 0.4);
    z-index: 300;
  }

  .site-nav__group {
    width: 100%;
  }

  .site-nav__group summary {
    width: 100%;
  }

  .site-nav__submenu {
    position: static;
    min-width: 0;
    margin-top: 0.65rem;
    padding: 0 0 0 1rem;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .site-nav__actions {
    width: 100%;
    margin-left: 0;
    padding: 0.75rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .site-nav__login {
    padding: 0;
  }

  .site-nav__cta {
    width: 100%;
  }

  body.nav-open .site-nav {
    transform: translateX(0);
  }

  .nav-close {
    display: inline-flex;
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    background: transparent;
    color: var(--color-text);
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(2, 6, 23, 0.6);
    z-index: 250;
  }

  body.nav-open .nav-backdrop {
    display: block;
  }

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

  .feature-grid .feature-media {
    order: 1;
  }

  .feature-grid .feature-copy {
    order: 2;
  }

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

  .feature-media {
    width: min(100%, 360px);
    justify-self: center;
  }

  .feature-row-reverse .feature-media {
    justify-self: center;
  }

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

  .compare-grid > div + div {
    border-left: 0;
    border-top: 1px solid #e2e8f0;
  }

  .crm-split {
    grid-template-columns: 1fr;
  }

  .crm-card-grid--two,
  .crm-card-grid--three {
    grid-template-columns: 1fr;
  }

  .crm-reasons-grid {
    grid-template-columns: 1fr;
  }

.about-cta .feature-copy {
  order: 1;
}

  .about-cta .feature-media {
    order: 2;
  }

  footer .container.footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  footer .footer-left {
    align-items: center;
  }

  footer .footer-links {
    margin-left: 0;
    text-align: center;
  }

  footer .container.footer-inner .footer-links {
    margin-left: 0;
    text-align: center;
    width: 100%;
  }
}

/* forms */

form {
  max-width: 900px;
  margin: 0;
  display: grid;
  gap: var(--space-100);
}

label {
  display: block;
  margin: 6px 0 6px 6px;
  font-weight: 400;
  font-size: 0.85rem;
  color: var(--color-text);
  line-height: 1.2;

  
}

input:not([type="checkbox"]),
select,
textarea {
  min-width: 100px;
    box-shadow: none;
    font-size: 14px;
    line-height: 1.4;
    height: 36px;
    background-color: rgb(var(--color-bright-green-rgb) / 0.3);
    background-color: rgba(195, 248, 5, .3);
    width: 100%;
    color: #fff;
    outline: 0px;
    border-style: none none solid;
    border-bottom: 1px solid var(--color-light-teal);
    border-radius: 4px;
    padding: 6px 2px 2px 6px;
    transition: border-color 0.2s;
}

select option {
    border: none;
    background-color: #1e3a3f;
    color: #fff;
}

input:not([type="checkbox"]):focus,
select:focus,
textarea:focus {
  border-bottom-color: var(--color-primary);
}

input[type="file"] {
  padding: 0.35rem 0.75rem;
  background: #0a1224;
  border: 1px solid #243144;
  border-radius: var(--radius-sm);
  cursor: pointer;
  color: var(--color-text);
  height: auto;
}

input[type="file"]::file-selector-button {
  background: var(--color-surface-bg);
  border: 1px solid #2a384f;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  color: var(--color-text);
  padding: 0.4rem 0.8rem;
  margin-right: 0.75rem;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}

input[type="file"]::file-selector-button:hover {
  background: #111a2f;
  border-color: #364660;
  color: #06112b;
}

select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 30px;
  background-image: linear-gradient(45deg, transparent 50%, var(--color-text) 50%), linear-gradient(135deg, var(--color-text) 50%, transparent 50%);
  background-position: calc(100% - 18px) 45%, calc(100% - 12px) 45%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

select:focus {
  border-bottom-color: var(--color-primary-strong);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.input-wrapper {
  position: relative;
  margin: 0 0 14px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.input-wrapper .hint {
  font-size: 0.8rem;
  color: rgba(255, 98, 107, 0.6);
  margin: 4px 0 0 6px;
}

.field-error {
  margin: 4px 0 0 6px;
  font-size: 0.85rem;
  color: var(--color-danger);
}

@media (max-width: 600px) {
  form {
    gap: var(--space-200);
  }

  footer .container.footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  footer .footer-left {
    align-items: center;
  }

  footer .footer-links {
    margin-left: 0;
    text-align: center;
  }
}

footer .container{
  padding: 20px 0;
}

footer .container.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

footer .footer-left {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 0.35rem;
}

footer .footer-logo {
  display: inline-flex;
  align-items: center;
}

footer .footer-logo img {
  display: block;
  height: 40px;
  width: auto;
  margin: 0 20px 0 0;
}

/* stump estimator */

.stump-estimator-container{
  padding: clamp(1.5rem, 2.4vw, 4rem) 0;
  background-color: var(--color-estimator-bg);
}

.stump-estimator-card {
  margin-top: 2rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .04);
      border: 1px solid #27565d;
   background: #1e3a3f;
  --color-text: #e2e8f0;
  --color-muted: #94a3b8;
}

.stump-top-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 400px);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: start;
}

.stump-top-copy h1 {
  margin: 0 0 0.75rem;
  color: #FFF;
}

.stump-hero-image {
  display: block;
  width: 100%;
  max-width: 300px;
  height: auto;
  margin: 0 0 0.75rem;
}

.stump-top-copy p {
  margin: 0 0 0.75rem;
  color: #FFF;
}

.stump-estimator {
  max-width: 100%;
}

.stump-estimator .form-section {
 
  margin-bottom: 1.5rem;
}

.stump-estimator .form-section h2 {
  margin: 0 0 0.75rem;
  font-size: 1.3rem;
}

.form-section.form-section-tight {
  margin-bottom: 0;
}

.stump-helper {
  margin: 0 0 1rem;
  color: var(--color-muted);
}

.stump-input-note {
  margin: 4px 0 6px 6px;
  font-size: 0.85rem;
  color: var(--color-muted);
}

.stump-input-note a.stump-input-link {
  color: var(--color-bright-green);
}

.stump-input-note a.stump-input-link:hover {
  color: var(--color-bright-green);
}

.form-grid {
  display: grid;
  gap: 1rem;
}

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

.form-grid.three-col {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stump-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 1rem 0;
}

.stump-actions__right {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.stump-total {
  font-weight: 700;
  color: var(--color-text);
}

.stump-row {
  margin: 1rem 0;
  position: relative;
  border: 1px solid var(--color-primary);
  background: rgba(var(--color-bright-green-rgb) / 0.15);
  border-radius: var(--radius-md);
  padding: 1rem;
}

.stump-row .stump-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-surface-border);
  background: rgba(var(--color-white-rgb) / 0.7);
  color: #0f172a;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.stump-row .stump-row-body {
  margin-top: 0.75rem;
}

.stump-row .stump-header-subtotal,
.stump-row .stump-index {
  font-weight: 600;
}

.stump-row.is-collapsed {
  padding: 0.75rem;
}

.stump-row.is-collapsed .stump-row-body {
  display: none;
}

.stump-remove-btn {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 1px solid var(--color-danger);
  background: #fff;
  color: var(--color-danger);
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.stump-subtotal {
  font-weight: 600;
  color: var(--color-text);
}

.stump-crm-cta {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.25rem;
  padding: clamp(1.25rem, 2vw, 1.75rem);
  border: 1px solid rgba(255, 138, 0, 0.5);
  border-left: 4px solid var(--color-accent);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(6, 17, 43, 0.98), rgba(8, 21, 24, 0.98));
  box-shadow: 0 16px 36px rgba(2, 6, 23, 0.25);
  color: var(--color-text);
}

.stump-crm-cta h2 {
  margin: 0;
  color: #fff;
}

.stump-crm-cta p {
  max-width: 760px;
  margin: 0;
  color: #e2e8f0;
}

.stump-crm-cta .btn {
  justify-self: start;
  color: #FFF;
}

/* machine operating cost calculator */
.machine-cost-form .machine-cost-row {
    align-items: start;
    margin: 20px 0;
    background-color: rgba(255, 255, 255, .1);
    padding: 20px 20px 10px 20px;
    border-radius: var(--radius-sm);
}

.machine-cost-form .cost-output {
  background: rgba(var(--color-white-rgb) / 0.08);
  height: 36px;
  padding: 0 1rem;
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: row;
  gap: 0.35rem;
  align-items: center;
}

.machine-cost-form .cost-output span {
  font-size: 0.85rem;
  color: var(--color-muted);
}

.machine-cost-summary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.machine-cost-summary .summary-card {
  border: 1px solid var(--color-surface-border);
  background: rgba(var(--color-white-rgb) / 0.08);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.machine-cost-summary .summary-card strong {
  font-size: 1.1rem;
  color: var(--color-text);
}

.machine-cost-summary .summary-total {
  background: rgba(var(--color-bright-green-rgb) / 0.2);
  border-color: var(--color-primary);
}

.machine-section-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.6rem 0.9rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-surface-border);
  background: rgba(var(--color-white-rgb) / 0.75);
  color: #0f172a;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.machine-section-toggle::after {
  content: '';
  width: 0.45rem;
  height: 0.45rem;
  border-right: 2px solid #0f172a;
  border-bottom: 2px solid #0f172a;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
  margin-left: auto;
}

.machine-section.is-collapsed .machine-section-toggle::after {
  transform: rotate(-45deg);
}

.machine-section.is-collapsed .machine-section-body {
  display: none;
}

.machine-section .machine-section-body {
  margin-top: 0.75rem;
}



@media (max-width: 600px) {
  .stump-top-grid {
    grid-template-columns: 1fr;
  }

  .form-grid.two-col,
  .form-grid.three-col {
    gap: 0rem;
    grid-template-columns: 1fr;
  }
}

footer .footer-links {
  margin-left: auto;
  text-align: right;
}


footer p{
  font-size: .85em;
  color: var(--color-text-muted);
  margin:10px 0 0 0;
  padding: 0;
}

/* legal */

.legal {
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 5.5rem) 0;
  padding-top: clamp(1.5rem, 2vw, 3rem);
}

.legal-header {
  margin: 0 0 2rem;
}

.legal h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(2rem, 3vw, 2.75rem);
  letter-spacing: -0.01em;
}

.legal-intro {
  margin: 0;
  color: var(--color-muted);
  font-size: 1rem;
}

.legal h2 {
  margin: 2rem 0 0.75rem;
  font-size: 1.15rem;
  color: var(--color-text);
}

.legal p {
  margin: 0 0 1rem;
  color: var(--color-text);
}

.legal ul {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
  color: var(--color-text);
  display: grid;
  gap: 0.5rem;
}

.legal li {
  margin: 0;
}

.legal a {
  color: var(--color-primary);
}

.hero-points {
  list-style: none;
  margin: 0.75rem 0 0;
  padding: 0;
}

.hero-points li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
}

.hero-points li::before {
  content: "\2713";
  font-weight: 700;
  margin-top: 0.05rem;
  color: var(--color-primary);
}
.section-reviews {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background:
    linear-gradient(
      rgb(var(--color-white-rgb) / 0.95),
      rgb(var(--color-white-rgb) / 0.95)
    ),
    url(/assets/images/tree-service-software-5-star-rating-hd.png);
}

.who-list {
  list-style: none;
  margin: 0;       /* same base margins */
  padding: 0;      /* same base padding */
}

.who-list li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.35rem;   /* shared spacing */
}

/* Built for: green checkmark as bullet */

.who-list--for li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0.05rem;
  font-weight: 700;
  color: var(--color-primary);
}

/* Not built for: neutral dash as bullet */

.who-list--not li::before {
  content: "–";
  position: absolute;
  left: 0;
  top: 0.05rem;
  font-weight: 700;
  color: var(--color-muted);
}
.crm-compare {
  margin: 1.5rem;
  padding: 1.25rem 1.5rem;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.03); /* very light on light bg */
  border: 1px solid rgba(148, 163, 184, 0.4);
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  flex-wrap: wrap;
}

.crm-compare__column {
  flex: 1 1 220px;
}

.crm-compare__title {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 0.75rem;
  color: #0f172a;
}

body.dark .crm-compare__title {
  color: var(--color-text);
}

.crm-compare__column--generic .crm-compare__title {
  opacity: 0.75;
}

.crm-compare__column--tss .crm-compare__title {
  color: var(--color-primary-strong);
}

.crm-compare__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.crm-compare__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.9rem;
  line-height: 1.4;
  margin-bottom: 0.4rem;
  color: #0f172a;
}

body.dark .crm-compare__list li {
  color: var(--color-text);
}

/* Base icon circle */

.crm-compare__icon {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
}

/* Generic CRM icons – muted */

.crm-compare__column--generic .crm-compare__icon {
  background: rgba(148, 163, 184, 0.18);
  color: rgba(51, 65, 85, 0.9);
}

.crm-compare__icon--pipeline::before {
  content: "↗";
}

.crm-compare__icon--money::before {
  content: "$";
}

.crm-compare__icon--headset::before {
  content: "☎";
}

.crm-compare__icon--settings::before {
  content: "⚙";
}

/* Tree Service CRM icons – green / active */

.crm-compare__column--tss .crm-compare__icon {
  background: rgba(34, 197, 94, 0.12);
  color: var(--color-primary-strong);
}

.crm-compare__icon--customer::before {
  content: "👤";
}

.crm-compare__icon--estimate::before {
  content: "\2713";
}

.crm-compare__icon--schedule::before {
  content: "📅";
}

.crm-compare__icon--invoice::before {
  content: "📄";
}

.muted-bg{
  background-color: rgba(255, 255, 255, .8);
}

/* Responsive */

@media (max-width: 640px) {
  .crm-compare {
    padding: 1rem 1.1rem;
  }

  .hero-trust {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .hero-qualifier-link{
    margin:0px auto;
  }
}
/* end */
