:root {
  --background-primary: #070b0d;
  --background-secondary: #0c1113;
  --surface: #111719;
  --surface-light: #171e20;
  --green-primary: #b7ff00;
  --green-secondary: #8fd900;
  --text-primary: #f4f6f5;
  --text-secondary: #9da7a3;
  --border: rgba(255, 255, 255, 0.1);
  --green-glow: rgba(183, 255, 0, 0.28);
  --container: 1180px;
  --radius: 22px;
  --header-height: 76px;
}

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

html {
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--background-primary);
  color: var(--text-primary);
  font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--green-primary);
  color: #080b0c;
  font-weight: 800;
}

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

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

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgba(7, 11, 13, 0.72);
  backdrop-filter: blur(18px);
  transition: border-color 0.3s ease, background 0.3s ease;
}

.site-header.scrolled {
  border-color: var(--border);
  background: rgba(7, 11, 13, 0.92);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 100%;
}

.brand {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.brand span {
  color: var(--green-primary);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 27px;
  color: #bdc6c2;
  font-size: 13px;
  font-weight: 650;
}

.main-nav > a:not(.button) {
  transition: color 0.2s ease;
}

.main-nav > a:not(.button):hover {
  color: var(--text-primary);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
  color: var(--text-primary);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 0.25s ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid var(--green-primary);
  border-radius: 12px;
  background: var(--green-primary);
  box-shadow: 0 10px 30px rgba(183, 255, 0, 0.12);
  color: #080b0c;
  font-size: 14px;
  font-weight: 850;
  line-height: 1.2;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  background: #c6ff35;
  box-shadow: 0 14px 40px rgba(183, 255, 0, 0.22);
}

.button-small {
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 12px;
}

.button-secondary {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.035);
  box-shadow: none;
  color: var(--text-primary);
}

.button-secondary:hover {
  border-color: rgba(183, 255, 0, 0.45);
  background: rgba(183, 255, 0, 0.07);
}

.section-grid {
  position: relative;
  isolation: isolate;
}

.section-grid::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, black, transparent 92%);
  content: "";
}

.orb {
  position: absolute;
  z-index: -1;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(183, 255, 0, 0.12), rgba(183, 255, 0, 0) 67%);
  pointer-events: none;
}

.orb-one {
  top: -160px;
  right: -120px;
}

.orb-two {
  bottom: -230px;
  left: 50%;
  transform: translateX(-50%);
}

.hero {
  min-height: 780px;
  padding: calc(var(--header-height) + 70px) 0 96px;
  border-bottom: 1px solid var(--border);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(480px, 0.98fr);
  gap: 70px;
  align-items: center;
}

.eyebrow {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 0 0 18px;
  color: var(--green-primary);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 25px;
  height: 1px;
  background: currentColor;
  content: "";
}

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

h1,
h2,
h3 {
  line-height: 1.08;
}

h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(42px, 4.25vw, 55px);
  letter-spacing: -0.052em;
}

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

h2 {
  max-width: 820px;
  margin-bottom: 20px;
  font-size: clamp(34px, 4vw, 54px);
  letter-spacing: -0.045em;
}

h3 {
  margin-bottom: 12px;
  font-size: 20px;
  letter-spacing: -0.022em;
}

.hero-lead {
  max-width: 670px;
  margin-bottom: 30px;
  color: #b5bfbb;
  font-size: 18px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.hero-support {
  max-width: 650px;
  margin-bottom: 18px;
  color: var(--text-secondary);
  font-size: 13px;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  margin: 0;
  padding: 0;
  color: #c7cfcc;
  font-size: 12px;
  font-weight: 700;
  list-style: none;
}

.trust-list li {
  display: flex;
  gap: 8px;
  align-items: center;
}

.trust-list li::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  box-shadow: 0 0 10px var(--green-glow);
  background: var(--green-primary);
  content: "";
}

.device-stage {
  position: relative;
  min-height: 520px;
  transform: perspective(1200px) rotateY(-3deg);
}

.device-stage::before {
  position: absolute;
  inset: 60px 50px 35px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(183, 255, 0, 0.2), transparent 68%);
  filter: blur(20px);
  content: "";
}

.hero-desktop-mockup {
  display: grid;
  min-height: 0;
  place-items: center;
  transform: none;
}

.hero-desktop-mockup::before {
  inset: 8% 6%;
}

.hero-desktop-mockup img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  box-shadow: 0 38px 90px rgba(0, 0, 0, 0.48);
  object-fit: cover;
  transform: scaleX(-1);
}

.orbit {
  position: absolute;
  inset: 48px 5px 55px;
  border: 1px solid rgba(183, 255, 0, 0.18);
  border-radius: 50%;
}

.orbit::after {
  position: absolute;
  top: 27%;
  left: 1%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  box-shadow: 0 0 14px var(--green-primary);
  background: var(--green-primary);
  content: "";
}

.orbit-two {
  inset: 95px -20px 95px 50px;
  transform: rotate(-18deg);
}

.monitor {
  position: absolute;
  top: 55px;
  right: 12px;
  width: min(100%, 470px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  background: #111719;
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.55);
}

.monitor-top {
  display: flex;
  gap: 5px;
  align-items: center;
  height: 28px;
  padding: 0 12px;
  border-bottom: 1px solid var(--border);
}

.monitor-top span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #394044;
}

.monitor-top small {
  margin-left: auto;
  color: #68716e;
  font-size: 7px;
}

.monitor-screen {
  overflow: hidden;
  padding: 22px;
  border-radius: 0 0 17px 17px;
  background:
    linear-gradient(135deg, rgba(183, 255, 0, 0.05), transparent 45%),
    #080c0e;
}

.screen-hero {
  min-height: 185px;
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background:
    radial-gradient(circle at 80% 30%, rgba(183, 255, 0, 0.12), transparent 25%),
    linear-gradient(145deg, #141b1d, #090d0f);
}

.screen-hero p {
  margin-bottom: 14px;
  color: var(--green-primary);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.screen-hero strong {
  display: block;
  width: 60%;
  margin-bottom: 20px;
  font-size: 23px;
  line-height: 1.05;
}

.screen-hero span,
.phone-screen > span {
  display: inline-block;
  padding: 7px 11px;
  border-radius: 5px;
  background: var(--green-primary);
  color: #090d0f;
  font-size: 7px;
  font-weight: 900;
}

.service-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 8px;
}

.service-mini-grid article {
  padding: 12px 10px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #111719;
}

.service-mini-grid i {
  display: block;
  margin-bottom: 14px;
  color: var(--green-primary);
  font-size: 7px;
  font-style: normal;
}

.service-mini-grid b {
  font-size: 8px;
}

.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  height: 62px;
  margin-top: 8px;
  border-radius: 8px;
  background: linear-gradient(110deg, #111719 50%, #27302d 50%);
}

.before-after span {
  display: grid;
  place-items: end start;
  padding: 9px;
  color: #dfe4e2;
  font-size: 6px;
  font-weight: 850;
}

.monitor-stand {
  position: absolute;
  bottom: -58px;
  left: 50%;
  width: 120px;
  height: 58px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #151b1d, #303739, #151b1d);
  clip-path: polygon(37% 0, 63% 0, 72% 82%, 88% 90%, 88% 100%, 12% 100%, 12% 90%, 28% 82%);
}

.phone {
  position: absolute;
  right: -15px;
  bottom: 25px;
  width: 150px;
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 25px;
  background: #090c0d;
  box-shadow: 0 26px 55px rgba(0, 0, 0, 0.65);
}

.phone-notch {
  position: absolute;
  z-index: 2;
  top: 12px;
  left: 50%;
  width: 44px;
  height: 10px;
  transform: translateX(-50%);
  border-radius: 10px;
  background: #050708;
}

.phone-screen {
  min-height: 285px;
  padding: 30px 12px 14px;
  border-radius: 20px;
  background: #101618;
}

.phone-screen small {
  color: var(--green-primary);
  font-size: 6px;
  letter-spacing: 0.15em;
}

.phone-photo {
  height: 125px;
  margin: 10px 0;
  border-radius: 9px;
  background:
    radial-gradient(circle at 75% 65%, rgba(183, 255, 0, 0.16), transparent 26%),
    linear-gradient(145deg, #252e30, #090d0f 65%);
}

.phone-photo::after {
  display: block;
  width: 75%;
  height: 40px;
  margin-left: 15%;
  transform: translateY(48px) skewX(-16deg);
  border-top: 2px solid #9ca5a1;
  border-radius: 60% 70% 0 0;
  content: "";
}

.phone-screen b {
  display: block;
  margin-bottom: 12px;
  font-size: 11px;
}

.message-chip {
  position: absolute;
  z-index: 3;
  right: 72px;
  bottom: 5px;
  padding: 10px 14px;
  border: 1px solid rgba(183, 255, 0, 0.28);
  border-radius: 10px;
  background: rgba(16, 23, 25, 0.94);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.45);
  color: #dbe1de;
  font-size: 9px;
  font-weight: 750;
}

.message-chip span {
  margin-right: 7px;
  color: var(--green-primary);
}

.section {
  padding: 120px 0;
  border-bottom: 1px solid var(--border);
}

.section-heading {
  max-width: 790px;
  margin-bottom: 52px;
}

.section-heading > p:not(.eyebrow) {
  max-width: 740px;
  color: var(--text-secondary);
  font-size: 17px;
}

.problem {
  background: var(--background-secondary);
}

.card-grid {
  display: grid;
  gap: 16px;
}

.card-grid.four {
  grid-template-columns: repeat(4, 1fr);
}

.card-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.card,
.quote-card {
  min-height: 245px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.025), transparent 50%),
    var(--surface);
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.card:hover,
.quote-card:hover {
  transform: translateY(-4px);
  border-color: rgba(183, 255, 0, 0.3);
}

.card > span,
.mosaic-card > span {
  display: block;
  margin-bottom: 44px;
  color: var(--green-primary);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.problem-card .problem-icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 42px;
  place-items: center;
  border: 1px solid rgba(183, 255, 0, 0.28);
  border-radius: 14px;
  background: rgba(183, 255, 0, 0.055);
  color: var(--green-primary);
}

.problem-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.card p,
.mosaic-card p,
.steps p {
  margin-bottom: 0;
  color: var(--text-secondary);
  font-size: 14px;
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 38px;
}

.solution {
  overflow: hidden;
}

.split-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 90px;
  align-items: center;
}

.solution-visual {
  position: relative;
  min-height: 480px;
}

.solution-visual::before {
  position: absolute;
  inset: 35px 15px 10px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(183, 255, 0, 0.12), transparent 65%);
  content: "";
}

.solution-desktop {
  position: absolute;
  top: 52px;
  left: 0;
  overflow: hidden;
  width: 90%;
  min-height: 360px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: #080c0e;
  box-shadow: 0 45px 100px rgba(0, 0, 0, 0.5);
}

.auto-site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 40px;
  padding: 0 20px;
  border-bottom: 1px solid var(--border);
  color: #6f7875;
  font-size: 6px;
}

.auto-site-nav b {
  color: var(--green-primary);
  letter-spacing: 0.14em;
}

.auto-site-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 185px;
  padding: 28px;
  background:
    radial-gradient(circle at 78% 48%, rgba(183, 255, 0, 0.12), transparent 28%),
    #0b1012;
}

.auto-site-hero small {
  color: var(--green-primary);
  font-size: 6px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.auto-site-hero strong {
  display: block;
  margin: 14px 0 18px;
  font-size: 22px;
  line-height: 1.03;
}

.auto-site-hero i {
  display: inline-block;
  padding: 7px 10px;
  border-radius: 5px;
  background: var(--green-primary);
  color: #070b0d;
  font-size: 6px;
  font-style: normal;
  font-weight: 900;
}

.auto-car-line {
  align-self: center;
  height: 72px;
  transform: skewX(-13deg);
  border-top: 2px solid #d9dfdc;
  border-right: 1px solid #77807c;
  border-radius: 85% 58% 12% 10%;
  box-shadow: 15px -10px 28px rgba(183, 255, 0, 0.1);
}

.auto-service-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  padding: 10px 18px;
}

.auto-service-row span {
  min-height: 45px;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 7px;
  background: #111719;
  color: #c9d0cd;
  font-size: 6px;
  font-weight: 700;
}

.auto-result-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 18px 16px;
  padding: 12px;
  border-radius: 7px;
  background: linear-gradient(100deg, #151c1e 50%, #29312f 50%);
  color: #79827f;
  font-size: 5px;
}

.auto-result-row b {
  color: var(--green-primary);
  letter-spacing: 0.12em;
}

.solution-phone {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 5px;
  width: 145px;
  min-height: 285px;
  padding: 29px 12px 13px;
  border: 5px solid #252c2e;
  border-radius: 25px;
  background: #0f1517;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.62);
}

.solution-phone-notch {
  position: absolute;
  top: 9px;
  left: 50%;
  width: 43px;
  height: 8px;
  transform: translateX(-50%);
  border-radius: 10px;
  background: #050708;
}

.solution-phone small {
  color: var(--green-primary);
  font-size: 5px;
  letter-spacing: 0.14em;
}

.mobile-car-shot {
  height: 128px;
  margin: 11px 0;
  border-radius: 8px;
  background:
    radial-gradient(circle at 72% 38%, rgba(183, 255, 0, 0.16), transparent 24%),
    linear-gradient(145deg, #30393a, #070a0c 68%);
}

.mobile-car-shot::after {
  display: block;
  width: 76%;
  height: 38px;
  margin-left: 12%;
  transform: translateY(52px) skewX(-15deg);
  border-top: 2px solid #d1d7d4;
  border-radius: 75% 65% 0 0;
  content: "";
}

.solution-phone strong {
  display: block;
  margin-bottom: 12px;
  font-size: 11px;
  line-height: 1.12;
}

.solution-phone > span {
  display: block;
  padding: 8px 6px;
  border-radius: 5px;
  background: var(--green-primary);
  color: #070b0d;
  font-size: 6px;
  font-weight: 900;
  text-align: center;
}

.solution-copy > p:not(.eyebrow, .closing-copy) {
  max-width: 630px;
  color: var(--text-secondary);
  font-size: 17px;
}

.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 32px 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  gap: 10px;
  align-items: center;
  color: #d0d7d4;
  font-size: 18px;
}

.feature-list li::before {
  display: grid;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  place-items: center;
  border: 1px solid rgba(183, 255, 0, 0.35);
  border-radius: 50%;
  color: var(--green-primary);
  content: "✓";
  font-size: 10px;
}

.closing-copy {
  max-width: 640px;
  margin-bottom: 28px;
  padding-left: 18px;
  border-left: 2px solid var(--green-primary);
  color: #c4cdca;
  font-size: 16px;
}

.feature-card {
  min-height: 280px;
}

.feature-card > span {
  font-size: 30px;
  letter-spacing: 0.16em;
}

.process {
  background: var(--background-secondary);
}

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

.steps::before {
  position: absolute;
  top: 22px;
  right: 9%;
  left: 9%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(183, 255, 0, 0.45), transparent);
  content: "";
}

.steps li {
  position: relative;
  padding: 0 18px;
  text-align: center;
}

.steps li > span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 46px;
  height: 46px;
  margin: 0 auto 24px;
  place-items: center;
  border: 1px solid rgba(183, 255, 0, 0.4);
  border-radius: 50%;
  background: var(--background-secondary);
  color: var(--green-primary);
  font-size: 10px;
  font-weight: 900;
}

.steps h3 {
  font-size: 16px;
}

.process-note {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  justify-content: center;
  margin-top: 55px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
  font-size: 14px;
  text-align: center;
}

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

.process-note span {
  color: var(--text-secondary);
}

.differentiators {
  overflow: hidden;
}

.problem .section-heading,
#beneficios .section-heading,
.process .section-heading,
.differentiators .section-heading,
.demo .section-heading,
.testimonials .section-heading {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.problem .section-heading .eyebrow,
#beneficios .section-heading .eyebrow,
.process .section-heading .eyebrow,
.differentiators .section-heading .eyebrow,
.demo .section-heading .eyebrow,
.testimonials .section-heading .eyebrow {
  justify-content: center;
}

.problem .section-heading > p:not(.eyebrow),
#beneficios .section-heading > p:not(.eyebrow),
.process .section-heading > p:not(.eyebrow),
.differentiators .section-heading > p:not(.eyebrow),
.demo .section-heading > p:not(.eyebrow),
.testimonials .section-heading > p:not(.eyebrow) {
  margin-right: auto;
  margin-left: auto;
}

.mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  gap: 14px;
}

.mosaic-card {
  height: 100%;
  min-height: 230px;
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
}

.mosaic-card > span {
  margin-bottom: 48px;
}

.mosaic-card .mosaic-icon {
  display: grid;
  width: 64px;
  height: 64px;
  margin-bottom: 38px;
  place-items: center;
  border: 1px solid rgba(183, 255, 0, 0.3);
  border-radius: 17px;
  background: rgba(183, 255, 0, 0.055);
  color: var(--green-primary);
}

.mosaic-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.mosaic-card:nth-child(2),
.mosaic-card:nth-child(5) {
  background:
    radial-gradient(circle at 70% 85%, rgba(183, 255, 0, 0.08), transparent 40%),
    var(--surface);
}

.demo {
  overflow: hidden;
  background: var(--background-secondary);
}

.demo-stage {
  position: relative;
  overflow: hidden;
  margin-top: 30px;
  border: 1px solid var(--border);
  border-radius: 26px;
  background: #050809;
  box-shadow: 0 45px 110px rgba(0, 0, 0, 0.56);
}

.demo-stage::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 70px rgba(183, 255, 0, 0.035);
  content: "";
  pointer-events: none;
}

.demo-stage img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.demo-screen-ui {
  position: absolute;
  z-index: 2;
  top: 13.2%;
  left: 20.4%;
  width: 61.5%;
  height: 65.5%;
  color: var(--text-primary);
  pointer-events: none;
}

.demo-screen-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.5%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: clamp(5px, 0.53vw, 8px);
}

.demo-screen-menu b {
  color: var(--green-primary);
  letter-spacing: 0.14em;
}

.demo-screen-menu span {
  color: #76807c;
}

.demo-screen-copy {
  position: absolute;
  top: 23%;
  left: 4%;
  width: 39%;
}

.demo-screen-copy small {
  color: var(--green-primary);
  font-size: clamp(5px, 0.52vw, 8px);
  font-weight: 850;
  letter-spacing: 0.14em;
}

.demo-screen-copy strong {
  display: block;
  margin: 8% 0 6%;
  font-size: clamp(13px, 2.15vw, 30px);
  line-height: 1.02;
}

.demo-screen-copy p {
  margin-bottom: 8%;
  color: #939e99;
  font-size: clamp(6px, 0.8vw, 11px);
  line-height: 1.45;
}

.demo-screen-copy i {
  display: inline-block;
  padding: 4% 7%;
  border-radius: 5px;
  background: var(--green-primary);
  box-shadow: 0 8px 22px rgba(183, 255, 0, 0.13);
  color: #070b0d;
  font-size: clamp(5px, 0.65vw, 9px);
  font-style: normal;
  font-weight: 900;
}

.testimonials {
  background: #090e10;
}

.quote-card {
  min-height: 320px;
}

.quote-card > span {
  display: block;
  height: 35px;
  color: var(--green-primary);
  font-family: Georgia, serif;
  font-size: 54px;
  line-height: 1;
}

.quote-card blockquote {
  margin: 24px 0;
  color: #d6ddda;
  font-size: 15px;
}

.quote-card p {
  margin-bottom: 0;
  color: var(--text-secondary);
  font-size: 12px;
}

.quote-card strong {
  display: block;
  color: var(--text-primary);
  font-size: 13px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 90px;
}

.accordion {
  border-top: 1px solid var(--border);
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item h3 {
  margin: 0;
}

.faq-item button {
  display: flex;
  width: 100%;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  border: 0;
  background: transparent;
  color: var(--text-primary);
  cursor: pointer;
  font-weight: 750;
  text-align: left;
}

.faq-item button span {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  margin-left: 20px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--green-primary);
  transition: transform 0.25s ease;
}

.faq-item button[aria-expanded="true"] span {
  transform: rotate(45deg);
}

.faq-item [role="region"] {
  padding: 0 44px 22px 0;
}

.faq-item [role="region"] p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 14px;
}

.final-cta {
  overflow: hidden;
  padding: 130px 0;
  text-align: center;
}

.final-cta::before {
  mask-image: linear-gradient(to bottom, transparent, black 25%, black 75%, transparent);
}

.final-cta-inner {
  max-width: 900px;
}

.final-cta .eyebrow {
  justify-content: center;
}

.final-cta h2 {
  margin-inline: auto;
}

.final-cta p:not(.eyebrow) {
  max-width: 700px;
  margin: 0 auto 28px;
  color: var(--text-secondary);
}

.final-cta .button-row {
  justify-content: center;
}

.final-cta small {
  display: block;
  max-width: 620px;
  margin: 20px auto 0;
  color: #79827f;
  font-size: 16px;
}

.site-footer {
  padding: 70px 0 25px;
  border-top: 1px solid var(--border);
  background: #050809;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 45px;
}

.footer-grid p {
  max-width: 330px;
  margin: 18px 0 0;
  color: var(--text-secondary);
  font-size: 13px;
}

.footer-grid nav,
.footer-legal {
  display: grid;
  align-content: start;
  gap: 11px;
  color: #afb8b4;
  font-size: 13px;
}

.footer-grid a:hover {
  color: var(--green-primary);
}

.social-link {
  color: var(--green-primary);
}

.legal-notes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  padding: 28px 0;
  border-top: 1px solid var(--border);
  color: #69716e;
  font-size: 11px;
}

.legal-notes p {
  margin: 0;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border);
  color: #68706d;
  font-size: 11px;
}

.whatsapp-float {
  position: fixed;
  z-index: 80;
  right: 22px;
  bottom: 22px;
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border: 1px solid rgba(183, 255, 0, 0.55);
  border-radius: 50%;
  background: var(--green-primary);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  color: #070b0d;
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: #070b0d;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.whatsapp-float .phone-mark {
  fill: #070b0d;
  stroke: none;
}

.mobile-cta {
  display: none;
}

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

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

@media (max-width: 1199px) {
  :root {
    --container: 960px;
  }

  .main-nav {
    gap: 18px;
  }

  .hero-grid {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 35px;
  }

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

  .faq-grid {
    gap: 55px;
  }
}

@media (max-width: 991px) {
  :root {
    --header-height: 70px;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    z-index: 99;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: grid;
    max-height: 0;
    overflow: hidden;
    gap: 0;
    padding: 0 24px;
    border-bottom: 1px solid transparent;
    background: rgba(7, 11, 13, 0.98);
    opacity: 0;
    visibility: hidden;
    transition: max-height 0.35s ease, opacity 0.25s ease, visibility 0.25s ease;
  }

  .main-nav.is-open {
    max-height: calc(100vh - var(--header-height));
    padding-top: 14px;
    padding-bottom: 24px;
    overflow-y: auto;
    border-color: var(--border);
    opacity: 1;
    visibility: visible;
  }

  .main-nav > a:not(.button) {
    display: flex;
    min-height: 52px;
    align-items: center;
    border-bottom: 1px solid var(--border);
    font-size: 15px;
  }

  .main-nav .button {
    margin-top: 18px;
  }

  .hero-grid,
  .split-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: calc(var(--header-height) + 60px);
  }

  .hero-copy {
    max-width: 760px;
  }

  .device-stage {
    width: min(620px, 100%);
    margin: 0 auto;
  }

  .split-grid {
    gap: 50px;
  }

  .solution-visual {
    order: 2;
    width: min(560px, 100%);
    margin-inline: auto;
  }

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

  .steps {
    grid-template-columns: 1fr 1fr;
    gap: 30px 10px;
  }

  .steps::before {
    display: none;
  }

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

  .footer-grid {
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 35px;
  }
}

@media (max-width: 767px) {
  .container {
    width: min(100% - 32px, 620px);
  }

  .section {
    padding: 84px 0;
  }

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

  .hero-copy {
    margin-inline: auto;
    text-align: center;
  }

  .hero-copy .eyebrow {
    justify-content: center;
  }

  h1 {
    margin-right: auto;
    margin-left: auto;
    font-size: clamp(34px, 9vw, 42px);
  }

  h2 {
    font-size: clamp(32px, 9vw, 45px);
  }

  .hero-lead,
  .section-heading > p:not(.eyebrow),
  .solution-copy > p:not(.eyebrow, .closing-copy) {
    font-size: 16px;
  }

  .hero-lead,
  .hero-support {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

  .button-row {
    display: grid;
  }

  .button-row .button {
    width: 100%;
  }

  .trust-list {
    display: grid;
    width: fit-content;
    margin-right: auto;
    margin-left: auto;
    justify-items: center;
    text-align: center;
  }

  .trust-list li {
    justify-content: center;
  }

  .device-stage {
    display: grid;
    width: 100%;
    max-width: 520px;
    min-height: 0;
    margin: 12px auto 0;
    place-items: center;
  }

  .hero-desktop-mockup img {
    width: 100%;
    border-radius: 22px;
  }

  .monitor {
    top: 32px;
    right: 5%;
    width: 90%;
  }

  .monitor-screen {
    padding: 13px;
  }

  .screen-hero {
    min-height: 130px;
    padding: 18px;
  }

  .screen-hero strong {
    font-size: 18px;
  }

  .before-after {
    height: 48px;
  }

  .phone {
    right: 0;
    bottom: 0;
    width: 125px;
  }

  .phone-screen {
    min-height: 235px;
  }

  .phone-photo {
    height: 100px;
  }

  .message-chip {
    right: 54px;
    bottom: -8px;
  }

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

  .card,
  .quote-card {
    min-height: auto;
  }

  .card > span {
    margin-bottom: 28px;
  }

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

  .feature-list li {
    font-size: 16px;
  }

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

  .steps li {
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 0 18px;
    padding: 0;
    text-align: left;
  }

  .steps li > span {
    grid-row: span 2;
    margin: 0;
  }

  .steps h3 {
    margin-top: 3px;
  }

  .process-note {
    display: grid;
    text-align: center;
  }

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

  .demo-stage {
    border-radius: 18px;
  }

  .faq-grid {
    gap: 10px;
  }

  .final-cta {
    padding: 95px 0 120px;
  }

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

  .footer-grid {
    gap: 38px;
  }

  .legal-notes {
    gap: 18px;
  }

  .whatsapp-float {
    display: none;
  }

  .mobile-cta {
    position: fixed;
    z-index: 90;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    padding: 10px 16px max(10px, env(safe-area-inset-bottom));
    border-top: 1px solid var(--border);
    background: rgba(7, 11, 13, 0.94);
    backdrop-filter: blur(16px);
  }

  .mobile-cta .button {
    width: 100%;
  }

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

@media (max-width: 479px) {
  .container {
    width: calc(100% - 26px);
  }

  .hero {
    padding-top: calc(var(--header-height) + 42px);
  }

  .eyebrow {
    font-size: 9px;
  }

  h1 {
    font-size: 34px;
  }

  .device-stage {
    min-height: 0;
  }

  .service-mini-grid article {
    padding: 8px 7px;
  }

  .solution-visual {
    min-height: 420px;
  }

  .solution-desktop {
    top: 34px;
    width: 94%;
  }

  .solution-phone {
    right: 0;
    width: 124px;
    min-height: 245px;
  }

  .mobile-car-shot {
    height: 102px;
  }
}

@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;
  }

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