:root {
  --green: #25D670;
  --black: #000000;
  --white: #FFFFFF;
  --text: rgba(0, 0, 0, 0.86);
  --muted: rgba(0, 0, 0, 0.62);
  --line: rgba(0, 0, 0, 0.12);
  --soft: rgba(37, 214, 112, 0.1);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 38px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.13);
  --container: 1180px;
}

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

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

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background: var(--white);
  font-family: "Poppins", Arial, sans-serif;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

[hidden] {
  display: none !important;
}

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

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

:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  color: var(--black);
  background: var(--green);
  border-radius: 10px;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

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

.section {
  padding: 92px 0;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: var(--white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  min-height: 76px;
  gap: 26px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 184px;
  height: 58px;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.main-nav a {
  color: var(--black);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

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

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--black);
  transition: transform 180ms ease, opacity 180ms ease;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 24px;
  border: 2px solid transparent;
  border-radius: 12px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  color: var(--black);
  background: var(--green);
  box-shadow: 0 14px 28px rgba(37, 214, 112, 0.24);
}

.button-dark {
  color: var(--white);
  background: var(--black);
}

.button-light {
  color: var(--black);
  background: var(--white);
  border-color: rgba(0, 0, 0, 0.12);
}

.button-ghost {
  color: var(--black);
  background: transparent;
  border-color: var(--black);
}

.header-blog,
.header-cta {
  min-height: 44px;
  padding: 10px 22px;
  font-size: 0.84rem;
}

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

h1,
h2,
h3 {
  color: var(--black);
  letter-spacing: 0;
}

h1 {
  max-width: 740px;
  margin-bottom: 22px;
  color: var(--white);
  font-size: 3.15rem;
  line-height: 1.25;
  font-weight: 800;
}

h2 {
  margin-bottom: 20px;
  font-size: 2.75rem;
  line-height: 1.23;
  font-weight: 800;
}

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

h3 {
  margin-bottom: 13px;
  font-size: 1.2rem;
  line-height: 1.25;
  font-weight: 800;
}

.hero {
  overflow: hidden;
  background: var(--green);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  align-items: center;
  min-height: 590px;
  gap: 48px;
}

.hero-copy {
  padding: 74px 0;
}

.hero-copy p {
  max-width: 660px;
  margin-bottom: 18px;
  color: var(--white);
  font-size: 1.08rem;
}

.hero-copy .hero-lead {
  margin-bottom: 14px;
  font-size: 1.16rem;
  font-weight: 700;
}

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

.hero-actions .button {
  min-width: 330px;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 540px;
}

.hero-visual img {
  width: min(100%, 640px);
  max-width: 640px;
  height: auto;
  object-fit: contain;
  border-radius: 0;
  filter: drop-shadow(0 26px 34px rgba(0, 0, 0, 0.18));
}

.hero-visual span {
  position: absolute;
  top: 68px;
  right: 0;
  padding: 10px 18px;
  color: var(--black);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
  font-size: 0.85rem;
  font-weight: 700;
  transform: rotate(-4deg);
}

.metrics-strip {
  background: linear-gradient(90deg, var(--white), rgba(37, 214, 112, 0.08), var(--white));
  border-bottom: 1px solid var(--line);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 160px;
  text-align: center;
}

.metrics-grid article {
  display: grid;
  padding: 24px 30px;
  align-content: center;
  justify-items: center;
}

.metric-icon {
  display: grid;
  width: 64px;
  height: 64px;
  margin-bottom: 16px;
  color: var(--green);
  background: rgba(37, 214, 112, 0.08);
  border: 1px solid rgba(37, 214, 112, 0.22);
  border-radius: 12px;
  font-weight: 800;
  place-items: center;
}

.metrics-grid h3 {
  margin-bottom: 8px;
  color: var(--green);
  font-size: 2.9rem;
  line-height: 1;
}

.metrics-grid p {
  margin-bottom: 2px;
  color: var(--black);
  font-weight: 800;
}

.metrics-grid small {
  max-width: 220px;
  color: rgba(0, 0, 0, 0.42);
  font-size: 0.68rem;
}

.value-grid,
.platform-grid,
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 70px;
}

.value-copy p,
.platform-copy p,
.section-heading p,
.about-copy p {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.04rem;
}

.value-copy .button,
.platform-copy .button {
  margin-top: 18px;
}

.value-media,
.platform-media {
  display: grid;
  min-height: 390px;
  place-items: center;
}

.value-media img,
.platform-media img {
  width: 100%;
  max-width: 560px;
  max-height: 460px;
  object-fit: contain;
  filter: drop-shadow(0 26px 34px rgba(0, 0, 0, 0.16));
}

.section-heading {
  max-width: 850px;
  margin: 0 auto 58px;
  text-align: center;
}

.solutions-section {
  background: var(--white);
}

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

.solution-card {
  display: flex;
  min-height: 378px;
  padding: 30px 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  flex-direction: column;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.06);
}

.card-icon {
  display: grid;
  width: 80px;
  height: 80px;
  margin-bottom: 28px;
  color: var(--white);
  background: var(--green);
  border-radius: 10px;
  font-size: 1.55rem;
  font-weight: 800;
  place-items: center;
}

.solution-card h3 {
  color: var(--black);
}

.solution-card p {
  color: var(--muted);
  font-size: 0.96rem;
}

.solution-card a {
  margin-top: auto;
  color: var(--black);
  font-size: 0.86rem;
  font-weight: 800;
  text-decoration: none;
}

.solution-card a span {
  color: var(--green);
}

.platform-section {
  background: rgba(0, 0, 0, 0.025);
}

.clients-section {
  overflow: hidden;
  background: var(--white);
}

.client-carousel-shell {
  position: relative;
  overflow: hidden;
  contain: paint;
  padding: 24px 0;
  background: transparent;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.client-carousel-shell::before,
.client-carousel-shell::after {
  position: absolute;
  z-index: 3;
  top: 0;
  bottom: 0;
  width: 100px;
  content: "";
  pointer-events: none;
}

.client-carousel-shell::before {
  left: 0;
  background: linear-gradient(90deg, var(--white), rgba(255, 255, 255, 0));
}

.client-carousel-shell::after {
  right: 0;
  background: linear-gradient(270deg, var(--white), rgba(255, 255, 255, 0));
}

.client-carousel-viewport {
  overflow: hidden;
  contain: paint;
  scroll-behavior: smooth;
}

.client-track {
  display: flex;
  width: max-content;
  animation: logo-marquee 34s linear infinite;
}

.client-carousel-shell:hover .client-track,
.client-carousel-shell:focus-within .client-track,
.client-track.is-paused {
  animation-play-state: paused;
}

.client-set {
  display: flex;
  align-items: center;
  gap: 34px;
  padding-right: 34px;
}

.client-logo {
  display: grid;
  width: 160px;
  min-width: 160px;
  height: 140px;
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  grid-template-rows: 1fr;
  place-items: center;
}

.client-logo img {
  width: 118px;
  height: 118px;
  object-fit: contain;
}

.client-logo figcaption {
  display: none;
}

.clients-cta {
  display: flex;
  width: fit-content;
  margin: 38px auto 0;
  padding-inline: 34px;
}

@keyframes logo-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.testimonials-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
}

.testimonial-card {
  display: flex;
  min-height: 360px;
  padding: 52px 40px 42px;
  color: var(--white);
  background: var(--green);
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.testimonial-card.featured {
  background: #181a17;
}

.testimonial-logo {
  width: 96px;
  height: 96px;
  margin: 0 auto 24px;
  padding: 14px;
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.16);
  object-fit: contain;
}

.testimonial-card blockquote {
  max-width: 340px;
  margin: 0 auto 30px;
  font-weight: 600;
  line-height: 1.75;
}

.testimonial-card footer {
  display: grid;
  gap: 4px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.testimonial-card strong {
  color: var(--white);
}

.testimonial-card span {
  color: rgba(255, 255, 255, 0.76);
}

.stars {
  margin-top: 20px;
  color: #ffc400;
  letter-spacing: 0.18em;
}

.about-section {
  background: var(--white);
}

.about-video {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--black);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.about-video-trigger {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  overflow: hidden;
  color: inherit;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.about-video-trigger::after {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.22);
  content: "";
  transition: background 180ms ease;
}

.about-video-trigger img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.about-video-play {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: grid;
  width: 76px;
  height: 76px;
  padding-left: 4px;
  color: var(--black);
  background: var(--green);
  border: 4px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
  font-size: 1.5rem;
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
  place-items: center;
}

.about-video-caption {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 18px;
  left: 22px;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 800;
  text-align: center;
}

.about-video iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.about-video-trigger:hover::after {
  background: rgba(0, 0, 0, 0.12);
}

.about-video-trigger:hover img {
  transform: scale(1.02);
}

.about-video-trigger:hover .about-video-play {
  transform: translate(-50%, -50%) scale(1.06);
}

.results-section {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.035), var(--white));
}

.roi-heading {
  max-width: 980px;
  margin-bottom: 44px;
}

.roi-heading h2 {
  font-size: clamp(2.2rem, 5vw, 4rem);
}

.calculator-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.calculator-layout > * {
  min-width: 0;
}

.roi-form {
  padding: clamp(28px, 5vw, 56px);
}

.form-heading > span,
.output-kicker {
  color: var(--green);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.form-heading h3 {
  margin: 8px 0 6px;
  font-size: 1.75rem;
}

.form-heading p {
  color: var(--muted);
}

.field-grid {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.roi-fields {
  grid-template-columns: 1fr;
}

.field-grid label {
  display: grid;
  grid-template-columns: 48px minmax(150px, 1fr) minmax(160px, 240px);
  align-items: center;
  gap: 8px;
  color: var(--black);
  font-size: 0.9rem;
  font-weight: 700;
}

.field-icon,
.result-icon {
  display: grid;
  width: 38px;
  height: 38px;
  color: #0d5f3a;
  background: rgba(37, 214, 112, 0.12);
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 800;
  place-items: center;
}

.field-grid input {
  width: 100%;
  height: 50px;
  padding: 0 14px;
  color: var(--black);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 11px;
}

.field-grid input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px var(--soft);
  outline: none;
}

.roi-note {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 22px 0 0;
  padding: 16px 18px;
  color: rgba(0, 0, 0, 0.7);
  background: rgba(37, 214, 112, 0.06);
  border: 1px solid rgba(37, 214, 112, 0.16);
  border-radius: 8px;
  font-size: 0.84rem;
}

.roi-note span {
  display: grid;
  width: 26px;
  min-width: 26px;
  height: 26px;
  color: var(--green);
  border: 2px solid currentColor;
  border-radius: 50%;
  font-weight: 800;
  place-items: center;
}

.roi-note strong {
  color: var(--green);
}

.form-actions {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.form-error {
  margin: 14px 0 0;
  padding: 10px 12px;
  color: var(--white);
  background: var(--black);
  border-left: 5px solid var(--green);
  border-radius: 8px;
  font-size: 0.82rem;
}

.roi-output {
  display: grid;
  padding: clamp(28px, 5vw, 56px);
  color: var(--white);
  background: #060b0d;
  align-content: center;
}

.roi-output h3 {
  max-width: 560px;
  margin: 10px 0 22px;
  color: var(--white);
  font-size: clamp(1.55rem, 3vw, 2rem);
}

.roi-preview-list,
.roi-result-panel {
  display: grid;
  gap: 10px;
}

.roi-preview-list div,
.result-highlight,
.result-row {
  display: flex;
  align-items: center;
  min-height: 58px;
  gap: 16px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.result-highlight strong {
  color: var(--green);
  font-size: clamp(1.28rem, 3vw, 1.78rem);
}

.result-row {
  justify-content: space-between;
  gap: 18px;
}

.result-row span {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.82);
}

.result-row strong {
  color: var(--green);
  font-size: clamp(1rem, 2vw, 1.32rem);
  white-space: nowrap;
}

.roi-output > p {
  margin: 24px 0 0;
  padding-top: 18px;
  color: rgba(255, 255, 255, 0.62);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.86rem;
}

.roi-output blockquote {
  margin: 22px 0 0;
  padding: 18px 20px;
  color: var(--white);
  border: 1px solid var(--green);
  border-radius: 8px;
}

.roi-output blockquote::before {
  color: var(--green);
  content: "“";
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 0.4;
  vertical-align: -0.28em;
}

.roi-output blockquote strong {
  color: var(--green);
}

.roi-result-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  margin-top: 22px;
}

.roi-result-actions .button-light {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.76);
}

.roi-result-actions .button {
  min-width: 0;
  overflow-wrap: anywhere;
}

.calculator-layout[data-roi-state="result"] .form-heading > span {
  text-transform: uppercase;
}

.calculator-layout[data-roi-state="result"] .roi-form input {
  background: rgba(0, 0, 0, 0.025);
}

.calculator-layout[data-roi-state="result"] #roi-example {
  display: none;
}

.calculator-layout[data-roi-state="result"] .roi-output {
  padding-top: 38px;
  padding-bottom: 34px;
}

.calculator-layout[data-roi-state="result"] .roi-output h3 {
  margin-bottom: 18px;
  font-size: 1.72rem;
  line-height: 1.16;
}

.calculator-layout[data-roi-state="result"] .roi-result-panel {
  gap: 8px;
}

.calculator-layout[data-roi-state="result"] .result-highlight {
  min-height: 58px;
  padding: 9px 16px;
}

.calculator-layout[data-roi-state="result"] .result-highlight strong {
  font-size: 1.55rem;
}

.calculator-layout[data-roi-state="result"] .result-row {
  min-height: 48px;
  padding: 8px 16px;
}

.calculator-layout[data-roi-state="result"] .result-row strong {
  font-size: 1.18rem;
}

.calculator-layout[data-roi-state="result"] .result-icon {
  width: 36px;
  height: 36px;
}

.calculator-layout[data-roi-state="result"] .roi-output > p {
  margin-top: 16px;
  padding-top: 16px;
  font-size: 0.88rem;
}

.calculator-layout[data-roi-state="result"] .roi-output blockquote {
  margin-top: 16px;
  padding: 16px 20px;
  font-size: 0.92rem;
}

.calculator-layout[data-roi-state="result"] .roi-result-actions {
  margin-top: 16px;
}

.calculator-layout[data-roi-state="result"] .roi-result-actions .button {
  min-height: 52px;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 0.88rem;
}

.lead-modal[hidden] {
  display: none;
}

.lead-modal {
  position: fixed;
  z-index: 300;
  inset: 0;
  display: grid;
  padding: 18px;
  place-items: center;
}

.lead-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.64);
}

.lead-modal__card {
  position: relative;
  z-index: 1;
  width: min(100%, 620px);
  padding: clamp(26px, 4vw, 42px);
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.lead-modal__card h2 {
  margin: 8px 0 10px;
  font-size: clamp(1.6rem, 4vw, 2.35rem);
}

.lead-modal__card p {
  color: var(--muted);
}

.lead-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  width: 38px;
  height: 38px;
  color: var(--black);
  background: rgba(0, 0, 0, 0.04);
  border: 0;
  border-radius: 50%;
  font-size: 1.6rem;
  cursor: pointer;
  place-items: center;
}

.lead-field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 24px 0;
}

.lead-field-grid label {
  display: grid;
  gap: 7px;
  color: rgba(0, 0, 0, 0.72);
  font-size: 0.8rem;
  font-weight: 800;
}

.lead-field-grid input {
  height: 50px;
  padding: 0 14px;
  color: var(--black);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.lead-field-grid input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px var(--soft);
  outline: none;
}

.results-section {
  padding: 72px 0 82px;
  background: linear-gradient(180deg, #f4f4f4 0%, #ffffff 100%);
}

.results-section .container {
  width: min(calc(100% - 96px), 1304px);
}

.roi-heading {
  max-width: 1020px;
  margin: 0 auto 58px;
}

.roi-heading h2 {
  margin-bottom: 18px;
  font-size: clamp(2.75rem, 4.25vw, 4.05rem);
  line-height: 1.08;
}

.roi-heading p {
  max-width: 700px;
  margin-inline: auto;
  color: rgba(0, 0, 0, 0.58);
  font-size: 1.04rem;
  line-height: 1.45;
}

.calculator-layout {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: 730px;
  border: 0;
  border-radius: 28px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.16);
}

.roi-form {
  display: flex;
  padding: 44px 58px 40px;
  flex-direction: column;
}

.form-heading > span,
.output-kicker {
  font-size: 0.86rem;
  letter-spacing: 0;
}

.form-heading h3 {
  margin: 10px 0 10px;
  font-size: 1.82rem;
  line-height: 1.16;
}

.form-heading p {
  max-width: 420px;
  margin-bottom: 0;
  font-size: 0.96rem;
  line-height: 1.45;
}

.field-grid {
  gap: 14px;
  margin-top: 26px;
}

.field-grid label {
  grid-template-columns: 48px minmax(190px, 1fr) minmax(200px, 240px);
  gap: 14px;
  font-size: 1rem;
  line-height: 1.2;
}

.field-icon,
.result-icon {
  width: 42px;
  height: 42px;
  border-radius: 9px;
  font-size: 0.9rem;
}

.field-grid input {
  height: 46px;
  padding: 0 16px;
  border-radius: 10px;
  font-size: 1rem;
}

.roi-note {
  margin-top: 22px;
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 0.88rem;
  line-height: 1.38;
}

.form-actions {
  gap: 20px;
  margin-top: 24px;
}

.form-actions .button {
  min-height: 56px;
  padding-top: 11px;
  padding-bottom: 11px;
  font-size: 0.94rem;
}

.form-actions .button-primary {
  flex: 1;
}

.form-actions .button-ghost {
  min-width: 190px;
}

.roi-output {
  padding: 44px 58px 40px;
  background: #050b0d;
}

.roi-output h3 {
  max-width: 520px;
  margin: 10px 0 22px;
  font-size: 1.9rem;
  line-height: 1.16;
}

.roi-preview-list,
.roi-result-panel {
  gap: 10px;
}

.roi-preview-list div,
.result-highlight,
.result-row {
  min-height: 64px;
  padding: 12px 18px;
  gap: 18px;
  border-radius: 9px;
}

.roi-preview-list strong {
  font-size: 1rem;
}

.result-highlight {
  min-height: 64px;
}

.result-highlight strong {
  font-size: 1.65rem;
}

.result-row {
  min-height: 56px;
}

.result-row strong {
  font-size: 1.35rem;
}

.roi-output > p {
  margin-top: 20px;
  padding-top: 18px;
  font-size: 0.92rem;
  line-height: 1.45;
}

.roi-output blockquote {
  margin-top: 20px;
  padding: 18px 22px;
  font-size: 0.96rem;
  line-height: 1.35;
}

.roi-result-actions {
  grid-template-columns: minmax(0, 1fr) minmax(210px, 0.64fr);
  margin-top: 20px;
}

.lead-modal {
  overflow-y: auto;
  padding: clamp(8px, 2vw, 22px);
  align-items: start;
}

.lead-modal__backdrop {
  background: rgba(245, 245, 245, 0.74);
  backdrop-filter: blur(8px);
}

.lead-modal__card {
  display: grid;
  width: min(calc(100vw - 72px), 820px);
  max-height: calc(100dvh - 24px);
  margin: auto;
  overflow-y: auto;
  padding: 24px 34px;
  border-radius: 20px;
  grid-template-columns: minmax(0, 1.35fr) minmax(250px, 0.9fr);
  gap: 28px;
}

.lead-modal__main h2 {
  margin: 6px 0 8px;
  font-size: 1.72rem;
  line-height: 1.1;
}

.lead-modal__main > p {
  max-width: 440px;
  margin-bottom: 10px;
  font-size: 0.84rem;
  line-height: 1.38;
}

.lead-field-grid {
  grid-template-columns: 1fr;
  gap: 8px;
  margin: 0;
}

.lead-field-grid label {
  gap: 4px;
  font-size: 0.8rem;
}

.lead-field-grid input {
  height: 39px;
  border-radius: 9px;
  font-size: 0.88rem;
}

.lead-privacy {
  display: grid;
  margin: 8px 0 10px;
  color: rgba(0, 0, 0, 0.58);
  font-size: 0.76rem;
  gap: 9px;
  grid-template-columns: 22px 1fr;
}

.lead-privacy span {
  color: var(--green);
  font-weight: 800;
}

.lead-modal__main > .button {
  width: 100%;
  min-height: 43px;
  margin-top: 0;
  padding-top: 9px;
  padding-bottom: 9px;
}

.lead-back {
  margin-top: 7px;
}

.lead-modal__main small {
  display: block;
  max-width: 360px;
  margin: 7px auto 0;
  color: rgba(0, 0, 0, 0.48);
  font-size: 0.72rem;
  line-height: 1.25;
  text-align: center;
}

.lead-modal__aside {
  display: grid;
  padding: 18px 16px;
  background: rgba(37, 214, 112, 0.035);
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 14px;
  align-content: center;
  gap: 8px;
}

.lead-modal__aside h3 {
  margin: 0 0 8px;
  color: var(--green);
  font-size: 1rem;
  text-align: center;
}

.lead-modal__aside div {
  display: grid;
  min-height: 62px;
  padding: 9px 14px;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 10px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.05);
  gap: 2px 14px;
  grid-template-columns: 46px 1fr;
  align-items: center;
}

.lead-modal__aside .field-icon {
  grid-row: span 2;
}

.lead-modal__aside strong {
  align-self: end;
  color: var(--black);
  font-size: 0.9rem;
  line-height: 1.1;
}

.lead-modal__aside small {
  align-self: start;
  color: rgba(0, 0, 0, 0.68);
  font-size: 0.8rem;
}

.faq-section {
  color: var(--white);
  background: #181a17;
}

.faq-section h2 {
  margin-bottom: 44px;
  color: var(--white);
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-list details {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 6px;
}

.faq-list summary {
  display: grid;
  grid-template-columns: 20px 1fr 32px;
  align-items: center;
  gap: 12px;
  padding: 18px 22px;
  color: var(--white);
  font-weight: 800;
  list-style: none;
  cursor: pointer;
}

.faq-list summary::before {
  content: "+";
}

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

.faq-list summary span {
  display: grid;
  width: 32px;
  height: 32px;
  color: var(--black);
  background: var(--green);
  border-radius: 50%;
  font-size: 1.2rem;
  transition: transform 180ms ease;
  place-items: center;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 880px;
  margin: 0;
  padding: 0 56px 22px;
  color: rgba(255, 255, 255, 0.68);
}

.site-footer {
  padding: 64px 0 24px;
  color: var(--white);
  background: var(--black);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 50px;
  padding-bottom: 50px;
}

.footer-brand img {
  width: 176px;
  height: 68px;
  object-fit: contain;
}

.footer-brand p {
  max-width: 330px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.82rem;
}

.footer-grid > div:not(.footer-brand) {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-grid strong {
  margin-bottom: 10px;
  color: var(--green);
  font-size: 0.8rem;
  text-transform: uppercase;
}

.footer-grid a {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.8rem;
  text-decoration: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  color: rgba(255, 255, 255, 0.42);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.72rem;
}

.footer-bottom a {
  color: var(--green);
  text-decoration: none;
}

.whatsapp-float {
  position: fixed;
  z-index: 80;
  right: 24px;
  bottom: 24px;
  display: grid;
  width: 58px;
  height: 58px;
  color: var(--black);
  background: var(--green);
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.2);
  font-size: 0.72rem;
  font-weight: 800;
  text-decoration: none;
  place-items: center;
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: var(--white);
}

.reveal,
.js .reveal,
.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1060px) {
  .main-nav {
    gap: 18px;
  }

  .main-nav a {
    font-size: 0.78rem;
  }

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

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

@media (max-width: 860px) {
  .section {
    padding: 74px 0;
  }

  .header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .menu-toggle {
    display: block;
    grid-column: 3;
  }

  .main-nav {
    position: fixed;
    z-index: 99;
    top: 76px;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    padding: 40px;
    color: var(--white);
    background: var(--black);
    align-content: start;
  }

  .main-nav.is-open {
    display: grid;
  }

  .main-nav a {
    padding: 15px 0;
    color: var(--white);
    font-size: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .header-blog,
  .header-cta {
    display: none;
  }

  .hero-grid,
  .value-grid,
  .platform-grid,
  .about-grid,
  .calculator-layout {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
  }

  .hero-copy {
    padding: 58px 0 18px;
  }

  .hero-visual {
    min-height: auto;
    padding-bottom: 38px;
  }

  .hero-visual img {
    width: 100%;
    max-width: 680px;
  }

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

  .calculator-layout {
    overflow: visible;
    background: transparent;
    border: 0;
    box-shadow: none;
    gap: 18px;
    min-height: 0;
  }

  .roi-form,
  .roi-output {
    border-radius: 8px;
    padding: 34px 24px;
  }

  .results-section .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .lead-modal__card {
    width: min(calc(100vw - 32px), 680px);
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .lead-modal__aside {
    align-content: start;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

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

  h1 {
    font-size: 2rem;
    line-height: 1.18;
  }

  h2 {
    font-size: 2rem;
  }

  .brand {
    width: 150px;
  }

  .hero-actions,
  .form-actions {
    display: grid;
  }

  .hero-actions .button,
  .form-actions .button {
    width: 100%;
    min-width: 0;
    padding-right: 16px;
    padding-left: 16px;
    font-size: 0.92rem;
  }

  .hero-visual span {
    display: none;
  }

  .solutions-grid,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .field-grid label {
    grid-template-columns: 38px 1fr;
  }

  .field-grid input {
    grid-column: 1 / -1;
  }

  .roi-note {
    align-items: flex-start;
  }

  .result-row {
    display: grid;
  }

  .result-row strong {
    white-space: normal;
  }

  .roi-result-actions,
  .lead-field-grid {
    grid-template-columns: 1fr;
  }

  .roi-heading {
    margin-bottom: 32px;
  }

  .roi-heading h2 {
    font-size: 2rem;
  }

  .roi-heading p {
    font-size: 0.92rem;
  }

  .roi-output h3,
  .form-heading h3 {
    font-size: 1.5rem;
  }

  .lead-modal {
    padding: 16px;
    align-items: start;
    overflow-y: auto;
  }

  .lead-modal__card {
    width: 100%;
    padding: 26px 20px;
    border-radius: 16px;
  }

  .lead-modal__main h2 {
    font-size: 1.75rem;
  }

  .lead-modal__aside {
    display: none;
  }

  .roi-result-actions .button {
    width: 100%;
  }

  .solution-card {
    min-height: auto;
  }

  .client-track {
    width: 100%;
    animation: none;
  }

  .client-set {
    display: grid;
    width: 100%;
    padding-right: 0;
    gap: 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .client-set[aria-hidden="true"] {
    display: none;
  }

  .client-logo {
    width: 100%;
    min-width: 0;
  }

  .output-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .faq-list summary {
    font-size: 0.9rem;
  }

  .faq-list details p {
    padding: 0 22px 20px;
  }

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

  .footer-grid > div:last-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    display: grid;
    gap: 8px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }

  .client-track {
    animation: none;
  }

  .client-carousel-viewport {
    overflow-x: auto;
  }
}
