:root {
  --green: #18c879;
  --green-dark: #0fa363;
  --green-soft: #e7f8ef;
  --ink: #071119;
  --ink-2: #0d1a24;
  --ink-3: #132430;
  --text: #10202b;
  --muted: #65737c;
  --line: #dce7e2;
  --panel: #ffffff;
  --soft: #f6f8f7;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(7, 17, 25, .10);
  --shadow-strong: 0 24px 70px rgba(7, 17, 25, .22);
  --radius: 8px;
  --header-h: 72px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  letter-spacing: 0;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--soft);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

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

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

.container {
  width: min(100% - 72px, 1340px);
  margin: 0 auto;
}

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

.skip-link:focus {
  z-index: 999;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 12px 14px;
  clip: auto;
  color: var(--ink);
  border-radius: var(--radius);
  background: var(--white);
}

.site-header {
  position: fixed;
  z-index: 80;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-h);
  color: var(--white);
  background: rgba(5, 13, 20, .94);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  transition: background-color .24s ease, box-shadow .24s ease, border-color .24s ease;
  backdrop-filter: blur(16px);
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(5, 13, 20, .98);
  border-color: rgba(24, 200, 121, .22);
  box-shadow: 0 14px 38px rgba(0, 0, 0, .24);
}

.header-inner {
  width: min(100% - 52px, 1440px);
  height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 28px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
}

.brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  border-radius: 8px;
}

.brand span,
.footer-brand span {
  display: grid;
  gap: 2px;
  line-height: .95;
  font-style: normal;
}

.brand strong,
.brand em,
.footer-brand strong,
.footer-brand em {
  display: block;
  font-style: normal;
  font-weight: 900;
}

.brand strong {
  font-size: 1.06rem;
}

.brand em {
  color: var(--green);
  font-size: 1.08rem;
}

.nav-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  min-width: 0;
}

.primary-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  color: rgba(255, 255, 255, .92);
  font-size: .92rem;
  font-weight: 800;
  white-space: nowrap;
  transition: color .2s ease;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .24s ease;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  color: var(--white);
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-actions,
.hero-actions,
.cta-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.button {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  overflow: hidden;
  border-radius: var(--radius);
  font-size: .94rem;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  transition: transform .22s ease, border-color .22s ease, background-color .22s ease, box-shadow .22s ease;
}

.button::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -1;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, .28) 45%, transparent 65%);
  transform: translateX(-120%);
  transition: transform .55s ease;
}

.button:hover::before,
.button:focus-visible::before {
  transform: translateX(120%);
}

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

.button svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-small {
  min-height: 42px;
  padding: 0 18px;
  font-size: .86rem;
}

.button-primary {
  color: var(--white);
  background: linear-gradient(180deg, var(--green), var(--green-dark));
  box-shadow: 0 16px 34px rgba(24, 200, 121, .28);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 18px 44px rgba(24, 200, 121, .36);
}

.button-ghost,
.button-outline {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .48);
  background: rgba(255, 255, 255, .04);
}

.button-ghost:hover,
.button-outline:hover,
.button-ghost:focus-visible,
.button-outline:focus-visible {
  border-color: rgba(255, 255, 255, .82);
  background: rgba(255, 255, 255, .10);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, .30);
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(255, 255, 255, .06);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: currentColor;
  transition: opacity .2s ease, transform .2s ease;
}

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

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

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

.hero {
  position: relative;
  min-height: 92svh;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  isolation: isolate;
}

.hero-bg,
.hero-overlay,
.hero-light-lines {
  position: absolute;
  inset: 0;
}

.hero-bg {
  z-index: -4;
  width: 100%;
  height: 116%;
  max-width: none;
  opacity: 0;
  background-image: url("../assets/hero-vehicles-clean.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  filter: saturate(1.08) contrast(1.04) brightness(1.02);
  will-change: transform, opacity;
  animation:
    heroBgFade .9s ease forwards,
    heroBgMotion 26s ease-in-out infinite alternate;
}

.hero-overlay {
  z-index: -3;
  background:
    radial-gradient(circle at 22% 55%, rgba(3, 10, 15, .64) 0%, rgba(3, 10, 15, .44) 34%, transparent 64%),
    linear-gradient(90deg, rgba(4, 10, 16, .78) 0%, rgba(4, 10, 16, .60) 31%, rgba(4, 10, 16, .18) 62%, rgba(4, 10, 16, .34) 100%),
    linear-gradient(180deg, rgba(4, 10, 16, .08) 0%, rgba(4, 10, 16, .24) 72%, rgba(4, 10, 16, .76) 100%);
}

.hero-light-lines {
  z-index: -2;
  opacity: .56;
  mix-blend-mode: screen;
  background:
    linear-gradient(108deg, transparent 0 19%, rgba(24, 200, 121, .00) 19.4%, rgba(24, 200, 121, .28) 19.8%, rgba(139, 255, 199, .08) 20.5%, transparent 21.2%),
    linear-gradient(108deg, transparent 0 47%, rgba(24, 200, 121, .00) 47.3%, rgba(24, 200, 121, .22) 47.8%, rgba(255, 255, 255, .09) 48.4%, transparent 49.1%),
    linear-gradient(108deg, transparent 0 72%, rgba(24, 200, 121, .00) 72.1%, rgba(24, 200, 121, .20) 72.6%, rgba(255, 255, 255, .08) 73.1%, transparent 73.8%);
  filter: blur(.2px);
  animation: heroLightSweep 14s ease-in-out infinite alternate;
  pointer-events: none;
}

.hero-content {
  min-height: 92svh;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  align-items: center;
  gap: 36px;
  padding: calc(var(--header-h) + 70px) 0 34px;
}

.hero-copy {
  width: min(100%, 720px);
  padding-top: 22px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, .88);
  font-size: 1.08rem;
  font-weight: 900;
}

.mini-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(24, 200, 121, .56);
  border-radius: var(--radius);
  background: rgba(24, 200, 121, .10);
  box-shadow: 0 0 26px rgba(24, 200, 121, .18);
}

.mini-logo img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.hero h1 {
  max-width: 690px;
  font-size: 4.35rem;
  line-height: 1.10;
  font-weight: 950;
  text-wrap: balance;
  text-shadow: 0 16px 44px rgba(0, 0, 0, .48);
}

.hero h1 span,
.section-heading h2 span,
.screens-copy h2 span,
.final-cta h2 span {
  color: var(--green);
}

.hero-subtitle {
  max-width: 640px;
  margin-top: 26px;
  color: rgba(255, 255, 255, .90);
  font-size: 1.25rem;
  line-height: 1.58;
  font-weight: 650;
  text-shadow: 0 12px 34px rgba(0, 0, 0, .44);
}

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

.hero-benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding-top: 28px;
}

.hero-benefits article,
.cta-benefits article {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  border: 1px solid rgba(24, 200, 121, .42);
  border-radius: 50%;
  color: var(--green);
  background: rgba(24, 200, 121, .10);
  box-shadow: 0 0 24px rgba(24, 200, 121, .14);
}

.benefit-icon svg,
.round-icon svg,
.feature-icon svg,
.social-links svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-benefits strong,
.cta-benefits strong {
  display: block;
  color: var(--white);
  font-size: .96rem;
  font-weight: 900;
}

.hero-benefits small {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, .80);
  font-size: .86rem;
}

.section {
  padding: 76px 0;
  scroll-margin-top: calc(var(--header-h) + 20px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading h2,
.screens-copy h2,
.final-cta h2 {
  color: var(--ink);
  font-size: 2.45rem;
  line-height: 1.16;
  font-weight: 950;
}

.section-heading p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
}

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

.testimonials-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(24, 200, 121, .12), transparent 38%),
    linear-gradient(180deg, #f7fbf9 0%, #ffffff 100%);
}

.testimonials-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent, rgba(24, 200, 121, .08), transparent),
    radial-gradient(circle at 18% 72%, rgba(24, 200, 121, .10), transparent 26%);
  opacity: .72;
}

.testimonials-shell {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
}

.testimonials-heading {
  max-width: 820px;
  margin-bottom: 22px;
}

.testimonials-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  min-height: 32px;
  margin-bottom: 14px;
  padding: 0 13px;
  color: #f3a713;
  border: 1px solid rgba(243, 167, 19, .22);
  border-radius: 999px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 12px 28px rgba(7, 17, 25, .06);
  font-size: .96rem;
  letter-spacing: .08em;
}

.testimonials-badge::after {
  content: "";
  position: absolute;
  inset: -10% -30%;
  background: linear-gradient(105deg, transparent 18%, rgba(255, 255, 255, .88) 46%, transparent 70%);
  transform: translateX(-130%);
  opacity: 0;
}

.testimonial-rating {
  display: grid;
  justify-items: center;
  gap: 5px;
  min-width: min(100%, 260px);
  margin-bottom: 28px;
  padding: 20px 24px;
  border: 1px solid rgba(24, 200, 121, .22);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(255, 255, 255, .88));
  box-shadow: 0 18px 42px rgba(7, 17, 25, .08);
}

.trust-stars {
  position: relative;
  display: inline-block;
  overflow: hidden;
  color: #f3a713;
  font-size: 1.18rem;
  line-height: 1;
  letter-spacing: .08em;
}

.trust-stars::after {
  content: "";
  position: absolute;
  inset: -10% -30%;
  background: linear-gradient(105deg, transparent 18%, rgba(255, 255, 255, .92) 46%, transparent 70%);
  transform: translateX(-130%);
  opacity: 0;
}

.testimonials-shell.is-visible .trust-stars::after,
.testimonials-shell.is-visible .testimonials-badge::after {
  animation: starShine 1.05s ease .28s forwards;
}

.testimonial-rating strong {
  color: var(--ink);
  font-size: 2.08rem;
  line-height: 1;
  font-weight: 950;
}

.testimonial-rating small {
  color: var(--muted);
  font-size: .86rem;
  font-weight: 800;
}

.testimonials-carousel {
  width: 100%;
  max-width: 1080px;
}

.testimonials-track {
  display: grid;
  grid-template-columns: repeat(var(--testimonial-visible-count, 3), minmax(0, 1fr));
  gap: 18px;
  min-height: 236px;
  transition: opacity .35s ease, transform .35s ease;
}

.testimonials-track.is-fading {
  opacity: 0;
  transform: translateY(8px);
}

.testimonial-card {
  min-width: 0;
  min-height: 222px;
  display: grid;
  align-content: space-between;
  gap: 18px;
  padding: 24px;
  border: 1px solid rgba(220, 231, 226, .88);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(255, 255, 255, .92));
  box-shadow: 0 16px 36px rgba(7, 17, 25, .07);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.testimonial-card:hover,
.testimonial-card:focus-within {
  transform: translateY(-6px);
  border-color: rgba(24, 200, 121, .36);
  box-shadow: 0 22px 50px rgba(7, 17, 25, .13);
}

.testimonial-card-stars {
  color: #f3a713;
  font-size: .94rem;
  letter-spacing: .08em;
}

.testimonial-card blockquote {
  margin: 0;
  color: #24333c;
  font-size: 1rem;
  line-height: 1.58;
  font-weight: 720;
}

.testimonial-author {
  display: grid;
  gap: 3px;
}

.testimonial-author strong {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 950;
}

.testimonial-author span {
  color: var(--green-dark);
  font-size: .86rem;
  font-weight: 900;
}

.testimonials-indicators {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
}

.testimonials-indicators button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(7, 17, 25, .18);
  cursor: pointer;
  transition: width .22s ease, background-color .22s ease;
}

.testimonials-indicators button.is-active {
  width: 28px;
  background: var(--green);
}

.testimonials-cta {
  min-height: 56px;
  margin-top: 30px;
  padding: 0 28px;
  font-size: .98rem;
  transform-origin: center;
}

.testimonials-cta:hover,
.testimonials-cta:focus-visible {
  transform: translateY(-2px) scale(1.035);
  box-shadow: 0 24px 54px rgba(24, 200, 121, .36);
}

.flow-track {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.flow-step {
  position: relative;
  min-width: 0;
  padding: 0 6px 16px;
  text-align: center;
}

.flow-step::after {
  content: "";
  position: absolute;
  top: 44px;
  right: -19px;
  width: 21px;
  height: 13px;
  opacity: .92;
  background:
    linear-gradient(var(--green), var(--green)) left 6px top 6px / 16px 2px no-repeat,
    linear-gradient(45deg, transparent 45%, var(--green) 46% 56%, transparent 57%) right 0 top 1px / 9px 9px no-repeat,
    linear-gradient(-45deg, transparent 45%, var(--green) 46% 56%, transparent 57%) right 0 bottom 1px / 9px 9px no-repeat;
  transform: translateX(-6px);
}

.flow-step:last-child::after {
  display: none;
}

.round-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 84px;
  height: 84px;
  margin: 0 auto;
  border: 1px solid #cfe7dd;
  border-radius: 50%;
  color: var(--ink);
  background: #fafdfe;
  box-shadow: inset 0 0 0 8px rgba(24, 200, 121, .03);
}

.flow-step h3 {
  margin-top: 18px;
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.2;
  font-weight: 950;
}

.flow-step p {
  width: min(150px, 100%);
  margin: 9px auto 0;
  color: #4c5960;
  font-size: .9rem;
  line-height: 1.45;
}

.features-section {
  background: linear-gradient(180deg, #f8faf9 0%, #ffffff 100%);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.feature-card {
  min-height: 142px;
  padding: 24px 24px 22px;
  border: 1px solid rgba(220, 231, 226, .75);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 12px 28px rgba(7, 17, 25, .05);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.feature-card:hover,
.feature-card:focus-within {
  transform: translateY(-6px);
  border-color: rgba(24, 200, 121, .34);
  box-shadow: var(--shadow);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: var(--green-dark);
}

.feature-card h3 {
  margin-top: 10px;
  color: var(--ink);
  font-size: .98rem;
  line-height: 1.25;
  font-weight: 950;
}

.feature-card p {
  margin-top: 10px;
  color: #52616a;
  font-size: .88rem;
  line-height: 1.52;
}

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

.screens-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 42px;
  align-items: center;
}

.screens-copy h2 {
  color: var(--ink);
}

.screens-copy p {
  margin-top: 14px;
  color: #22313a;
  font-size: 1.13rem;
  line-height: 1.55;
}

.screens-copy .button {
  margin-top: 28px;
  min-height: 50px;
}

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

.screenshot-card {
  min-width: 0;
}

.screenshot-card img {
  width: 100%;
  aspect-ratio: 1.64 / 1;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-strong);
  background: #eef5f1;
}

.screenshot-card h3 {
  margin-top: 20px;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 950;
}

.screenshot-card p {
  margin-top: 8px;
  color: #52616a;
  font-size: .92rem;
  line-height: 1.45;
}

.final-cta {
  padding: 62px 0;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(5, 13, 20, .99) 0%, rgba(7, 24, 33, .99) 52%, rgba(5, 13, 20, .99) 100%),
    var(--ink);
}

.cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, .9fr) minmax(260px, .72fr);
  gap: 36px;
  align-items: center;
}

.final-cta h2 {
  max-width: 640px;
  color: var(--white);
  font-size: 2.35rem;
}

.cta-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.cta-benefits article {
  display: grid;
  justify-items: start;
  gap: 10px;
}

.cta-benefits .benefit-icon {
  width: 42px;
  height: 42px;
}

.cta-benefits strong {
  font-size: .88rem;
  line-height: 1.3;
}

.cta-actions {
  display: grid;
  gap: 12px;
}

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

.contact-section {
  scroll-margin-top: calc(var(--header-h) + 18px);
  color: var(--ink);
  background:
    linear-gradient(180deg, #ffffff 0%, #f6f9f8 100%);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(480px, 1fr);
  gap: 48px;
  align-items: center;
}

.contact-copy {
  max-width: 560px;
}

.contact-eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  color: var(--green-dark);
  border: 1px solid rgba(24, 200, 121, .28);
  border-radius: var(--radius);
  background: var(--green-soft);
  font-size: .82rem;
  font-weight: 950;
}

.contact-copy h2 {
  margin-top: 18px;
  color: var(--ink);
  font-size: 2.55rem;
  line-height: 1.12;
  font-weight: 950;
}

.contact-copy p:not(.contact-eyebrow) {
  margin-top: 16px;
  color: #43515a;
  font-size: 1.06rem;
  line-height: 1.6;
}

.contact-cards {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(7, 17, 25, .12);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(7, 17, 25, .98), rgba(12, 32, 43, .96));
  box-shadow: var(--shadow-strong);
}

.contact-card {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-width: 0;
  padding: 18px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .06);
  transition: transform .22s ease, border-color .22s ease, background-color .22s ease;
}

.contact-card:hover,
.contact-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(24, 200, 121, .58);
  background: rgba(255, 255, 255, .10);
}

.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .08);
}

.contact-icon svg {
  width: 52px;
  height: 52px;
}

.whatsapp-business-mark {
  background: rgba(24, 200, 121, .12);
}

.whatsapp-business-mark .wa-bubble {
  fill: #25d366;
}

.whatsapp-business-mark .wa-phone {
  fill: #ffffff;
}

.whatsapp-business-mark .wa-b {
  fill: #0b2b1c;
}

.email-mark {
  color: var(--green);
}

.email-mark svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-card-body {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.contact-card-kicker {
  color: rgba(255, 255, 255, .66);
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.contact-card strong {
  min-width: 0;
  color: var(--white);
  font-size: 1.24rem;
  line-height: 1.18;
  font-weight: 950;
  overflow-wrap: anywhere;
}

.contact-card small {
  color: rgba(255, 255, 255, .70);
  font-size: .92rem;
  line-height: 1.4;
}

.site-footer {
  color: rgba(255, 255, 255, .80);
  background: #071119;
  border-top: 1px solid rgba(255, 255, 255, .10);
}

.footer-grid {
  min-height: 82px;
  display: grid;
  grid-template-columns: minmax(210px, 1fr) auto auto auto;
  gap: 34px;
  align-items: center;
}

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

.footer-brand strong,
.footer-brand em {
  font-size: .8rem;
}

.footer-brand em {
  color: var(--green);
}

.site-footer nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: .88rem;
  font-weight: 800;
}

.site-footer a {
  transition: color .2s ease;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--white);
}

.footer-copy {
  font-size: .86rem;
  white-space: nowrap;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.social-links a {
  display: inline-flex;
  color: rgba(255, 255, 255, .84);
}

.social-links svg {
  width: 18px;
  height: 18px;
}

.js [data-hero-item] {
  opacity: 0;
  transform: translateY(18px);
  animation: heroFadeUp .72s ease forwards;
}

.js .hero-copy [data-hero-item]:nth-child(1) {
  animation-delay: .06s;
}

.js .hero-copy [data-hero-item]:nth-child(2) {
  animation-delay: .16s;
}

.js .hero-copy [data-hero-item]:nth-child(3) {
  animation-delay: .26s;
}

.js .hero-copy [data-hero-item]:nth-child(4) {
  animation-delay: .36s;
}

.js .hero-benefits[data-hero-item] {
  animation-delay: .48s;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .66s ease, transform .66s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.js .testimonials-shell[data-reveal].is-visible {
  transition-duration: .8s;
}

.js .flow-track .flow-step {
  opacity: 0;
  transform: translateY(18px);
}

.js .flow-track.is-visible .flow-step {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .52s ease, transform .52s ease;
  transition-delay: calc(var(--i) * 95ms);
}

.js .flow-track .flow-step::after {
  opacity: 0;
  transform: translateX(-16px);
}

.js .flow-track.is-visible .flow-step::after {
  opacity: .92;
  transform: translateX(0);
  transition: opacity .42s ease, transform .42s ease;
  transition-delay: calc((var(--i) * 95ms) + 240ms);
}

.js .screenshot-card[data-reveal] {
  transform: translateY(34px);
}

@keyframes heroBgFade {
  to {
    opacity: 1;
  }
}

@keyframes heroBgMotion {
  0% {
    transform: translate3d(-1.1%, var(--hero-parallax, 0px), 0) scale(1.045);
  }

  50% {
    transform: translate3d(.8%, var(--hero-parallax, 0px), 0) scale(1.072);
  }

  100% {
    transform: translate3d(1.2%, var(--hero-parallax, 0px), 0) scale(1.058);
  }
}

@keyframes heroLightSweep {
  from {
    transform: translateX(-18px);
  }

  to {
    transform: translateX(22px);
  }
}

@keyframes heroFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes starShine {
  0% {
    opacity: 0;
    transform: translateX(-130%);
  }

  18% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateX(130%);
  }
}

@media (max-width: 1220px) {
  .header-inner {
    width: min(100% - 32px, 1140px);
    gap: 18px;
  }

  .primary-nav {
    gap: 16px;
  }

  .button-small {
    padding: 0 14px;
  }

  .hero h1 {
    font-size: 3.72rem;
  }

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

  .testimonials-track {
    --testimonial-visible-count: 2;
    max-width: 820px;
    margin: 0 auto;
  }

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

  .cta-benefits {
    max-width: 560px;
  }

  .cta-actions {
    max-width: 360px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-copy {
    max-width: 680px;
  }
}

@media (max-width: 980px) {
  .container {
    width: min(100% - 44px, 860px);
  }

  .header-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: inline-block;
  }

  .nav-shell {
    position: fixed;
    top: calc(var(--header-h) + 10px);
    right: 18px;
    left: 18px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 18px;
    border: 1px solid rgba(24, 200, 121, .24);
    border-radius: var(--radius);
    background: rgba(5, 13, 20, .98);
    box-shadow: var(--shadow-strong);
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity .22s ease, transform .22s ease;
  }

  .nav-shell.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .primary-nav,
  .header-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .primary-nav a,
  .header-actions .button {
    justify-content: center;
    width: 100%;
  }

  .primary-nav a::after {
    display: none;
  }

  .hero {
    min-height: 88svh;
  }

  .hero-bg {
    background-position: center center;
  }

  .hero-content {
    min-height: 88svh;
    padding-top: calc(var(--header-h) + 52px);
  }

  .hero h1 {
    font-size: 3.08rem;
  }

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

  .flow-track {
    grid-template-columns: 1fr;
    max-width: 620px;
    margin: 0 auto;
    gap: 14px;
  }

  .flow-step {
    min-height: 112px;
    padding: 16px 18px 16px 112px;
    text-align: left;
    border: 1px solid rgba(220, 231, 226, .84);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 12px 26px rgba(7, 17, 25, .05);
  }

  .flow-step::after {
    top: auto;
    right: auto;
    bottom: -16px;
    left: 47px;
    width: 16px;
    height: 20px;
    background:
      linear-gradient(var(--green), var(--green)) left 7px top 0 / 2px 16px no-repeat,
      linear-gradient(45deg, transparent 45%, var(--green) 46% 56%, transparent 57%) left 2px bottom 0 / 9px 9px no-repeat,
      linear-gradient(-45deg, transparent 45%, var(--green) 46% 56%, transparent 57%) right 2px bottom 0 / 9px 9px no-repeat;
  }

  .round-icon {
    position: absolute;
    top: 16px;
    left: 18px;
  }

  .flow-step p {
    width: auto;
    margin-left: 0;
  }

  .screens-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .screens-copy {
    max-width: 620px;
  }

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

@media (max-width: 720px) {
  :root {
    --header-h: 68px;
  }

  .container {
    width: min(100% - 28px, 560px);
  }

  .header-inner {
    width: min(100% - 24px, 560px);
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .brand strong {
    font-size: .96rem;
  }

  .brand em {
    font-size: .98rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-overlay {
    background:
      radial-gradient(circle at 50% 46%, rgba(4, 10, 16, .28) 0%, transparent 56%),
      linear-gradient(90deg, rgba(4, 10, 16, .72), rgba(4, 10, 16, .48)),
      linear-gradient(180deg, rgba(4, 10, 16, .08) 0%, rgba(4, 10, 16, .78) 100%);
  }

  .hero-content {
    min-height: auto;
    padding: calc(var(--header-h) + 50px) 0 30px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-kicker {
    justify-content: center;
  }

  .hero h1 {
    max-width: none;
    font-size: 2.36rem;
  }

  .hero-subtitle {
    max-width: none;
    margin-top: 20px;
    font-size: 1.02rem;
    line-height: 1.55;
  }

  .hero-actions,
  .cta-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

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

  .hero-benefits {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 4px;
  }

  .hero-benefits article {
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .05);
  }

  .section {
    padding: 58px 0;
  }

  .testimonials-heading {
    margin-bottom: 18px;
  }

  .testimonial-rating {
    margin-bottom: 24px;
    padding: 18px 20px;
  }

  .testimonials-track {
    --testimonial-visible-count: 1;
    max-width: 520px;
    min-height: 0;
  }

  .testimonial-card {
    min-height: 218px;
    padding: 22px;
  }

  .testimonials-cta {
    width: 100%;
    max-width: 360px;
  }

  .section-heading h2,
  .screens-copy h2,
  .final-cta h2 {
    font-size: 1.86rem;
  }

  .features-grid,
  .screenshots-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 0;
  }

  .screens-copy {
    text-align: left;
  }

  .screens-copy .button {
    width: 100%;
  }

  .final-cta {
    padding: 52px 0;
  }

  .cta-benefits {
    grid-template-columns: 1fr;
  }

  .cta-benefits article {
    display: flex;
    align-items: center;
  }

  .contact-copy h2 {
    font-size: 1.92rem;
  }

  .contact-cards {
    padding: 12px;
  }

  .contact-card {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 14px;
    padding: 14px;
  }

  .contact-icon {
    width: 58px;
    height: 58px;
  }

  .contact-icon svg {
    width: 42px;
    height: 42px;
  }

  .contact-card strong {
    font-size: 1rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 28px 0;
  }

  .site-footer nav {
    flex-wrap: wrap;
    gap: 18px;
  }
}

@media (max-width: 420px) {
  .hero h1 {
    font-size: 2.06rem;
  }

  .button {
    min-height: 50px;
    padding: 0 16px;
    font-size: .9rem;
  }

  .flow-step {
    padding-left: 98px;
  }

  .round-icon {
    width: 68px;
    height: 68px;
  }
}

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

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

  .hero-bg {
    opacity: 1;
    transform: scale(1.02);
  }

  .js [data-hero-item],
  .js [data-reveal],
  .js .flow-track .flow-step,
  .js .flow-track .flow-step::after {
    opacity: 1;
    transform: none;
  }
}
