:root {
  --black: #000000;
  --ink: #101820;
  --muted: #5e6873;
  --white: #ffffff;
  --paper: #f5f6f4;
  --panel: #ffffff;
  --line: #d7d9d6;
  --green: #86bc25;
  --green-dark: #5f8f12;
  --shadow: 0 18px 44px rgba(6, 30, 41, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px clamp(20px, 5vw, 72px);
  color: var(--white);
  background: var(--black);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.site-header.scrolled,
.site-header.menu-open {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

.brand,
.site-nav {
  display: flex;
  align-items: center;
}

.brand {
  flex: 0 0 auto;
  width: 172px;
  height: 104px;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}

.brand::after {
  display: none;
}

.brand img {
  width: 126%;
  height: 126%;
  max-height: none;
  object-fit: contain;
  object-position: center 55%;
  transform: translate(-10%, -9%);
}

.brand-mark {
  display: none;
}

.brand span:last-child {
  display: none;
}

.site-nav {
  gap: 4px;
}

.header-nav-row {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.site-nav a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  border-bottom: 3px solid transparent;
  padding: 0 14px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.94rem;
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  border-color: var(--green);
  color: var(--white);
  outline: none;
}

.nav-cta {
  margin-left: 8px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-bottom-width: 1px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: var(--white);
  background: transparent;
}

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

.hero {
  position: relative;
  min-height: 76vh;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  padding: 150px clamp(20px, 5vw, 72px) 64px;
  color: var(--white);
  background: var(--black);
}

.hero::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 30, 41, 0.98), rgba(6, 30, 41, 0.84) 52%, rgba(6, 30, 41, 0.62)),
    url("https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&w=2200&q=82") center / cover;
  content: "";
}

.hero::after {
  position: absolute;
  inset: 0;
  background: rgba(6, 30, 41, 0.34);
  content: "";
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  padding-top: 14px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.66fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.hero-text {
  min-width: 0;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  margin: 0 0 26px;
  border-left: 4px solid var(--green);
  padding: 0 16px;
  color: rgba(255, 255, 255, 0.94);
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 900px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 5.1vw, 5.55rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h1 span {
  color: var(--green);
}

h2 {
  max-width: 880px;
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.9rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
  line-height: 1.15;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.08rem, 1.8vw, 1.34rem);
  line-height: 1.55;
}

.hero-visual {
  position: relative;
  min-width: 0;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(0, 0, 0, 0.36);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.38);
}

.hero-visual::before {
  position: absolute;
  inset: -18px;
  border: 1px solid rgba(134, 188, 37, 0.28);
  content: "";
}

.hero-visual img {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.hero-cards,
.fit-list {
  display: grid;
  gap: 10px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.hero-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 920px;
  gap: 1px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-cards article {
  min-height: 150px;
  padding: 24px;
  background: rgba(6, 30, 41, 0.84);
}

.hero-icon {
  display: inline-grid;
  width: 46px;
  height: 42px;
  place-items: center;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--green);
  font-size: 0.84rem;
  font-weight: 900;
}

.hero-cards h3 {
  margin: 0 0 9px;
  color: var(--white);
  font-size: 1.08rem;
}

.hero-cards p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.95rem;
  line-height: 1.5;
}

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

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--green);
  border-radius: 0;
  padding: 0 22px;
  color: var(--black);
  background: var(--green);
  font-weight: 800;
  text-transform: none;
  cursor: pointer;
}

.button:hover,
.button:focus-visible {
  background: var(--white);
  border-color: var(--white);
  outline: none;
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.48);
  background: transparent;
}

.button.secondary:hover,
.button.secondary:focus-visible {
  color: var(--black);
  background: var(--white);
}

.logo-band {
  padding: 36px clamp(20px, 5vw, 72px);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.logo-band p {
  max-width: 900px;
  margin: 0 auto 22px;
  color: var(--muted);
  font-weight: 700;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.logo-grid span {
  padding: 17px 10px;
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
}

.media-section {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(360px, 0.92fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: center;
  padding: clamp(68px, 8vw, 112px) clamp(20px, 5vw, 72px);
  color: var(--white);
  background: var(--black);
}

.media-copy p:not(.eyebrow) {
  max-width: 560px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.06rem;
  line-height: 1.7;
}

.media-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.media-card {
  min-width: 0;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
}

.media-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.media-card-animated img {
  background: #050505;
  object-fit: cover;
}

.media-card figcaption {
  min-height: 62px;
  padding: 16px;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 800;
  line-height: 1.45;
}

.dashboard-section {
  padding: clamp(68px, 8vw, 112px) clamp(20px, 5vw, 72px);
  color: var(--white);
  background:
    radial-gradient(circle at 18% 18%, rgba(134, 188, 37, 0.18), transparent 28%),
    linear-gradient(135deg, #000 0%, #101820 54%, #000 100%);
}

.dashboard-heading {
  display: grid;
  grid-template-columns: minmax(220px, 0.52fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: end;
  margin-bottom: 34px;
}

.dashboard-heading h2 {
  max-width: 900px;
}

.dashboard-heading p:last-child {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

.dashboard-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.75fr) minmax(260px, 0.7fr);
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.16);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
}

.metric-grid,
.chart-panel,
.funnel-panel {
  background: rgba(0, 0, 0, 0.72);
}

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

.metric-grid article {
  display: grid;
  min-height: 150px;
  align-content: space-between;
  padding: 24px;
  background: rgba(0, 0, 0, 0.76);
}

.metric-grid span,
.chart-header span {
  color: rgba(255, 255, 255, 0.66);
  font-weight: 800;
}

.metric-grid strong {
  color: var(--green);
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  line-height: 1;
}

.metric-grid small {
  color: rgba(255, 255, 255, 0.58);
  font-weight: 700;
}

.chart-panel,
.funnel-panel {
  display: grid;
  gap: 28px;
  align-content: space-between;
  padding: 24px;
}

.chart-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

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

.bar-chart {
  display: grid;
  grid-template-columns: repeat(6, minmax(18px, 1fr));
  gap: 12px;
  align-items: end;
  min-height: 230px;
}

.bar-chart span {
  display: block;
  height: var(--height);
  min-height: 34px;
  background: linear-gradient(180deg, var(--green), rgba(134, 188, 37, 0.28));
  animation: riseBars 2.8s ease-in-out infinite alternate;
}

.bar-chart span:nth-child(2n) {
  animation-delay: 0.32s;
}

.bar-chart span:nth-child(3n) {
  animation-delay: 0.54s;
}

.funnel {
  display: grid;
  gap: 14px;
}

.funnel span {
  display: block;
  min-height: 46px;
  padding: 14px 18px;
  color: var(--black);
  background: var(--white);
  font-weight: 900;
  clip-path: polygon(0 0, 100% 0, calc(100% - 22px) 100%, 22px 100%);
}

.funnel span:nth-child(2) {
  margin-inline: 18px;
  background: #d9efbd;
}

.funnel span:nth-child(3) {
  margin-inline: 36px;
  background: #a9d85d;
}

.funnel span:nth-child(4) {
  margin-inline: 58px;
  background: var(--green);
}

@keyframes riseBars {
  from {
    transform: scaleY(0.82);
    filter: brightness(0.9);
  }

  to {
    transform: scaleY(1);
    filter: brightness(1.15);
  }
}

.intelligence-section,
.industry-section {
  background: var(--white);
}

.score-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 1100px;
  margin-left: auto;
  border: 1px solid var(--line);
  background: var(--line);
}

.score-card {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 4vw, 36px);
  background: var(--white);
}

.score-card::before {
  position: absolute;
  inset: auto 0 0;
  height: 5px;
  background: var(--green);
  content: "";
}

.score-card.hot::before {
  background: #86bc25;
}

.score-card.warm::before {
  background: #c9e66c;
}

.score-card.cold::before {
  background: #9aa3a9;
}

.score-card span {
  color: var(--muted);
  font-weight: 900;
  text-transform: uppercase;
}

.score-card strong {
  display: block;
  margin: 20px 0 12px;
  color: var(--ink);
  font-size: clamp(3rem, 7vw, 5rem);
  line-height: 1;
}

.score-card p,
.roi-copy p,
.before-after-copy p,
.crm-copy p {
  color: var(--muted);
  line-height: 1.7;
}

.pipeline-journey {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  margin-top: 34px;
}

.pipeline-journey span {
  position: relative;
  min-height: 54px;
  padding: 18px 14px;
  color: var(--black);
  background: var(--green);
  font-weight: 900;
  text-align: center;
}

.pipeline-journey span::after {
  position: absolute;
  top: 50%;
  right: -13px;
  z-index: 1;
  color: var(--green);
  content: ">";
  transform: translateY(-50%);
}

.pipeline-journey span:last-child::after {
  display: none;
}

.roi-section,
.before-after-section,
.crm-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: start;
  padding: clamp(68px, 8vw, 112px) clamp(20px, 5vw, 72px);
}

.roi-section,
.crm-section {
  color: var(--white);
  background: var(--black);
}

.roi-copy p,
.crm-copy p {
  max-width: 560px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.72);
}

.roi-calculator {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  border-top: 5px solid var(--green);
  background: var(--white);
  box-shadow: var(--shadow);
}

.roi-result {
  grid-column: 1 / -1;
  display: grid;
  gap: 8px;
  margin-top: 8px;
  padding: 22px;
  color: var(--white);
  background: var(--black);
}

.roi-result span {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.roi-result output {
  color: var(--green);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1;
}

.industry-tabs {
  display: grid;
  gap: 1px;
  max-width: 1080px;
  margin-left: auto;
  border: 1px solid var(--line);
  background: var(--line);
}

.tab-list {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
}

.tab-list button {
  min-height: 52px;
  border: 0;
  color: var(--ink);
  background: var(--white);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.tab-list button.active,
.tab-list button:hover,
.tab-list button:focus-visible {
  color: var(--black);
  background: var(--green);
  outline: none;
}

.tab-panel {
  padding: clamp(24px, 4vw, 38px);
  background: var(--white);
}

.tab-panel p,
.tab-panel li {
  color: var(--muted);
  line-height: 1.7;
}

.before-after-section {
  color: var(--ink);
  background: var(--paper);
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.comparison-grid article {
  padding: clamp(24px, 4vw, 36px);
  background: var(--white);
}

.comparison-grid article:last-child {
  color: var(--white);
  background: var(--black);
}

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

.comparison-grid li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  font-weight: 800;
}

.comparison-grid article:last-child li {
  color: rgba(255, 255, 255, 0.82);
}

.comparison-grid li::before {
  position: absolute;
  left: 0;
  color: var(--green);
  content: ">";
}

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

.specialist-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.16);
}

.specialist-flow article {
  display: grid;
  min-height: 250px;
  align-content: start;
  gap: 14px;
  padding: clamp(22px, 3vw, 30px);
  background: rgba(255, 255, 255, 0.06);
}

.specialist-flow span {
  display: inline-grid;
  width: 46px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(134, 188, 37, 0.62);
  color: var(--green);
  font-weight: 900;
}

.specialist-flow h3 {
  margin: 4px 0 0;
  color: var(--white);
}

.specialist-flow p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
}

.specialist-flow article:nth-child(even) {
  background: rgba(134, 188, 37, 0.12);
}

@keyframes floatCards {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-8px);
  }
}

.case-study-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.16);
}

.case-study-grid article {
  padding: clamp(22px, 4vw, 32px);
  background: rgba(255, 255, 255, 0.06);
}

.case-study-grid strong {
  display: block;
  color: var(--white);
  font-size: 1.15rem;
  line-height: 1.3;
}

.case-study-grid p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

.trust-section {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  padding: 0 clamp(20px, 5vw, 72px) clamp(68px, 8vw, 112px);
  background: var(--black);
}

.trust-section span {
  min-height: 76px;
  display: grid;
  place-items: center;
  padding: 18px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 900;
  text-align: center;
}

.section {
  padding: clamp(68px, 8vw, 112px) clamp(20px, 5vw, 72px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(150px, 0.28fr) 1fr;
  gap: 36px;
  align-items: start;
  margin-bottom: 36px;
}

.letter-section,
.benefits-section,
.proof-section,
.faq-section,
.process-section,
.terms-section {
  background: var(--white);
}

.letter-copy {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(26px, 5vw, 54px);
  border-top: 5px solid var(--green);
  background: var(--paper);
  box-shadow: none;
}

.letter-copy p {
  color: var(--ink);
  font-size: clamp(1.08rem, 1.8vw, 1.32rem);
  line-height: 1.65;
}

.split-section,
.contact-section,
.fit-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.86fr);
  gap: clamp(28px, 7vw, 86px);
  align-items: start;
  color: var(--white);
  background: var(--black);
}

.section-copy,
.split-section p,
.contact-section p {
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.7;
}

.section-copy {
  max-width: 580px;
  margin-top: 22px;
  font-size: 1.08rem;
}

.steps-list {
  display: grid;
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.14);
}

.steps-list article,
.steps-list details {
  padding: clamp(22px, 4vw, 32px);
  background: var(--black);
}

.steps-list span {
  display: inline-grid;
  min-width: 42px;
  margin-right: 14px;
  color: var(--green);
  font-weight: 900;
}

.reveal-list details,
.reveal-grid details {
  transition: background 180ms ease, transform 180ms ease;
}

.reveal-list summary,
.reveal-grid summary {
  cursor: pointer;
  color: var(--white);
  font-weight: 900;
  line-height: 1.35;
  list-style: none;
}

.reveal-list summary::after,
.reveal-grid summary::after {
  float: right;
  color: var(--green);
  content: "+";
}

.reveal-list details[open] summary::after,
.reveal-grid details[open] summary::after {
  content: "-";
}

.reveal-list summary::-webkit-details-marker,
.reveal-grid summary::-webkit-details-marker {
  display: none;
}

.reveal-list p,
.reveal-grid p {
  margin: 16px 0 0;
}

.benefit-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.benefit-grid article,
.benefit-grid details,
.testimonial-grid article {
  padding: clamp(22px, 4vw, 32px);
  background: var(--white);
}

.benefit-grid article:first-child,
.benefit-grid details:first-child {
  color: var(--white);
  background: var(--black);
}

.benefit-grid p,
.testimonial-grid p,
.pricing-copy p,
.estimate-copy,
.faq-list p {
  color: var(--muted);
  line-height: 1.65;
}

.benefit-grid article:first-child p,
.benefit-grid details:first-child p {
  color: rgba(255, 255, 255, 0.74);
}

.reveal-grid summary {
  color: var(--ink);
  font-size: 1.1rem;
}

.reveal-grid details:first-child summary {
  color: var(--white);
}

.reveal-grid summary::after {
  color: var(--green-dark);
}

.reveal-grid details:first-child summary::after {
  color: var(--green);
}

.center-cta {
  display: grid;
  justify-items: center;
  gap: 12px;
  margin-top: 34px;
  text-align: center;
}

.center-cta p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.pricing-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: clamp(28px, 7vw, 92px);
  align-items: start;
  padding: clamp(68px, 8vw, 112px) clamp(20px, 5vw, 72px);
  background: var(--paper);
}

.pricing-copy p {
  max-width: 560px;
  margin-top: 24px;
  font-size: 1.08rem;
}

.calculator,
.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 34px);
  border-top: 5px solid var(--green);
  background: var(--white);
  box-shadow: var(--shadow);
}

label {
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 800;
}

select,
input,
textarea {
  width: 100%;
  margin-top: 8px;
  border: 1px solid #aeb4b8;
  border-radius: 0;
  padding: 14px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

select:focus,
input:focus,
textarea:focus {
  border-color: var(--green);
  outline: 2px solid rgba(134, 188, 37, 0.25);
}

input[type="range"] {
  padding: 0;
  accent-color: var(--green);
}

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

.estimate {
  display: block;
  color: var(--green-dark);
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  font-weight: 900;
  line-height: 1;
}

.terms-mini-link {
  justify-self: start;
  margin-top: -8px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.terms-mini-link:hover,
.terms-mini-link:focus-visible {
  color: var(--green-dark);
  outline: none;
}

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

.cost-list li {
  position: relative;
  padding-left: 24px;
  color: var(--ink);
  font-weight: 800;
}

.cost-list li::before {
  position: absolute;
  left: 0;
  color: var(--green);
  content: ">";
}

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

.testimonial-grid p {
  font-size: 1rem;
}

.testimonial-grid strong {
  display: block;
  margin-top: 18px;
}

.fit-section {
  padding: clamp(68px, 8vw, 112px) clamp(20px, 5vw, 72px);
}

.fit-list {
  margin: 0;
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.05);
}

.fit-list li {
  position: relative;
  padding-left: 24px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
}

.fit-list li::before {
  position: absolute;
  left: 0;
  color: var(--green);
  content: ">";
}

.faq-list {
  display: grid;
  gap: 1px;
  max-width: 980px;
  margin-left: auto;
  border: 1px solid var(--line);
  background: var(--line);
}

.faq-list details {
  padding: 22px;
  background: var(--white);
}

.faq-list summary {
  cursor: pointer;
  font-size: 1.08rem;
  font-weight: 800;
}

.faq-list summary::marker {
  color: var(--green);
}

.faq-list p {
  margin: 12px 0 0;
}

.terms-content {
  max-width: 980px;
  margin: 22px 0 0 auto;
  border-top: 5px solid var(--green);
  padding: clamp(24px, 4vw, 42px);
  background: var(--paper);
}

.terms-disclosure {
  max-width: 980px;
  margin-left: auto;
}

.terms-disclosure summary {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--green);
  padding: 0 22px;
  color: var(--black);
  background: var(--green);
  font-weight: 900;
  cursor: pointer;
}

.terms-disclosure summary::marker {
  content: "";
}

.terms-disclosure summary:hover,
.terms-disclosure summary:focus-visible {
  color: var(--black);
  background: var(--white);
  outline: none;
}

.terms-content h3 {
  margin: 30px 0 10px;
  color: var(--ink);
  font-size: 1.18rem;
}

.terms-content p,
.terms-content li {
  color: var(--muted);
  line-height: 1.7;
}

.terms-content p {
  margin-bottom: 14px;
}

.terms-content ul {
  display: grid;
  gap: 8px;
  margin: 0 0 16px;
  padding-left: 20px;
}

.terms-content a {
  color: var(--green-dark);
  font-weight: 800;
}

.contact-section {
  padding: clamp(68px, 8vw, 112px) clamp(20px, 5vw, 72px);
}

.contact-form textarea {
  min-height: 130px;
  resize: vertical;
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--green);
  font-weight: 800;
}

.hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.mobile-offer-bar {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 30;
  display: none;
  min-height: 56px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--green);
  padding: 8px 14px;
  color: var(--black);
  background: var(--green);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
  font-weight: 900;
}

.mobile-offer-bar a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--black);
  padding: 0 12px;
}

.mobile-offer-bar a:last-child {
  color: var(--white);
  background: var(--black);
}

.mobile-offer-bar a:hover,
.mobile-offer-bar a:focus-visible {
  color: var(--black);
  background: var(--white);
  outline: none;
}

.site-footer {
  padding: clamp(44px, 6vw, 72px) clamp(20px, 5vw, 72px) 26px;
  color: rgba(255, 255, 255, 0.72);
  background: var(--black);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.92rem;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) repeat(3, minmax(150px, 0.7fr));
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.footer-brand img {
  width: min(180px, 58vw);
  max-height: 150px;
  object-fit: contain;
  object-position: left center;
}

.footer-brand p {
  max-width: 430px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.7;
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 12px;
}

.footer-links h2,
.footer-contact h2 {
  margin: 0 0 6px;
  color: var(--white);
  font-size: 0.95rem;
  line-height: 1.2;
}

.footer-links a,
.footer-links span,
.footer-contact a:not(.button) {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.4;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-contact a:not(.button):hover,
.footer-contact a:not(.button):focus-visible {
  color: var(--green);
  outline: none;
}

.footer-contact .button {
  justify-self: start;
  margin-top: 6px;
}

.social-link {
  display: inline-flex;
  width: max-content;
  min-height: 40px;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0 12px;
  font-weight: 900;
}

.social-link svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.social-link:hover,
.social-link:focus-visible {
  border-color: var(--green);
  color: var(--green);
  outline: none;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 38px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.55);
}

.footer-social {
  color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 980px) {
  .header-nav-row {
    justify-content: flex-end;
  }

  .nav-toggle {
    display: block;
    margin-left: auto;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px 20px 18px;
    color: var(--white);
    background: var(--black);
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    justify-content: center;
  }

  .hero-cards,
  .hero-content,
  .logo-grid,
  .section-heading,
  .media-section,
  .media-grid,
  .dashboard-heading,
  .dashboard-shell,
  .score-grid,
  .pipeline-journey,
  .roi-section,
  .roi-calculator,
  .tab-list,
  .before-after-section,
  .comparison-grid,
  .specialist-flow,
  .case-study-grid,
  .trust-section,
  .split-section,
  .benefit-grid,
  .pricing-section,
  .testimonial-grid,
  .fit-section,
  .contact-section,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 88vh;
    padding-top: 182px;
  }

  h1 {
    font-size: clamp(2.25rem, 6.4vw, 3.1rem);
    line-height: 1.02;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-visual {
    max-width: 520px;
  }

  .hero-cards {
    gap: 1px;
    margin-bottom: 20px;
  }

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

  .pipeline-journey span::after {
    top: auto;
    right: 50%;
    bottom: -16px;
    transform: translateX(50%) rotate(90deg);
  }

  .roi-result {
    grid-column: auto;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .brand {
    width: 118px;
    height: 94px;
  }

  .brand img {
    max-height: none;
  }

  .brand span:last-child {
    max-width: 120px;
    line-height: 1.05;
  }

  h1 {
    font-size: clamp(2.2rem, 11vw, 3rem);
  }

  .hero {
    padding-top: 154px;
  }

  .hero-kicker {
    margin-bottom: 18px;
  }

  .hero-visual::before {
    inset: -10px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

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

  .site-footer {
    padding-bottom: 24px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  body {
    padding-bottom: 64px;
  }

  .mobile-offer-bar {
    display: flex;
  }

  .footer-brand img {
    width: min(170px, 62vw);
  }

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