:root {
  --evo-bg: #061019;
  --evo-bg-2: #0d1824;
  --evo-ink: #101828;
  --evo-text: #f8fbff;
  --evo-muted: #9aa7b9;
  --evo-soft: #f4f7fb;
  --evo-paper: #ffffff;
  --evo-line: rgba(16, 24, 40, 0.12);
  --evo-line-dark: rgba(255, 255, 255, 0.14);
  --evo-mint: #16ddc4;
  --evo-blue: #5275d0;
  --evo-gold: #f1b56c;
  --evo-width: 1180px;
  color-scheme: light;
  font-family: "Sora", "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: #040a12;
  scroll-behavior: smooth;
}

body.evo-site {
  background: var(--evo-paper);
  color: var(--evo-ink);
  display: flex;
  flex-direction: column;
  margin: 0;
  max-width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
}

body.evo-site > main {
  background: var(--evo-paper);
  flex: 1 0 auto;
}

body.evo-modal-open {
  overflow: hidden;
}

.evo-site a {
  color: inherit;
}

.evo-site img,
.evo-site video {
  display: block;
  max-width: 100%;
}

.evo-topbar {
  align-items: center;
  background: rgba(6, 16, 25, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  display: flex;
  height: 76px;
  justify-content: space-between;
  left: 0;
  padding: 0 clamp(18px, 4vw, 54px);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 30;
}

.evo-logo {
  align-items: center;
  display: inline-flex;
  text-decoration: none;
}

.evo-logo img {
  height: auto;
  width: 166px;
}

.evo-nav {
  align-items: center;
  display: flex;
  gap: 30px;
}

.evo-nav a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.evo-nav a:hover,
.evo-nav a:focus {
  color: #ffffff;
}

.evo-menu-toggle {
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: #ffffff;
  cursor: pointer;
  display: none;
  flex-direction: column;
  gap: 5px;
  height: 42px;
  justify-content: center;
  padding: 0;
  width: 42px;
}

.evo-menu-toggle span {
  background: currentColor;
  border-radius: 999px;
  display: block;
  height: 2px;
  width: 18px;
}

.evo-mobile-nav {
  background: rgba(6, 16, 25, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.38);
  display: grid;
  gap: 4px;
  left: 16px;
  padding: 10px;
  position: absolute;
  right: 16px;
  top: 76px;
}

.evo-mobile-nav[hidden] {
  display: none;
}

.evo-mobile-nav a {
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 900;
  padding: 14px 12px;
  text-decoration: none;
}

.evo-mobile-nav a:hover,
.evo-mobile-nav a:focus {
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
}

.evo-hero {
  background: var(--evo-bg);
  color: var(--evo-text);
  min-height: 86vh;
  overflow: hidden;
  padding: 132px clamp(18px, 4vw, 54px) 54px;
  position: relative;
}

.evo-hero::before {
  background:
    linear-gradient(90deg, rgba(6, 16, 25, 0.98) 0%, rgba(6, 16, 25, 0.86) 48%, rgba(6, 16, 25, 0.16) 100%),
    linear-gradient(0deg, rgba(6, 16, 25, 0.98) 0%, rgba(6, 16, 25, 0.18) 36%, rgba(6, 16, 25, 0) 100%);
  content: "";
  inset: 0;
  position: absolute;
  z-index: 1;
}

.evo-hero-video,
.evo-hero-image {
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: center;
  opacity: 0.72;
  pointer-events: none;
  position: absolute;
  width: 100%;
  z-index: 0;
}

.evo-hero-home .evo-hero-video {
  object-position: center;
}

.evo-hero-home::before {
  background:
    linear-gradient(90deg, rgba(6, 16, 25, 0.88) 0%, rgba(6, 16, 25, 0.64) 45%, rgba(6, 16, 25, 0.04) 100%),
    linear-gradient(0deg, rgba(6, 16, 25, 0.78) 0%, rgba(6, 16, 25, 0.16) 44%, rgba(6, 16, 25, 0) 100%);
}

.evo-hero-home .evo-hero-video {
  opacity: 0.92;
}

.evo-hero-home .evo-hero-content {
  align-items: center;
  display: flex;
}

.evo-hero-home .evo-hero-main {
  max-width: 740px;
}

.evo-hero-content {
  align-items: end;
  display: grid;
  gap: clamp(28px, 5vw, 70px);
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.62fr);
  margin: 0 auto;
  max-width: var(--evo-width);
  min-height: calc(86vh - 186px);
  position: relative;
  width: 100%;
  z-index: 2;
}

.evo-hero-main {
  max-width: 790px;
  min-width: 0;
}

.evo-kicker {
  color: var(--evo-mint);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin: 0 0 18px;
  text-transform: uppercase;
}

.evo-kicker-dark {
  color: var(--evo-blue);
}

.evo-hero h1,
.evo-page-title {
  color: #ffffff;
  font-size: clamp(46px, 5.6vw, 76px);
  line-height: 0.96;
  letter-spacing: 0;
  margin: 0;
  max-width: 910px;
}

.evo-page-title {
  font-size: clamp(44px, 5.1vw, 72px);
}

.evo-hero-home h1 {
  font-size: clamp(38px, 4.35vw, 58px);
  line-height: 1.04;
  max-width: 700px;
}

.evo-hero-lead {
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(18px, 1.8vw, 23px);
  line-height: 1.5;
  margin: 26px 0 0;
  max-width: 760px;
}

.evo-hero-home .evo-hero-lead {
  font-size: clamp(16px, 1.25vw, 19px);
  max-width: 620px;
}

.evo-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.evo-btn {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-size: 15px;
  font-weight: 900;
  justify-content: center;
  max-width: 100%;
  min-height: 52px;
  padding: 0 25px;
  text-decoration: none;
  white-space: nowrap;
}

.evo-btn-primary {
  background: var(--evo-mint);
  color: #031118;
}

.evo-btn-primary:hover,
.evo-btn-primary:focus {
  background: #4af0d9;
}

.evo-btn-secondary {
  border-color: rgba(255, 255, 255, 0.34);
  color: #ffffff;
}

.evo-btn-secondary:hover,
.evo-btn-secondary:focus {
  background: rgba(255, 255, 255, 0.1);
}

.evo-hero-proof {
  border: 1px solid var(--evo-line-dark);
  background: rgba(4, 12, 21, 0.58);
  backdrop-filter: blur(16px);
  display: grid;
  gap: 1px;
  grid-template-columns: 1fr;
  overflow: hidden;
}

.evo-hero-proof div {
  border-bottom: 1px solid var(--evo-line-dark);
  padding: 22px;
}

.evo-hero-proof div:last-child {
  border-bottom: 0;
}

.evo-hero-proof strong {
  color: #ffffff;
  display: block;
  font-size: 34px;
  line-height: 1;
}

.evo-hero-proof span {
  color: rgba(255, 255, 255, 0.68);
  display: block;
  font-size: 13px;
  line-height: 1.4;
  margin-top: 8px;
}

.evo-impact-strip {
  background: #ffffff;
  border-bottom: 1px solid var(--evo-line);
}

.evo-impact-inner {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 auto;
  max-width: var(--evo-width);
  padding: 0 20px;
}

.evo-impact-item {
  border-left: 1px solid var(--evo-line);
  padding: 28px 30px;
}

.evo-impact-item:last-child {
  border-right: 1px solid var(--evo-line);
}

.evo-impact-item strong {
  color: var(--evo-ink);
  display: block;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1;
  margin-bottom: 8px;
}

.evo-impact-item span {
  color: #5b6878;
  display: block;
  font-size: 14px;
  line-height: 1.4;
}

.evo-section {
  padding: 96px 20px;
}

.evo-section-dark {
  background: var(--evo-bg);
  color: var(--evo-text);
}

.evo-section-soft {
  background: var(--evo-soft);
}

.evo-section-paper {
  background: var(--evo-paper);
}

.evo-container {
  margin: 0 auto;
  max-width: var(--evo-width);
  min-width: 0;
  width: 100%;
}

.evo-section-head {
  align-items: end;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.58fr);
  margin-bottom: 42px;
  min-width: 0;
}

.evo-section-head > *,
.evo-situation-grid > *,
.evo-process-grid > *,
.evo-race-grid > *,
.evo-testimonial-grid > *,
.evo-step-grid > *,
.evo-proof-grid > *,
.evo-business-grid > *,
.evo-franchise-grid > *,
.evo-final-inner > *,
.evo-form-section-inner > *,
.evo-footer-inner > *,
.evo-footer-columns > * {
  min-width: 0;
}

.evo-section-head h2,
.evo-panel-copy h2,
.evo-final h2 {
  font-size: clamp(36px, 4.2vw, 58px);
  line-height: 1.02;
  letter-spacing: 0;
  margin: 0;
}

.evo-section-head p,
.evo-panel-copy p,
.evo-final p {
  color: #536174;
  font-size: 18px;
  line-height: 1.55;
  margin: 0;
}

.evo-section-dark .evo-section-head p,
.evo-section-dark .evo-panel-copy p,
.evo-section-dark .evo-final p {
  color: rgba(255, 255, 255, 0.68);
}

.evo-situation-grid,
.evo-race-grid,
.evo-testimonial-grid,
.evo-step-grid,
.evo-proof-grid,
.evo-business-grid,
.evo-franchise-grid {
  display: grid;
  gap: 16px;
}

.evo-situation-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.evo-section-focus {
  background:
    linear-gradient(180deg, #ffffff 0%, #ffffff 52%, #f4f7fb 52%, #f4f7fb 100%);
}

.evo-section-focus .evo-section-head {
  align-items: start;
  margin-bottom: 34px;
}

.evo-section-focus .evo-section-head h2 {
  max-width: 740px;
}

.evo-card {
  border: 1px solid var(--evo-line);
  border-radius: 8px;
  min-width: 0;
  padding: 26px;
}

.evo-card-dark {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

.evo-card-light {
  background: #ffffff;
}

.evo-card strong,
.evo-card h3 {
  display: block;
  font-size: 22px;
  line-height: 1.16;
  margin: 0 0 12px;
}

.evo-card p {
  color: #5f6c7d;
  font-size: 15.5px;
  line-height: 1.5;
  margin: 0;
}

.evo-card-dark p {
  color: rgba(255, 255, 255, 0.66);
}

.evo-card a {
  color: var(--evo-blue);
  display: inline-block;
  font-weight: 900;
  margin-top: 20px;
  text-decoration: none;
}

.evo-situation-card {
  background: #ffffff;
  border-color: rgba(16, 24, 40, 0.1);
  box-shadow: 0 18px 44px rgba(16, 24, 40, 0.07);
  display: flex;
  flex-direction: column;
  min-height: 214px;
  padding: 28px;
  position: relative;
}

.evo-situation-card::before {
  background: var(--evo-mint);
  content: "";
  height: 3px;
  left: 28px;
  position: absolute;
  top: 0;
  width: 54px;
}

.evo-situation-card h3 {
  font-size: 24px;
  margin-bottom: 14px;
}

.evo-situation-card p {
  color: #536174;
  font-size: 16px;
  line-height: 1.55;
}

.evo-situation-card a {
  align-items: center;
  align-self: flex-start;
  background: #061019;
  border-radius: 999px;
  color: #ffffff;
  display: inline-flex;
  font-size: 14px;
  justify-content: center;
  margin-top: auto;
  min-height: 42px;
  padding: 0 18px;
}

.evo-situation-card a:hover,
.evo-situation-card a:focus {
  background: #102235;
}

.evo-section-cta {
  align-items: center;
  background: #061019;
  border-radius: 8px;
  color: #ffffff;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  margin-top: 22px;
  padding: 22px 24px;
}

.evo-section-cta p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
  line-height: 1.45;
  margin: 0;
}

.evo-card-dark a {
  color: var(--evo-mint);
}

.evo-section-process {
  background: #f4f7fb;
}

.evo-process-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.evo-process-grid article {
  background: #ffffff;
  border: 1px solid var(--evo-line);
  border-radius: 8px;
  min-height: 244px;
  padding: 26px;
}

.evo-process-grid span {
  color: var(--evo-blue);
  display: block;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 32px;
}

.evo-process-grid h3 {
  font-size: 23px;
  line-height: 1.16;
  margin: 0 0 12px;
}

.evo-process-grid p {
  color: #596779;
  font-size: 15.5px;
  line-height: 1.5;
  margin: 0;
}

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

.evo-race-card {
  background: #ffffff;
  border: 1px solid var(--evo-line);
  border-radius: 8px;
  min-height: 286px;
  padding: 26px;
}

.evo-race-letter {
  align-items: center;
  background: #061019;
  color: var(--evo-mint);
  display: inline-flex;
  font-size: 34px;
  font-weight: 900;
  height: 58px;
  justify-content: center;
  margin-bottom: 24px;
  width: 58px;
}

.evo-race-card h3 {
  font-size: 22px;
  line-height: 1.15;
  margin: 0 0 12px;
}

.evo-race-card p {
  color: #586678;
  font-size: 15.5px;
  line-height: 1.5;
  margin: 0;
}

.evo-panel {
  align-items: center;
  display: grid;
  gap: clamp(28px, 5vw, 70px);
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
}

.evo-panel-media {
  min-width: 0;
}

.evo-panel-media img,
.evo-panel-media video {
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.evo-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.evo-list-item {
  border-top: 1px solid var(--evo-line);
  padding-top: 16px;
}

.evo-section-dark .evo-list-item {
  border-top-color: rgba(255, 255, 255, 0.16);
}

.evo-list-item strong {
  display: block;
  font-size: 18px;
  margin-bottom: 5px;
}

.evo-list-item span {
  color: #5f6c7d;
  display: block;
  font-size: 15px;
  line-height: 1.45;
}

.evo-section-dark .evo-list-item span {
  color: rgba(255, 255, 255, 0.66);
}

.evo-logo-strip {
  background: var(--evo-bg);
  border-block: 1px solid rgba(255, 255, 255, 0.08);
  color: #ffffff;
  overflow: hidden;
  padding: 44px 0 48px;
}

.evo-logo-inner {
  margin: 0 auto;
  max-width: none;
}

.evo-logo-proof-head {
  margin: 0 auto 30px;
  max-width: 760px;
  padding: 0 20px;
  text-align: center;
}

.evo-logo-proof-head p {
  color: var(--evo-mint);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  line-height: 1.4;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.evo-logo-proof-head h2 {
  color: #ffffff;
  font-size: clamp(34px, 4.1vw, 56px);
  line-height: 1.03;
  margin: 0;
}

.evo-proof-metrics {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 auto 34px;
  max-width: var(--evo-width);
  padding: 0 20px;
}

.evo-proof-metrics div {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 24px;
}

.evo-proof-metrics strong {
  color: #ffffff;
  display: block;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1;
  margin-bottom: 9px;
}

.evo-proof-metrics span {
  color: rgba(255, 255, 255, 0.62);
  display: block;
  font-size: 14px;
  line-height: 1.4;
}

.evo-logo-inner p {
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.26em;
  line-height: 1.4;
  margin: 0 0 22px;
  text-align: center;
  text-transform: uppercase;
}

.evo-logo-inner .evo-logo-proof-head p {
  color: var(--evo-mint);
  font-size: 12px;
  letter-spacing: 0.18em;
  margin: 0 0 12px;
  padding: 0;
}

.evo-logo-grid {
  align-items: center;
  display: flex;
  gap: 12px;
  min-width: max-content;
  width: max-content;
  animation: evo-logo-scroll 55s linear infinite;
}

.evo-logo-ticker {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.evo-logo-ticker:hover .evo-logo-grid {
  animation-play-state: paused;
}

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

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

.evo-logo-tile {
  align-items: center;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  display: flex;
  flex: none;
  height: 92px;
  justify-content: center;
  padding: 16px 22px;
  transition: background 220ms ease, border-color 220ms ease;
  width: 236px;
}

.evo-logo-tile:hover {
  background: #ffffff;
  border-color: rgba(255, 255, 255, 0.3);
}

.evo-logo-tile img {
  filter: grayscale(1);
  height: 58px;
  object-fit: contain;
  opacity: 0.82;
  transition: opacity 220ms ease;
  width: 100%;
}

.evo-logo-tile:hover img {
  opacity: 0.95;
}

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

.evo-video-card {
  background: #0b1520;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  overflow: hidden;
}

.evo-video-card video {
  aspect-ratio: 9 / 16;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.evo-video-card div {
  padding: 16px;
}

.evo-video-card strong {
  display: block;
  font-size: 16px;
  margin-bottom: 4px;
}

.evo-video-card span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

@media (max-width: 767px) {
  html {
    scroll-behavior: auto;
  }

  .evo-topbar,
  .evo-hero-proof {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .evo-logo-grid {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    min-width: 0;
    width: 100%;
  }

  .evo-logo-ticker {
    -webkit-mask-image: none;
    mask-image: none;
  }

  .evo-logo-tile img {
    filter: none;
  }
}

.evo-business-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.evo-step-grid {
  counter-reset: evo-step;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.evo-step {
  border-top: 2px solid var(--evo-blue);
  padding-top: 18px;
}

.evo-step::before {
  color: var(--evo-blue);
  content: counter(evo-step, decimal-leading-zero);
  counter-increment: evo-step;
  display: block;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 16px;
}

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

.evo-stat {
  background: #061019;
  border-radius: 8px;
  color: #ffffff;
  min-height: 150px;
  padding: 24px;
}

.evo-stat strong {
  color: var(--evo-mint);
  display: block;
  font-size: clamp(30px, 3.8vw, 46px);
  line-height: 1;
  margin-bottom: 10px;
}

.evo-stat span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.4;
}

.evo-franchise-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.evo-final {
  background: #061019;
  color: #ffffff;
  padding: 86px 20px;
}

.evo-final-inner {
  align-items: center;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) auto;
  margin: 0 auto;
  max-width: var(--evo-width);
}

.evo-form-section {
  background: #ffffff;
  padding: 82px 20px 34px;
}

.evo-form-section-inner {
  align-items: start;
  display: grid;
  gap: clamp(28px, 5vw, 76px);
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 0.72fr);
  margin: 0 auto;
  max-width: var(--evo-width);
}

.evo-form-intro {
  max-width: 620px;
}

.evo-form-intro h2 {
  font-size: clamp(38px, 4.2vw, 58px);
  line-height: 1.02;
  margin: 0;
}

.evo-form-intro p {
  color: #536174;
  font-size: 18px;
  line-height: 1.55;
  margin: 20px 0 0;
}

.evo-next-steps {
  border-top: 1px solid var(--evo-line);
  display: grid;
  gap: 10px;
  margin-top: 28px;
  padding-top: 22px;
}

.evo-next-steps strong {
  color: #101828;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.evo-next-steps span {
  color: #536174;
  display: grid;
  font-size: 15px;
  line-height: 1.4;
  padding-left: 18px;
  position: relative;
}

.evo-next-steps span::before {
  background: var(--evo-mint);
  border-radius: 999px;
  content: "";
  height: 7px;
  left: 0;
  position: absolute;
  top: 7px;
  width: 7px;
}

.evo-form-intro .evo-btn {
  margin-top: 28px;
}

.evo-whatsapp-btn {
  background: #25d366;
  border-color: #25d366;
  color: #031118;
}

.evo-whatsapp-btn:hover,
.evo-whatsapp-btn:focus {
  background: #5de08b;
}

.evo-inline-form {
  background: #f4f7fb;
  border: 1px solid var(--evo-line);
  border-radius: 8px;
  padding: 28px;
}

.evo-footer {
  background: #040a12;
  color: rgba(255, 255, 255, 0.72);
  flex: none;
  margin-bottom: -1px;
  padding: 24px 20px 14px;
}

.evo-footer-inner {
  align-items: start;
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(200px, 0.72fr) minmax(0, 1.65fr);
  justify-content: space-between;
  margin: 0 auto;
  max-width: var(--evo-width);
}

.evo-footer-brand img {
  width: 122px;
}

.evo-footer-brand p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  line-height: 1.4;
  margin: 10px 0 0;
  max-width: 280px;
}

.evo-footer-columns {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.evo-footer-columns div {
  display: grid;
  gap: 6px;
}

.evo-footer strong {
  color: #ffffff;
  display: block;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 2px;
  text-transform: uppercase;
}

.evo-footer a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  line-height: 1.4;
  text-decoration: none;
}

.evo-footer a:hover,
.evo-footer a:focus {
  color: #ffffff;
}

.evo-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.44);
  display: flex;
  font-size: 12px;
  gap: 14px;
  justify-content: space-between;
  margin: 16px auto 0;
  max-width: var(--evo-width);
  padding-top: 10px;
}

.evo-modal {
  align-items: center;
  display: flex;
  inset: 0;
  justify-content: center;
  padding: 18px;
  position: fixed;
  z-index: 80;
}

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

.evo-modal-backdrop {
  background: rgba(2, 8, 14, 0.78);
  inset: 0;
  position: absolute;
}

.evo-modal-panel {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.38);
  color: var(--evo-ink);
  display: grid;
  gap: 22px;
  max-height: calc(100vh - 36px);
  max-width: 640px;
  overflow-y: auto;
  padding: 34px;
  position: relative;
  width: min(640px, 100%);
  z-index: 1;
}

.evo-modal-close {
  align-items: center;
  background: #eef2f6;
  border: 0;
  border-radius: 999px;
  color: var(--evo-ink);
  cursor: pointer;
  display: flex;
  font-size: 24px;
  height: 40px;
  justify-content: center;
  position: absolute;
  right: 16px;
  top: 16px;
  width: 40px;
}

.evo-form-copy {
  padding-right: 44px;
}

.evo-form-copy h2 {
  font-size: 34px;
  line-height: 1.05;
  margin: 0 0 10px;
}

.evo-form-copy p:last-child {
  color: #5b6878;
  line-height: 1.45;
  margin: 0;
}

.evo-form {
  display: grid;
  gap: 14px;
}

.evo-field {
  display: grid;
  gap: 7px;
}

.evo-field label {
  color: #344054;
  font-size: 13px;
  font-weight: 900;
}

.evo-field label span {
  color: #7b8797;
  font-weight: 700;
}

.evo-field input,
.evo-field select {
  background: #f8fafc;
  border: 1px solid #d7dee8;
  border-radius: 8px;
  color: #111827;
  font: inherit;
  min-height: 48px;
  padding: 0 13px;
  width: 100%;
}

.evo-form button[type="submit"] {
  background: var(--evo-blue);
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  min-height: 52px;
  margin-top: 6px;
}

body.evo-site .evo-chat-teaser {
  display: none !important;
}

body.evo-site .evo-chat-widget-wrap {
  bottom: 24px !important;
  right: 24px !important;
}

@media (max-width: 1024px) {
  .evo-hero-content,
  .evo-section-head,
  .evo-panel,
  .evo-logo-inner,
  .evo-final-inner {
    grid-template-columns: 1fr;
  }

  .evo-hero-proof {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .evo-situation-grid,
  .evo-process-grid,
  .evo-race-grid,
  .evo-business-grid,
  .evo-step-grid,
  .evo-proof-grid,
  .evo-franchise-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 767px) {
  .evo-topbar {
    height: 70px;
    justify-content: space-between;
    padding: 0 16px;
  }

  .evo-logo img {
    width: 138px;
  }

  .evo-nav {
    display: none;
  }

  .evo-menu-toggle {
    display: inline-flex;
  }

  .evo-mobile-nav {
    top: 70px;
  }

  .evo-hero {
    min-height: auto;
    max-width: 100vw;
    padding: 112px 16px 34px;
  }

  .evo-hero::before {
    background:
      linear-gradient(180deg, rgba(6, 16, 25, 0.52) 0%, rgba(6, 16, 25, 0.86) 38%, rgba(6, 16, 25, 1) 100%);
  }

  .evo-hero-home::before {
    background:
      linear-gradient(180deg, rgba(6, 16, 25, 0.22) 0%, rgba(6, 16, 25, 0.66) 32%, rgba(6, 16, 25, 0.98) 100%);
  }

  .evo-hero-video,
  .evo-hero-image {
    opacity: 0.64;
  }

  .evo-hero-home .evo-hero-video {
    opacity: 0.86;
  }

  .evo-hero-content {
    gap: 30px;
    min-height: auto;
    max-width: 100%;
    width: 100%;
  }

  .evo-hero-main,
  .evo-container,
  .evo-section-head,
  .evo-form-section-inner,
  .evo-final-inner {
    max-width: min(100%, 358px);
  }

  .evo-hero-home .evo-hero-main {
    max-width: min(100%, 358px);
    min-width: 0;
    width: 100%;
  }

  .evo-hero h1,
  .evo-page-title {
    font-size: 34px;
    line-height: 1.04;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .evo-hero-home h1 {
    font-size: 28px;
    line-height: 1.08;
    max-width: 340px;
    overflow-wrap: anywhere;
  }

  .evo-hero-lead {
    font-size: 17px;
    line-height: 1.45;
    max-width: min(100%, 358px);
    overflow-wrap: anywhere;
  }

  .evo-hero-home .evo-hero-lead {
    font-size: 15.5px;
    line-height: 1.48;
  }

  .evo-actions {
    align-items: stretch;
    flex-direction: column;
    width: 100%;
  }

  .evo-btn {
    padding: 0 18px;
    text-align: center;
    white-space: normal;
    width: 100%;
  }

  .evo-hero-proof,
  .evo-situation-grid,
  .evo-process-grid,
  .evo-race-grid,
  .evo-business-grid,
  .evo-step-grid,
  .evo-proof-grid,
  .evo-franchise-grid,
  .evo-testimonial-grid {
    grid-template-columns: 1fr;
  }

  .evo-hero-proof div {
    padding: 18px;
  }

  .evo-impact-inner {
    grid-template-columns: 1fr;
    padding: 0 16px;
  }

  .evo-impact-item {
    border-left: 0;
    border-top: 1px solid var(--evo-line);
    padding: 22px 0;
  }

  .evo-impact-item:first-child {
    border-top: 0;
  }

  .evo-impact-item:last-child {
    border-right: 0;
  }

  .evo-section {
    padding: 64px 16px;
  }

  .evo-section-head {
    gap: 16px;
    margin-bottom: 30px;
  }

  .evo-section-head h2,
  .evo-panel-copy h2,
  .evo-final h2 {
    font-size: 30px;
    line-height: 1.08;
    overflow-wrap: anywhere;
  }

  .evo-card,
  .evo-race-card {
    padding: 22px;
  }

  .evo-card h3,
  .evo-card p,
  .evo-situation-card h3,
  .evo-situation-card p,
  .evo-race-card h3,
  .evo-race-card p,
  .evo-process-grid h3,
  .evo-process-grid p {
    overflow-wrap: anywhere;
  }

  .evo-situation-card h3 {
    font-size: 22px;
    line-height: 1.16;
  }

  .evo-situation-card {
    min-height: auto;
  }

  .evo-section-cta {
    align-items: stretch;
    flex-direction: column;
    padding: 20px;
  }

  .evo-section-cta p {
    font-size: 15.5px;
  }

  .evo-section-focus {
    background: #ffffff;
  }

  .evo-logo-strip {
    padding: 36px 0 40px;
  }

  .evo-logo-proof-head {
    margin-bottom: 24px;
  }

  .evo-logo-proof-head h2 {
    font-size: 34px;
  }

  .evo-proof-metrics {
    grid-template-columns: 1fr;
    margin-bottom: 28px;
    padding: 0 16px;
  }

  .evo-proof-metrics div {
    padding: 20px;
  }

  .evo-logo-inner p {
    font-size: 10px;
    letter-spacing: 0.16em;
    padding: 0 16px;
  }

  .evo-logo-tile {
    height: 80px;
    padding: 12px 16px;
    width: 200px;
  }

  .evo-logo-tile img {
    height: 52px;
  }

  .evo-final-inner {
    align-items: stretch;
  }

  .evo-form-section {
    padding: 52px 16px 20px;
  }

  .evo-form-section-inner {
    grid-template-columns: 1fr;
  }

  .evo-form-intro h2 {
    font-size: 34px;
  }

  .evo-form-intro p {
    font-size: 16px;
  }

  .evo-next-steps {
    margin-top: 22px;
  }

  .evo-inline-form {
    padding: 20px;
  }

  .evo-footer-inner {
    align-items: flex-start;
    gap: 20px;
    grid-template-columns: 1fr;
  }

  .evo-footer-columns {
    gap: 14px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
  }

  .evo-footer {
    padding: 22px 20px 14px;
  }

  .evo-footer-brand img {
    width: 112px;
  }

  .evo-footer-brand p {
    margin-top: 8px;
  }

  .evo-footer-bottom {
    margin-top: 14px;
    padding-top: 10px;
  }

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

  .evo-modal {
    align-items: stretch;
    padding: 12px;
  }

  .evo-modal-panel {
    max-height: calc(100vh - 24px);
    padding: 58px 18px 18px;
  }

  .evo-form-copy {
    padding-right: 0;
  }

  body.evo-site .evo-chat-widget-wrap {
    bottom: calc(14px + env(safe-area-inset-bottom)) !important;
    right: 14px !important;
  }

  body.evo-site .evo-chat-trigger {
    height: 54px !important;
    width: 54px !important;
  }
}
