:root {
  --green: #005e3a;
  --green-2: #0f7a50;
  --red: #ce3236;
  --yellow: #ffd525;
  --yellow-soft: #fff7bf;
  --ink: #182420;
  --muted: #61716a;
  --paper: #f7f7f1;
  --line: #dce5dd;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(0, 44, 27, 0.13);
  --radius: 8px;
  --container: 1140px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body.nav-open,
body.has-leadflow-modal {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 40;
  transform: translateY(-160%);
  border-radius: 6px;
  background: var(--white);
  color: var(--green);
  padding: 10px 14px;
  font-weight: 800;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(18px, 3vw, 42px);
  width: 100%;
  max-width: none;
  margin-inline: auto;
  padding: 20px max(40px, calc((100vw - var(--container)) / 2));
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  transition:
    box-shadow 0.28s ease,
    backdrop-filter 0.28s ease,
    padding 0.28s ease;
}

.site-header::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(255, 255, 255, 0.96);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s ease;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  border-radius: inherit;
  height: 3px;
  background: linear-gradient(90deg, rgba(0, 94, 58, 0.52), rgba(255, 213, 37, 0.52), rgba(206, 50, 54, 0.52));
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease, background 0.28s ease;
}

.site-header.is-scrolled {
  padding-block: 10px;
  box-shadow: 0 14px 36px rgba(11, 53, 37, 0.14);
  backdrop-filter: blur(18px) saturate(140%);
}

.site-header.is-scrolled::after {
  opacity: 1;
}

.site-header.is-scrolled::before {
  background: linear-gradient(90deg, var(--green), var(--yellow), var(--red));
  opacity: 1;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: 178px;
  height: 54px;
}

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

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.main-nav a {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 0 13px;
  background: rgba(0, 0, 0, 0.18);
  color: var(--white);
  white-space: nowrap;
  text-shadow:
    0 2px 8px rgba(0, 0, 0, 0.56),
    0 0 1px rgba(0, 0, 0, 0.75);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.site-header.is-scrolled .main-nav a {
  border-color: rgba(0, 94, 58, 0.12);
  background: rgba(0, 94, 58, 0.07);
  color: var(--green);
  text-shadow: none;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--yellow);
  border-color: rgba(255, 213, 37, 0.56);
  background: rgba(0, 0, 0, 0.32);
  transform: translateY(-1px);
}

.site-header.is-scrolled .main-nav a:hover,
.site-header.is-scrolled .main-nav a:focus-visible {
  border-color: rgba(0, 94, 58, 0.24);
  background: rgba(0, 94, 58, 0.12);
  color: var(--green);
}

.header-cta,
.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 6px;
  padding: 0 20px;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.header-cta,
.btn-primary {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 16px 30px rgba(0, 94, 58, 0.24);
}

.header-cta {
  min-height: 50px;
  padding-inline: 22px;
  border-radius: 999px;
  background: #b91c1c;
  box-shadow: 0 16px 30px rgba(185, 28, 28, 0.3);
}

.btn-secondary {
  color: var(--green);
  border: 1px solid rgba(0, 94, 58, 0.18);
  background: rgba(255, 255, 255, 0.82);
}

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

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  position: relative;
  z-index: 45;
  border: 2px solid rgba(0, 94, 58, 0.22);
  border-radius: 6px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(11, 53, 37, 0.18);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 3px auto;
  border-radius: 99px;
  background: var(--green);
  transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:not(.sr-only):nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:not(.sr-only):nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:not(.sr-only):nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 88svh;
  padding: 150px 0 84px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 247, 191, 0.68), rgba(247, 247, 241, 0.92) 38%, rgba(255, 255, 255, 0.96)),
    var(--paper);
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 94, 58, 0.24), transparent);
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 94, 58, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 94, 58, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 78%, transparent);
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  align-items: center;
  gap: clamp(34px, 6vw, 86px);
}

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

.hero-copy h1,
.section-heading h2,
.section-copy h2,
.contact h2 {
  margin: 0;
  color: var(--ink);
  font-size: 5.15rem;
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-copy p {
  max-width: 650px;
  margin: 24px 0 0;
  color: #40514a;
  font-size: 1.18rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 32px;
  height: 3px;
  border-radius: 99px;
  background: var(--yellow);
}

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

.hero-panel {
  position: relative;
  display: grid;
  align-self: stretch;
  place-items: center;
  justify-items: center;
  min-height: 560px;
  padding: 18px 0;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 10% -4% 6%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 213, 37, 0.22), transparent 34%),
    radial-gradient(circle at 46% 54%, rgba(0, 94, 58, 0.12), transparent 52%);
  filter: blur(4px);
  pointer-events: none;
}

.orbit-scene {
  position: relative;
  width: min(100%, 560px);
  aspect-ratio: 1;
  margin: 0 auto;
}

.orbit-ring,
.orbit-glow,
.orbit-logo,
.orbit-item {
  position: absolute;
}

.orbit-ring {
  inset: 10%;
  border: 1px solid rgba(0, 94, 58, 0.14);
  border-radius: 50%;
  transform: rotate(-10deg) scaleX(1.1);
}

.orbit-ring::before,
.orbit-ring::after {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 7px rgba(255, 213, 37, 0.16);
}

.orbit-ring::before {
  top: 18%;
  right: 8%;
}

.orbit-ring::after {
  left: 12%;
  bottom: 17%;
  background: var(--red);
  box-shadow: 0 0 0 7px rgba(206, 50, 54, 0.12);
}

.orbit-ring-tight {
  inset: 24%;
  border-color: rgba(206, 50, 54, 0.12);
  transform: rotate(18deg) scaleX(0.86);
}

.orbit-glow {
  inset: 19%;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 213, 37, 0.34), transparent 60%),
    radial-gradient(circle at 38% 32%, rgba(0, 94, 58, 0.2), transparent 44%);
  filter: blur(8px);
  animation: orbit-pulse 6.4s ease-in-out infinite;
}

.orbit-logo {
  top: 53%;
  left: 50%;
  z-index: 2;
  width: 56%;
  max-width: 310px;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 28px 42px rgba(0, 44, 27, 0.2));
  animation: cuia-float 7s ease-in-out infinite;
}

.orbit-item {
  z-index: 3;
  animation: orbit-float 6.2s ease-in-out infinite;
}

.orbit-pill::after {
  content: "";
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, currentColor, transparent);
  opacity: 0.36;
  transform-origin: left center;
}

.orbit-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  text-shadow: 0 10px 24px rgba(0, 44, 27, 0.16);
}

.orbit-pill svg {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  padding: 6px;
  overflow: visible;
  color: currentColor;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  border: 1px solid rgba(0, 94, 58, 0.26);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow:
    0 0 0 7px rgba(0, 94, 58, 0.07),
    0 12px 22px rgba(0, 44, 27, 0.12);
}

.orbit-desktop svg {
  fill: rgba(0, 94, 58, 0.08);
}

.orbit-pill::after {
  top: 50%;
  width: 74px;
}

.orbit-dos {
  top: 38%;
  left: 5%;
  animation-delay: -1.2s;
}

.orbit-dos::after {
  left: calc(100% + 10px);
  transform: rotate(-11deg);
}

.orbit-desktop {
  top: 29%;
  right: 8%;
  animation-delay: -2.8s;
}

.orbit-desktop::after {
  right: calc(100% + 10px);
  background: linear-gradient(90deg, transparent, currentColor);
  transform: rotate(170deg);
}

.orbit-web {
  bottom: 14%;
  left: 17%;
  animation-delay: -4s;
}

.orbit-web::after {
  left: calc(100% + 10px);
  transform: rotate(-28deg);
}

.orbit-mobile {
  right: 15%;
  bottom: 13%;
  animation-delay: -0.7s;
}

.orbit-mobile::after {
  right: calc(100% + 10px);
  background: linear-gradient(90deg, transparent, currentColor);
  transform: rotate(205deg);
}

@keyframes orbit-float {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -10px;
  }
}

@keyframes cuia-float {
  0%,
  100% {
    translate: 0 0;
    rotate: -1deg;
  }

  50% {
    translate: 0 -14px;
    rotate: 1.5deg;
  }
}

@keyframes orbit-pulse {
  0%,
  100% {
    opacity: 0.72;
    scale: 1;
  }

  50% {
    opacity: 1;
    scale: 1.06;
  }
}

.section {
  position: relative;
  padding: clamp(76px, 9vw, 118px) 0;
}

.intro {
  background: var(--white);
}

.solutions {
  background: var(--paper);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  align-items: center;
  gap: clamp(36px, 6vw, 84px);
}

.split-clients {
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 1fr);
}

.section-copy h2,
.section-heading h2,
.contact h2 {
  font-size: 3.25rem;
  line-height: 1.04;
}

.section-copy p,
.section-heading + p,
.contact p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
}

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

.timeline article {
  position: relative;
  display: grid;
  grid-template-columns: 142px 1fr;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(0, 44, 27, 0.05);
}

.timeline span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: var(--yellow-soft);
  color: var(--red);
  font-size: 0.84rem;
  font-weight: 950;
}

.timeline h3,
.solution-card h3 {
  margin: 0;
  color: var(--green);
  font-size: 1.18rem;
  line-height: 1.2;
}

.timeline h3 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.timeline h3 svg {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  padding: 6px;
  color: currentColor;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  border: 1px solid rgba(0, 94, 58, 0.22);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 10px 20px rgba(0, 44, 27, 0.08);
}

.timeline article:nth-child(2) h3 svg {
  fill: rgba(0, 94, 58, 0.08);
}

.timeline p,
.solution-card p {
  margin: 0;
  color: var(--muted);
}

.solution-card p {
  margin-top: 8px;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.solution-card,
.team-bubble {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 44px rgba(0, 44, 27, 0.07);
}

.solution-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 18px;
}

.solution-grid::before {
  content: "";
  position: absolute;
  top: 54px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--yellow), var(--red));
  opacity: 0.42;
  pointer-events: none;
}

.solution-card {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto auto 1fr;
  min-height: 278px;
  padding: 106px 24px 24px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 247, 191, 0.36), rgba(255, 255, 255, 0.96) 42%),
    var(--white);
}

.solution-card::before {
  content: attr(data-step);
  position: absolute;
  top: 22px;
  left: 24px;
  z-index: 1;
  display: inline-grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border: 2px solid var(--white);
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-size: 1rem;
  font-weight: 950;
  box-shadow:
    0 0 0 7px rgba(255, 213, 37, 0.38),
    0 14px 28px rgba(0, 44, 27, 0.18);
}

.solution-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 92px;
  height: 92px;
  border-radius: 0 0 0 92px;
  background: rgba(0, 94, 58, 0.06);
}

.card-icon {
  position: absolute;
  top: 30px;
  right: 24px;
  z-index: 1;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--green);
  box-shadow: 0 10px 22px rgba(0, 44, 27, 0.08);
}

.card-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.team {
  overflow: hidden;
  background:
    linear-gradient(180deg, var(--white), rgba(255, 255, 255, 0.9) 66%, rgba(255, 247, 191, 0.3)),
    var(--white);
}

.team::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 10px;
  background: linear-gradient(90deg, var(--green), var(--yellow), var(--red));
  opacity: 0.82;
}

.team-chat {
  display: grid;
  gap: 24px;
  max-width: 920px;
  margin-inline: auto;
}

.team-message {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  width: min(760px, 100%);
}

.team-message-alt {
  justify-self: end;
  flex-direction: row-reverse;
}

.team-photo {
  position: relative;
  flex: 0 0 auto;
  width: 138px;
  height: 138px;
  border: 5px solid var(--white);
  border-radius: 50%;
  outline: 3px solid rgba(0, 94, 58, 0.16);
  object-fit: cover;
  object-position: center 18%;
  background: var(--paper);
  box-shadow: 0 16px 34px rgba(0, 44, 27, 0.14);
}

.team-photo-barros {
  object-position: center 4%;
}

.team-photo-junior {
  object-position: center 30%;
}

.team-photo-juliana {
  object-position: center 22%;
}

.team-bubble {
  position: relative;
  flex: 1 1 auto;
  padding: 22px 24px;
  border-color: rgba(0, 94, 58, 0.14);
  background:
    linear-gradient(90deg, rgba(255, 247, 191, 0.42), rgba(255, 255, 255, 0.96) 34%),
    var(--white);
}

.team-bubble::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -9px;
  width: 18px;
  height: 18px;
  border-bottom: 1px solid rgba(0, 94, 58, 0.14);
  border-left: 1px solid rgba(0, 94, 58, 0.14);
  background: inherit;
  transform: rotate(45deg);
}

.team-message-alt .team-bubble::before {
  right: -9px;
  left: auto;
  border: 0;
  border-top: 1px solid rgba(0, 94, 58, 0.14);
  border-right: 1px solid rgba(0, 94, 58, 0.14);
}

.team-bubble h3 {
  margin: 0;
  color: var(--green);
  font-size: 1.35rem;
  line-height: 1.2;
}

.team-bubble p {
  margin: 10px 0 0;
  color: #40514a;
}

.role {
  margin: 0 0 6px !important;
  color: var(--red) !important;
  font-weight: 850;
  font-size: 0.9rem;
}

.clients {
  overflow: hidden;
  border-top: 1px solid rgba(0, 94, 58, 0.18);
  background:
    linear-gradient(180deg, rgba(224, 238, 228, 0.92), rgba(247, 247, 241, 0.98) 42%, rgba(255, 255, 255, 0.98)),
    var(--paper);
}

.clients::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.9), rgba(247, 247, 241, 0.42) 44%, rgba(224, 238, 228, 0.42));
  opacity: 0.64;
  pointer-events: none;
}

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

.clients-inner {
  display: grid;
  gap: 38px;
}

.clients .section-copy {
  max-width: 780px;
}

.client-carousel {
  position: relative;
  min-width: 0;
  width: min(100%, 1040px);
  margin-inline: auto;
  padding-inline: 58px;
}

.client-control {
  position: absolute;
  top: 83px;
  z-index: 2;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: var(--green);
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(0, 44, 27, 0.16);
  transform: translateY(-50%);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.client-control-prev {
  left: 0;
}

.client-control-next {
  right: 0;
}

.client-control:hover,
.client-control:focus-visible {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 18px 34px rgba(0, 44, 27, 0.22);
  transform: translateY(-50%) scale(1.04);
}

.client-control svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.client-track {
  display: grid;
  grid-auto-columns: minmax(210px, calc((100% - 48px) / 3));
  grid-auto-flow: column;
  gap: 24px;
  overflow-x: auto;
  padding: 8px 2px 28px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.client-track::-webkit-scrollbar {
  display: none;
}

.client-item {
  position: relative;
  display: grid;
  min-height: 150px;
  place-items: center;
  border: 1px solid rgba(0, 94, 58, 0.2);
  border-radius: 8px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.22);
  overflow: hidden;
  scroll-snap-align: start;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.client-item:hover,
.client-item:focus-visible {
  background: rgba(255, 255, 255, 0.42);
  border-color: rgba(0, 94, 58, 0.36);
  transform: translateY(-3px);
}

.client-item img {
  width: 100%;
  max-height: 82px;
  object-fit: contain;
  filter: grayscale(1) saturate(0) contrast(0.88) opacity(0.62);
  transform: scale(0.96);
  transition: filter 0.22s ease, opacity 0.22s ease, transform 0.22s ease;
}

.client-item:hover img,
.client-item:focus-visible img {
  filter: none;
  opacity: 1;
  transform: scale(1);
}

.client-item .client-logo-contrast {
  border-radius: 6px;
  padding: 8px;
  filter: grayscale(1) saturate(0) brightness(0.52) contrast(1.45) opacity(1);
  transform: scale(1);
}

.client-item:hover .client-logo-contrast,
.client-item:focus-visible .client-logo-contrast {
  filter: brightness(0.82) contrast(1.18);
}

.client-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 2px;
}

.client-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0, 94, 58, 0.22);
}

.client-dot.is-active {
  width: 24px;
  border-radius: 999px;
  background: var(--green);
}

.contact {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(72px, 8vw, 106px) 0;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 213, 37, 0.28), transparent 26%),
    radial-gradient(circle at 88% 18%, rgba(206, 50, 54, 0.22), transparent 30%),
    linear-gradient(135deg, rgba(0, 94, 58, 0.98) 0%, rgba(5, 84, 55, 0.97) 48%, rgba(0, 54, 38, 0.98) 100%);
}

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

.contact::before {
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(255, 213, 37, 0.22), transparent 24%, transparent 74%, rgba(206, 50, 54, 0.18)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.07) 0 1px, transparent 1px 22px);
  opacity: 0.74;
}

.contact::after {
  right: max(-58px, -4vw);
  bottom: 50%;
  z-index: 0;
  width: min(420px, 42vw);
  aspect-ratio: 1;
  background: url("assets/logo-softche-cuia.svg") center / contain no-repeat;
  filter: brightness(0) invert(1);
  opacity: 0.12;
  transform: translateY(50%);
}

.contact .eyebrow,
.contact h2,
.contact p {
  color: var(--white);
}

.contact-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.7fr);
  align-items: start;
  gap: clamp(34px, 6vw, 76px);
}

.contact-card {
  display: grid;
  gap: 12px;
  margin: 0;
  font-style: normal;
}

.contact-card a {
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.08);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.contact-card a:hover,
.contact-card a:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 213, 37, 0.36);
}

.contact-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(255, 213, 37, 0.34);
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(255, 213, 37, 0.28), rgba(255, 255, 255, 0.11)),
    rgba(255, 255, 255, 0.08);
  color: var(--yellow);
  box-shadow: 0 14px 28px rgba(0, 44, 27, 0.16);
}

.contact-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-copy {
  min-width: 0;
}

.contact-copy span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.contact-copy strong {
  display: block;
  margin-top: 4px;
  font-size: 1.16rem;
  overflow-wrap: anywhere;
}

.leadflow-loading {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: grid;
  place-items: center;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, visibility 0.18s ease;
}

.leadflow-loading.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.leadflow-loading-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 24, 18, 0.32);
  backdrop-filter: blur(3px);
}

.leadflow-loading-mark {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 112px;
  aspect-ratio: 1;
}

.leadflow-loading-logo-wrap {
  position: relative;
  display: grid;
  width: 100%;
  aspect-ratio: 1;
  place-items: center;
}

.leadflow-loading-logo-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid rgba(255, 255, 255, 0.52);
  border-top-color: var(--green);
  border-radius: 50%;
  box-shadow: 0 14px 34px rgba(0, 44, 27, 0.18);
  animation: leadflow-loading-spin 0.95s linear infinite;
}

.leadflow-loading-logo-wrap img {
  position: relative;
  width: 64px;
  max-height: 64px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 44, 27, 0.18));
}

@keyframes leadflow-loading-spin {
  to {
    transform: rotate(360deg);
  }
}

.leadflow-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 14px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, visibility 0.18s ease;
}

.leadflow-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.leadflow-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(8, 24, 18, 0.68);
  backdrop-filter: blur(8px);
  cursor: pointer;
}

.leadflow-modal-panel {
  position: relative;
  display: block;
  width: min(1080px, 100%);
  height: min(800px, calc(100svh - 28px));
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(0, 94, 58, 0.16);
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 30px 90px rgba(0, 44, 27, 0.34);
}

.leadflow-modal-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--yellow), var(--red));
}

.leadflow-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px 18px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(0, 94, 58, 0.08), rgba(255, 213, 37, 0.08)),
    var(--white);
}

.leadflow-modal-header .eyebrow {
  margin: 0 0 4px;
  color: var(--green);
  font-weight: 600;
}

.leadflow-modal-header h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.2rem, 2.2vw, 1.65rem);
  font-weight: 700;
  line-height: 1.2;
}

.leadflow-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 4;
  display: grid;
  flex: 0 0 auto;
  width: 44px;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(0, 94, 58, 0.18);
  border-radius: 50%;
  color: var(--green);
  background: var(--white);
  box-shadow: 0 12px 24px rgba(0, 44, 27, 0.12);
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.leadflow-modal-close:hover,
.leadflow-modal-close:focus-visible {
  border-color: rgba(206, 50, 54, 0.42);
  color: var(--red);
  transform: translateY(-1px);
}

.leadflow-modal-close svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
}

.leadflow-mobile-nav,
.leadflow-mobile-summary {
  display: none;
}

.leadflow-modal-body {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(420px, 1fr);
  height: 100%;
  min-height: 0;
  overflow: hidden;
}

.leadflow-side {
  display: grid;
  align-content: start;
  gap: 16px;
  min-height: 0;
  overflow-y: auto;
  padding: 24px 28px;
  color: var(--white);
  background:
    radial-gradient(circle at 20% 12%, rgba(255, 213, 37, 0.2), transparent 30%),
    linear-gradient(155deg, rgba(0, 94, 58, 0.98), rgba(15, 122, 80, 0.94)),
    var(--green);
}

.leadflow-details {
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 0;
  overflow-y: auto;
  padding: 32px 28px 26px;
  background: var(--white);
}

.leadflow-schedule-step {
  display: grid;
  gap: 18px;
}

.leadflow-side-heading {
  display: grid;
  gap: 6px;
  padding-right: 10px;
}

.leadflow-side-heading .eyebrow {
  margin: 0;
  color: var(--yellow);
  font-weight: 600;
}

.leadflow-side-heading h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.55rem, 2.6vw, 2rem);
  font-weight: 700;
  line-height: 1.08;
}

.leadflow-label {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.leadflow-member-list {
  display: grid;
  gap: 10px;
}

.leadflow-member-button {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 60px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  padding: 8px 10px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  text-align: left;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.leadflow-member-button:hover,
.leadflow-member-button:focus-visible,
.leadflow-member-button.is-selected {
  outline: none;
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}

.leadflow-member-avatar {
  display: grid;
  width: 40px;
  aspect-ratio: 1;
  place-items: center;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  color: var(--green);
  background: rgba(255, 255, 255, 0.92);
  font-weight: 700;
  line-height: 1;
}

.leadflow-member-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.leadflow-member-copy {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.leadflow-member-copy strong,
.leadflow-month-nav strong {
  min-width: 0;
  overflow: hidden;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.leadflow-member-copy span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 500;
}

.leadflow-calendar-title {
  display: grid;
  gap: 10px;
}

.leadflow-month-nav {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 34px;
  align-items: center;
  gap: 6px;
}

.leadflow-month-nav button {
  display: grid;
  width: 34px;
  aspect-ratio: 1;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
}

.leadflow-month-nav button:disabled {
  cursor: not-allowed;
  opacity: 0.34;
}

.leadflow-month-nav svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.leadflow-month-nav strong {
  font-size: 1.2rem;
  text-align: center;
  text-transform: capitalize;
}

.leadflow-weekdays,
.leadflow-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 5px;
}

.leadflow-weekdays {
  margin-top: 8px;
}

.leadflow-weekdays span {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.72rem;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
}

.leadflow-day {
  position: relative;
  display: grid;
  width: min(36px, 100%);
  height: 36px;
  justify-self: center;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.38);
  background: transparent;
  font-size: 0.88rem;
  font-weight: 500;
}

.leadflow-day.is-visible-month {
  color: rgba(255, 255, 255, 0.52);
}

.leadflow-day.is-available {
  color: var(--white);
  cursor: pointer;
}

.leadflow-day.is-available::after {
  content: "";
  position: absolute;
  bottom: 5px;
  width: 5px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
}

.leadflow-day.is-selected {
  color: var(--green);
  background: var(--white);
  box-shadow: 0 14px 30px rgba(0, 44, 27, 0.2);
}

.leadflow-day.is-selected::after {
  display: none;
}

.leadflow-day:disabled {
  cursor: not-allowed;
}

.leadflow-info {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-right: 58px;
}

.leadflow-info div {
  display: grid;
  gap: 4px;
  border: 1px solid rgba(0, 94, 58, 0.14);
  border-radius: 8px;
  padding: 14px 16px;
  background: rgba(0, 94, 58, 0.05);
}

.leadflow-info span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
}

.leadflow-info strong {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 600;
}

.leadflow-time-block {
  display: grid;
  gap: 10px;
}

.leadflow-time-block h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.2rem;
  font-weight: 650;
  line-height: 1.2;
}

.leadflow-time-block p {
  margin: 0;
  color: var(--muted);
}

.leadflow-slot-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(88px, 1fr));
  gap: 8px;
  max-height: 220px;
  min-height: 0;
  overflow-y: auto;
  padding-right: 4px;
}

.leadflow-slot-button {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--green);
  background: var(--white);
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.leadflow-slot-button:hover,
.leadflow-slot-button:focus-visible,
.leadflow-slot-button.is-selected {
  outline: none;
  border-color: rgba(0, 94, 58, 0.48);
  box-shadow: 0 10px 22px rgba(0, 44, 27, 0.1);
}

.leadflow-slot-button.is-selected {
  color: var(--white);
  background: var(--green);
}

.leadflow-empty {
  display: grid;
  min-height: 92px;
  place-items: center;
  margin: 0;
  border: 1px dashed rgba(0, 94, 58, 0.24);
  border-radius: 8px;
  padding: 18px;
  color: var(--muted);
  background: rgba(247, 247, 241, 0.72);
  font-weight: 500;
  text-align: center;
}

.leadflow-calendar-grid .leadflow-empty {
  grid-column: 1 / -1;
}

.leadflow-side .leadflow-empty {
  border-color: rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.08);
}

.leadflow-form {
  display: grid;
  gap: 12px;
  border: 1px solid rgba(0, 94, 58, 0.12);
  border-radius: 8px;
  padding: 14px;
  background: rgba(247, 247, 241, 0.78);
}

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

.leadflow-form label {
  display: grid;
  gap: 5px;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 600;
}

.leadflow-form input {
  min-height: 40px;
  width: 100%;
  border: 1px solid rgba(0, 94, 58, 0.18);
  border-radius: 6px;
  padding: 0 12px;
  color: var(--ink);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.leadflow-form input:focus {
  border-color: rgba(0, 94, 58, 0.54);
  box-shadow: 0 0 0 4px rgba(0, 94, 58, 0.1);
}

.leadflow-form-wide {
  grid-column: 1 / -1;
}

.leadflow-selected,
.leadflow-status {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 400;
  line-height: 1.4;
}

.leadflow-selected strong {
  color: var(--ink);
  font-weight: 600;
}

.leadflow-status {
  min-height: 20px;
}

.leadflow-status.is-error {
  color: #b91c1c;
}

.leadflow-status.is-success {
  color: var(--green);
}

.leadflow-submit {
  justify-self: start;
  font-weight: 700;
}

.leadflow-submit:disabled,
.leadflow-slot-button:disabled {
  cursor: not-allowed;
  opacity: 0.58;
}

.site-footer {
  padding: 22px 0;
  border-top: 1px solid var(--line);
  background: var(--white);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-inner img {
  width: 154px;
  height: 42px;
  object-fit: contain;
}

.footer-inner p {
  margin: 0;
}

.footer-inner p > span {
  white-space: nowrap;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  .orbit-item {
    animation: none;
  }

  .orbit-logo,
  .orbit-glow {
    animation: none;
  }
}

@media (max-width: 960px) {
  .site-header {
    grid-template-columns: 44px 1fr 44px;
    justify-content: stretch;
    padding: 10px 16px;
  }

  .brand {
    grid-column: 2;
    justify-self: center;
    width: 156px;
  }

  .nav-toggle {
    grid-column: 3;
    justify-self: end;
    display: block;
    border-color: rgba(255, 255, 255, 0.82);
    background: rgba(0, 94, 58, 0.94);
  }

  .site-header.is-scrolled .nav-toggle {
    border-color: rgba(0, 94, 58, 0.28);
    background: var(--white);
  }

  .nav-toggle span:not(.sr-only) {
    background: var(--white);
  }

  .site-header.is-scrolled .nav-toggle span:not(.sr-only) {
    background: var(--green);
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 40;
    display: flex;
    height: 100vh;
    height: 100dvh;
    width: min(82vw, 340px);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 12px;
    padding: 96px 22px 28px;
    border-left: 1px solid rgba(0, 94, 58, 0.14);
    border-radius: 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: -24px 0 54px rgba(11, 53, 37, 0.24);
    opacity: 0;
    pointer-events: none;
    transform: translateX(105%);
    visibility: hidden;
    overflow-y: auto;
    transition: opacity 0.24s ease, transform 0.24s ease, visibility 0.24s ease;
    text-transform: none;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
    visibility: visible;
  }

  .main-nav a {
    min-height: 52px;
    border: 1px solid rgba(0, 94, 58, 0.18);
    border-radius: 6px;
    padding: 0 16px;
    background: rgba(0, 94, 58, 0.08);
    color: var(--green);
    font-size: 1rem;
    justify-content: flex-start;
    text-shadow: none;
  }

  .main-nav a:hover,
  .main-nav a:focus-visible,
  .site-header.is-scrolled .main-nav a:hover,
  .site-header.is-scrolled .main-nav a:focus-visible {
    border-color: rgba(0, 94, 58, 0.28);
    background: var(--green);
    color: var(--white);
  }

  body.nav-open::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 25;
    background: rgba(8, 24, 18, 0.52);
  }

  body.nav-open .site-header {
    backdrop-filter: none;
  }

  .header-cta {
    display: none;
  }

  .hero-inner,
  .split,
  .split-clients,
  .contact-inner {
    grid-template-columns: 1fr;
  }

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

  .hero-copy h1 {
    font-size: 4rem;
  }

  .section-copy h2,
  .section-heading h2,
  .contact h2 {
    font-size: 2.65rem;
  }

  .hero-panel {
    max-width: 560px;
    min-height: 530px;
  }

  .orbit-scene {
    width: min(100%, 520px);
  }

  .solution-grid {
    gap: 14px;
  }

  .team-chat {
    max-width: 760px;
  }

  .footer-inner {
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    text-align: center;
  }
}

@media (max-width: 640px) {
  :root {
    --container: 1140px;
  }

  .container {
    width: calc(100% - 28px);
  }

  .leadflow-modal {
    display: block;
    padding: 0;
  }

  .leadflow-modal-panel {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .leadflow-modal-header {
    gap: 12px;
    padding: 16px 14px 14px;
  }

  .leadflow-modal-header h2 {
    font-size: 1.08rem;
  }

  .leadflow-modal-close {
    right: 12px;
    top: max(12px, env(safe-area-inset-top));
    width: 40px;
  }

  .leadflow-mobile-nav {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    padding: calc(14px + env(safe-area-inset-top)) 64px 10px 14px;
    color: var(--white);
    background:
      radial-gradient(circle at 20% 12%, rgba(255, 213, 37, 0.18), transparent 30%),
      linear-gradient(155deg, rgba(0, 94, 58, 0.98), rgba(15, 122, 80, 0.94)),
      var(--green);
  }

  .leadflow-mobile-back {
    min-height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 6px;
    padding: 0 12px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.12);
    font-size: 0.84rem;
    font-weight: 800;
    cursor: pointer;
  }

  .leadflow-mobile-back:disabled {
    opacity: 0;
    pointer-events: none;
  }

  .leadflow-mobile-nav span,
  .leadflow-mobile-nav strong {
    display: block;
    min-width: 0;
  }

  .leadflow-mobile-nav span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
  }

  .leadflow-mobile-nav strong {
    margin-top: 2px;
    color: var(--white);
    font-size: 1.06rem;
    line-height: 1.18;
  }

  .leadflow-mobile-summary {
    display: block;
    margin: 0;
    padding: 0 14px 12px;
    color: rgba(255, 255, 255, 0.78);
    background: linear-gradient(155deg, rgba(0, 94, 58, 0.98), rgba(15, 122, 80, 0.94));
    font-size: 0.86rem;
    line-height: 1.35;
  }

  .leadflow-modal-body {
    display: block;
    flex: 1 1 auto;
    height: auto;
    width: 100%;
    min-height: 0;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .leadflow-side,
  .leadflow-details {
    display: grid;
    align-content: start;
    gap: 14px;
    width: 100%;
    min-height: 100%;
    min-width: 0;
    overflow: visible;
  }

  .leadflow-modal[data-leadflow-step="member"] .leadflow-details,
  .leadflow-modal[data-leadflow-step="date"] .leadflow-details,
  .leadflow-modal[data-leadflow-step="time"] .leadflow-side,
  .leadflow-modal[data-leadflow-step="contact"] .leadflow-side {
    display: none;
  }

  .leadflow-step-section {
    display: none;
  }

  .leadflow-step-section.is-active-step {
    display: grid;
  }

  .leadflow-side {
    padding: 16px 14px calc(18px + env(safe-area-inset-bottom));
  }

  .leadflow-details {
    gap: 14px;
    padding: 14px 14px calc(18px + env(safe-area-inset-bottom));
  }

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

  .leadflow-info {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
    min-width: 0;
    margin-right: 0;
  }

  .leadflow-info div {
    min-height: 68px;
    padding: 10px;
  }

  .leadflow-info span {
    font-size: 0.68rem;
  }

  .leadflow-info strong {
    font-size: 0.92rem;
    line-height: 1.2;
    overflow-wrap: anywhere;
  }

  .leadflow-side-heading {
    display: none;
  }

  .leadflow-label {
    margin-bottom: 10px;
    font-size: 0.74rem;
  }

  .leadflow-member-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    overflow: visible;
    padding: 0;
  }

  .leadflow-member-button {
    min-height: 70px;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 12px;
    padding: 10px 12px;
    transform: none !important;
  }

  .leadflow-member-avatar {
    width: 48px;
  }

  .leadflow-member-copy strong,
  .leadflow-month-nav strong {
    font-size: 1rem;
  }

  .leadflow-member-copy span {
    font-size: 0.8rem;
  }

  .leadflow-calendar-title {
    gap: 10px;
  }

  .leadflow-month-nav {
    grid-template-columns: 42px minmax(0, 1fr) 42px;
    gap: 8px;
  }

  .leadflow-month-nav button {
    width: 42px;
    border-radius: 8px;
  }

  .leadflow-month-nav strong {
    font-size: 1.06rem;
    text-align: center;
  }

  .leadflow-weekdays {
    display: grid;
    gap: 5px;
    margin-top: 10px;
  }

  .leadflow-calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 5px;
    overflow: visible;
    padding: 0;
  }

  .leadflow-day {
    display: grid;
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    border: 1px solid transparent;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.34);
    background: rgba(255, 255, 255, 0.05);
    font-size: 0.85rem;
  }

  .leadflow-day.is-visible-month {
    color: rgba(255, 255, 255, 0.62);
  }

  .leadflow-day.is-available {
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
  }

  .leadflow-day.is-selected {
    color: var(--green);
    background: var(--white);
  }

  .leadflow-time-block {
    gap: 8px;
  }

  .leadflow-time-block h3 {
    font-size: 1.28rem;
  }

  .leadflow-time-block p {
    font-size: 0.98rem;
    line-height: 1.35;
  }

  .leadflow-slot-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    min-width: 0;
    max-height: none;
    padding-right: 0;
  }

  .leadflow-slot-button {
    min-height: 44px;
  }

  .leadflow-empty {
    min-height: 64px;
    padding: 12px;
  }

  .leadflow-form {
    gap: 10px;
    width: 100%;
    min-width: 0;
    padding: 12px;
  }

  .leadflow-form input {
    min-height: 44px;
  }

  .leadflow-selected,
  .leadflow-status {
    font-size: 0.86rem;
  }

  .leadflow-submit {
    width: 100%;
  }

  .site-header {
    width: 100%;
    padding-inline: 12px;
  }

  .main-nav {
    width: min(88vw, 320px);
    padding-inline: 18px;
  }

  .hero-copy h1 {
    font-size: 2.62rem;
    line-height: 1.02;
  }

  .hero-copy p,
  .section-copy p,
  .contact p {
    max-width: 100%;
    font-size: 1rem;
    overflow-wrap: break-word;
  }

  .section-copy h2,
  .section-heading h2,
  .contact h2 {
    font-size: 2.25rem;
  }

  .hero-panel {
    min-height: 470px;
    padding: 10px 0 0;
  }

  .orbit-scene {
    width: min(100%, 420px);
  }

  .orbit-logo {
    width: 52%;
  }

  .orbit-pill::after {
    width: 42px;
  }

  .orbit-dos {
    left: 5%;
  }

  .orbit-desktop {
    right: 8%;
  }

  .orbit-web {
    left: 15%;
  }

  .orbit-mobile {
    right: 13%;
  }

  .team-chat {
    gap: 18px;
  }

  .team-message,
  .team-message-alt {
    gap: 14px;
    align-items: center;
  }

  .team-photo {
    width: 86px;
    height: 86px;
    border-width: 4px;
    outline-width: 2px;
  }

  .team-bubble {
    padding: 16px;
  }

  .team-bubble h3 {
    font-size: 1.15rem;
  }

  .team-bubble p {
    font-size: 0.94rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions {
    align-items: stretch;
  }

  .footer-inner {
    align-items: center;
    gap: 6px;
    font-size: 0.86rem;
    line-height: 1.35;
  }

  .footer-inner img {
    width: 146px;
    height: 40px;
  }

  .footer-inner p > span {
    display: block;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .timeline article {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .solution-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .solution-grid::before {
    top: 32px;
    bottom: 32px;
    left: 50px;
    right: auto;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, var(--green), var(--yellow), var(--red));
  }

  .solution-card {
    min-height: auto;
    padding: 24px 18px 22px 96px;
  }

  .solution-card::before {
    top: 22px;
    left: 18px;
    width: 52px;
    height: 52px;
    font-size: 0.88rem;
    box-shadow:
      0 0 0 6px rgba(255, 213, 37, 0.34),
      0 12px 22px rgba(0, 44, 27, 0.14);
  }

  .solution-card::after {
    width: 72px;
    height: 72px;
  }

  .card-icon {
    position: static;
    width: 40px;
    height: 40px;
    margin-bottom: 14px;
  }

  .client-carousel {
    padding-inline: 48px;
  }

  .client-control {
    top: 69px;
    width: 40px;
    height: 40px;
  }

  .client-track {
    grid-auto-columns: minmax(210px, 100%);
  }

  .client-item {
    min-height: 122px;
    padding: 18px;
  }

  .client-item img {
    max-height: 64px;
  }

}
