:root {
  --ink: #071a1e;
  --ink-soft: #10292d;
  --paper: #f4f3ed;
  --paper-deep: #e9e8e0;
  --white: #ffffff;
  --lime: #c9f462;
  --lime-bright: #ddff8b;
  --teal: #68e1d2;
  --text: #163035;
  --muted: #66777a;
  --line: rgba(7, 26, 30, 0.14);
  --radius-lg: 30px;
  --radius-md: 20px;
  --shadow: 0 24px 70px rgba(3, 20, 23, 0.14);
  --container: min(1160px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

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

.container {
  width: var(--container);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  transform: translateY(-150%);
  background: var(--lime);
  color: var(--ink);
  font-weight: 700;
  border-radius: 8px;
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  color: var(--white);
  transition:
    background 0.25s ease,
    box-shadow 0.25s ease,
    backdrop-filter 0.25s ease;
}

.site-header.scrolled {
  background: rgba(7, 26, 30, 0.9);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
}

.brand-mark {
  width: 41px;
  height: 41px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: var(--lime);
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
  transform: rotate(-4deg);
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-copy strong {
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  letter-spacing: -0.04em;
}

.brand-copy small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.main-nav a {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

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

.main-nav .nav-cta {
  padding: 11px 18px;
  color: var(--ink);
  background: var(--lime);
  border-radius: 999px;
}

.main-nav .nav-cta:hover {
  color: var(--ink);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
}

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

.hero {
  position: relative;
  min-height: 800px;
  padding-top: 82px;
  color: var(--white);
  background:
    linear-gradient(115deg, rgba(5, 31, 35, 0.96), rgba(5, 26, 30, 0.99)),
    var(--ink);
  overflow: hidden;
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.075;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.35) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.35) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 90%);
}

.hero::before {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  right: -170px;
  top: 90px;
  border: 1px solid rgba(201, 244, 98, 0.16);
  border-radius: 50%;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.hero-glow-one {
  width: 360px;
  height: 360px;
  right: 7%;
  top: 25%;
  background: rgba(104, 225, 210, 0.1);
}

.hero-glow-two {
  width: 300px;
  height: 300px;
  left: -170px;
  bottom: 5%;
  background: rgba(201, 244, 98, 0.07);
}

.hero-layout {
  position: relative;
  z-index: 2;
  min-height: 656px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(35px, 6vw, 90px);
  padding-top: 56px;
  padding-bottom: 76px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 25px;
  height: 2px;
  background: var(--lime);
}

.eyebrow-dark {
  color: #768689;
}

.hero h1,
.section h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(56px, 6.4vw, 88px);
}

.hero h1 em {
  color: var(--lime);
  font-style: normal;
}

.hero-lead {
  max-width: 610px;
  margin: 29px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.65;
}

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

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

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

.button svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-primary {
  color: var(--ink);
  background: var(--lime);
  box-shadow: 0 12px 30px rgba(201, 244, 98, 0.14);
}

.button-primary:hover {
  background: var(--lime-bright);
  box-shadow: 0 16px 35px rgba(201, 244, 98, 0.2);
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.03);
}

.button-ghost:hover {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.08);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 21px;
  margin-top: 34px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  font-weight: 600;
}

.hero-trust span {
  position: relative;
  padding-left: 15px;
}

.hero-trust span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: var(--teal);
}

.hero-visual {
  position: relative;
  min-height: 510px;
}

.orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.orbit-one {
  width: 470px;
  height: 470px;
  right: -20px;
  top: 15px;
}

.orbit-two {
  width: 340px;
  height: 340px;
  right: 43px;
  top: 80px;
  border-color: rgba(201, 244, 98, 0.12);
}

.visual-card {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 23px;
  background: rgba(14, 47, 51, 0.75);
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
}

.visual-card p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 14px 18px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.visual-card p strong {
  color: var(--lime);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.visual-card-web {
  z-index: 3;
  width: min(86%, 370px);
  top: 35px;
  right: 80px;
  transform: rotate(-4deg);
}

.mini-browser {
  padding: 15px;
}

.mini-browser-top {
  display: flex;
  gap: 5px;
  height: 24px;
  align-items: center;
  padding: 0 8px;
  border-radius: 8px 8px 0 0;
  background: rgba(255, 255, 255, 0.08);
}

.mini-browser-top i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
}

.mini-browser-body {
  min-height: 180px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  padding: 29px 23px;
  background:
    radial-gradient(circle at 90% 20%, rgba(201, 244, 98, 0.14), transparent 28%),
    #f0efe8;
  color: var(--ink);
  border-radius: 0 0 8px 8px;
}

.mini-label {
  color: #6a7a7c;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.17em;
}

.mini-browser-body b {
  margin-top: 10px;
  font-family: "Manrope", sans-serif;
  font-size: 22px;
  line-height: 1.12;
  letter-spacing: -0.05em;
}

.mini-button {
  margin-top: 22px;
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--lime);
  font-size: 8px;
  font-weight: 800;
}

.visual-card-auto {
  z-index: 4;
  width: min(88%, 390px);
  right: -10px;
  bottom: 27px;
  transform: rotate(3deg);
}

.car-illustration {
  min-height: 210px;
  display: grid;
  place-items: center;
  padding: 20px 18px 7px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 28px 28px;
}

.car-illustration svg {
  overflow: visible;
}

.car-body {
  fill: var(--teal);
  stroke: #9bf3e7;
  stroke-width: 2;
}

.car-window {
  fill: rgba(7, 26, 30, 0.75);
  stroke: rgba(255, 255, 255, 0.32);
}

.car-line,
.car-light {
  fill: none;
  stroke: rgba(255, 255, 255, 0.45);
  stroke-width: 2;
}

.car-wheel {
  fill: #071619;
  stroke: rgba(255, 255, 255, 0.28);
  stroke-width: 2;
}

.car-rim {
  fill: var(--lime);
}

.floating-badge {
  position: absolute;
  z-index: 6;
  display: grid;
  place-items: center;
  border-radius: 17px;
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.25);
}

.badge-code {
  width: 63px;
  height: 63px;
  top: 15px;
  right: 31px;
  color: var(--ink);
  background: var(--lime);
  font-family: monospace;
  font-size: 20px;
  font-weight: 800;
  transform: rotate(8deg);
}

.badge-wrench {
  width: 58px;
  height: 58px;
  left: 28px;
  bottom: 116px;
  background: var(--teal);
  transform: rotate(-8deg);
}

.badge-wrench svg {
  width: 28px;
  fill: none;
  stroke: var(--ink);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-ticker {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 15px 0;
  color: var(--ink);
  background: var(--lime);
  overflow: hidden;
}

.ticker-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 27px;
  animation: ticker 30s linear infinite;
}

.ticker-track span {
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.ticker-track i {
  color: rgba(7, 26, 30, 0.42);
  font-style: normal;
}

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

.section {
  padding: 120px 0;
}

.section h2 {
  color: var(--ink);
  font-size: clamp(42px, 5vw, 67px);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 57px;
}

.section-heading > p {
  max-width: 410px;
  margin: 0 0 7px auto;
  color: var(--muted);
  font-size: 17px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.service-card {
  position: relative;
  min-height: 510px;
  display: flex;
  flex-direction: column;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.48);
  overflow: hidden;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(7, 26, 30, 0.25);
  box-shadow: 0 22px 55px rgba(10, 35, 38, 0.09);
}

.service-card::after {
  content: "";
  position: absolute;
  width: 230px;
  height: 230px;
  right: -100px;
  top: -120px;
  border-radius: 50%;
  background: rgba(104, 225, 210, 0.08);
}

.service-card-featured {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.service-card-featured::after {
  background: rgba(201, 244, 98, 0.08);
}

.service-number {
  position: absolute;
  z-index: 2;
  top: 29px;
  right: 31px;
  color: rgba(7, 26, 30, 0.25);
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 800;
}

.service-card-featured .service-number {
  color: rgba(255, 255, 255, 0.28);
}

.service-icon {
  width: 57px;
  height: 57px;
  display: grid;
  place-items: center;
  margin-bottom: 38px;
  border-radius: 17px;
  color: var(--ink);
  background: var(--lime);
}

.service-icon svg {
  width: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-category {
  margin: 0 0 9px;
  color: #789094;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.service-card-featured .service-category {
  color: var(--teal);
}

.service-card h3 {
  max-width: 430px;
  margin: 0;
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  font-size: clamp(26px, 2.4vw, 36px);
  letter-spacing: -0.045em;
  line-height: 1.1;
}

.service-card-featured h3 {
  color: var(--white);
}

.service-card > div > p:not(.service-category) {
  max-width: 480px;
  margin: 17px 0 0;
  color: var(--muted);
}

.service-card-featured > div > p:not(.service-category) {
  color: rgba(255, 255, 255, 0.6);
}

.feature-list {
  display: grid;
  gap: 7px;
  margin: 22px 0 28px;
  padding: 0;
  list-style: none;
  color: #506468;
  font-size: 14px;
}

.service-card-featured .feature-list {
  color: rgba(255, 255, 255, 0.65);
}

.feature-list li {
  position: relative;
  padding-left: 20px;
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #448e84;
  font-weight: 800;
}

.service-card-featured .feature-list li::before {
  color: var(--lime);
}

.service-card > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.service-card-featured > a {
  color: var(--lime);
  border-color: rgba(255, 255, 255, 0.13);
}

.service-card > a span {
  font-size: 20px;
  transition: transform 0.2s ease;
}

.service-card > a:hover span {
  transform: translate(3px, -3px);
}

.process {
  position: relative;
  color: var(--white);
  background: var(--ink);
  overflow: hidden;
}

.process::before {
  content: "";
  position: absolute;
  width: 550px;
  height: 550px;
  left: -320px;
  bottom: -300px;
  border: 1px solid rgba(201, 244, 98, 0.12);
  border-radius: 50%;
}

.process h2 {
  color: var(--white);
}

.process-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(60px, 10vw, 150px);
  align-items: start;
}

.process-intro {
  position: sticky;
  top: 125px;
}

.process-intro > p:not(.eyebrow) {
  max-width: 370px;
  margin: 27px 0 0;
  color: rgba(255, 255, 255, 0.57);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  color: var(--lime);
  font-size: 14px;
  font-weight: 800;
}

.text-link span {
  transition: transform 0.2s ease;
}

.text-link:hover span {
  transform: translateX(5px);
}

.process-steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-steps li {
  display: grid;
  grid-template-columns: 63px 1fr;
  gap: 28px;
  padding: 34px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.process-steps li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.process-steps > li > span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(201, 244, 98, 0.35);
  border-radius: 50%;
  color: var(--lime);
  font-size: 11px;
  font-weight: 800;
}

.process-steps h3 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: 25px;
  letter-spacing: -0.035em;
}

.process-steps p {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.52);
}

.about {
  background: var(--paper-deep);
}

.about-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(60px, 10vw, 150px);
  align-items: center;
}

.about-mark {
  position: relative;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--lime);
  box-shadow:
    0 0 0 24px rgba(201, 244, 98, 0.2),
    0 0 0 48px rgba(201, 244, 98, 0.1);
}

.about-mark::before,
.about-mark::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(7, 26, 30, 0.14);
}

.about-mark::before {
  inset: 17%;
}

.about-mark::after {
  inset: 34%;
}

.about-mark span {
  z-index: 2;
  font-family: "Manrope", sans-serif;
  font-size: clamp(90px, 13vw, 165px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.08em;
}

.about-mark small {
  position: absolute;
  z-index: 3;
  right: 18%;
  bottom: 24%;
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
}

.about-lead {
  margin: 28px 0 0;
  color: var(--ink);
  font-size: clamp(20px, 2.1vw, 27px);
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: -0.02em;
}

.about-copy > p:not(.eyebrow):not(.about-lead) {
  max-width: 610px;
  color: var(--muted);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 37px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--line);
  overflow: hidden;
}

.about-stats div {
  padding: 22px 19px;
  background: var(--paper-deep);
}

.about-stats strong,
.about-stats span {
  display: block;
}

.about-stats strong {
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  font-size: 24px;
  letter-spacing: -0.04em;
}

.about-stats span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
}

.contact {
  position: relative;
  color: var(--white);
  background:
    radial-gradient(circle at 3% 100%, rgba(104, 225, 210, 0.11), transparent 27%),
    var(--ink-soft);
}

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

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(50px, 8vw, 110px);
  align-items: start;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 440px;
  margin: 27px 0 0;
  color: rgba(255, 255, 255, 0.58);
}

.contact-methods {
  display: grid;
  gap: 10px;
  margin-top: 36px;
}

.contact-methods > a {
  display: grid;
  grid-template-columns: 46px 1fr auto;
  align-items: center;
  gap: 15px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 15px;
  transition:
    border-color 0.2s ease,
    background 0.2s ease;
}

.contact-methods > a:hover {
  border-color: rgba(201, 244, 98, 0.35);
  background: rgba(255, 255, 255, 0.035);
}

.contact-method-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--ink);
  background: var(--lime);
}

.contact-method-icon svg {
  width: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-methods small,
.contact-methods strong {
  display: block;
}

.contact-methods small {
  color: rgba(255, 255, 255, 0.45);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-methods strong {
  margin-top: 2px;
  font-size: 13px;
}

.contact-methods b {
  padding-right: 7px;
  color: var(--lime);
  font-size: 18px;
}

.contact-form {
  padding: clamp(25px, 4vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-lg);
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.form-heading {
  display: grid;
  margin-bottom: 29px;
}

.form-heading span {
  color: #78888b;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.form-heading strong {
  margin-top: 3px;
  font-family: "Manrope", sans-serif;
  font-size: 27px;
  letter-spacing: -0.04em;
}

.contact-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 17px;
}

.contact-form label > span {
  color: #4f6569;
  font-size: 11px;
  font-weight: 800;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid rgba(7, 26, 30, 0.15);
  border-radius: 11px;
  outline: 0;
  color: var(--ink);
  background: #fff;
  font-size: 14px;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.contact-form textarea {
  resize: vertical;
  min-height: 125px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #6fa813;
  box-shadow: 0 0 0 3px rgba(201, 244, 98, 0.33);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #a0abad;
}

.form-submit {
  width: 100%;
  margin-top: 4px;
  border: 0;
}

.form-note {
  margin: 12px 0 0;
  color: #839093;
  font-size: 10px;
  text-align: center;
}

.honey {
  position: absolute !important;
  left: -9999px !important;
}

.site-footer {
  padding: 70px 0 25px;
  color: var(--white);
  background: #041316;
}

.footer-main {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr 0.7fr;
  gap: 50px;
  align-items: start;
  padding-bottom: 55px;
}

.brand-footer .brand-copy small {
  color: rgba(255, 255, 255, 0.4);
}

.footer-main > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.45);
  font-size: 15px;
}

.footer-links {
  display: grid;
  gap: 9px;
  justify-items: start;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.footer-links a:hover {
  color: var(--lime);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.32);
  font-size: 11px;
}

.whatsapp-float {
  position: fixed;
  z-index: 90;
  right: 22px;
  bottom: 22px;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  border: 4px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.2);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.25);
}

.whatsapp-float svg {
  width: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

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

@media (max-width: 960px) {
  .hero {
    min-height: auto;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    padding-top: 85px;
  }

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

  .hero-visual {
    width: min(100%, 560px);
    min-height: 500px;
    margin: 0 auto;
  }

  .visual-card-web {
    right: 120px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .section-heading > p {
    margin-left: 0;
  }

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

  .process-intro {
    position: static;
  }

  .about-mark {
    width: min(70%, 430px);
    margin: 20px auto 35px;
  }

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

@media (max-width: 760px) {
  :root {
    --container: min(100% - 28px, 1160px);
    --radius-lg: 24px;
  }

  .site-header {
    background: rgba(7, 26, 30, 0.88);
    backdrop-filter: blur(14px);
  }

  .nav-wrap {
    min-height: 70px;
  }

  .brand-mark {
    width: 37px;
    height: 37px;
    font-size: 19px;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    inset: 70px 0 auto;
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 35px 20px;
    background: rgba(7, 26, 30, 0.98);
    transform: translateX(100%);
    visibility: hidden;
    transition:
      transform 0.3s ease,
      visibility 0.3s ease;
  }

  .main-nav.open {
    transform: translateX(0);
    visibility: visible;
  }

  .main-nav a {
    padding: 17px 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    font-size: 17px;
  }

  .main-nav .nav-cta {
    margin-top: 22px;
    padding: 14px 20px;
    text-align: center;
    border-bottom: 0;
  }

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

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

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

  .hero {
    padding-top: 70px;
  }

  .hero-layout {
    min-height: auto;
    padding-top: 68px;
    padding-bottom: 50px;
  }

  .hero h1 {
    font-size: clamp(47px, 14.3vw, 71px);
  }

  .hero-lead {
    margin-top: 24px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

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

  .hero-trust {
    gap: 12px 18px;
  }

  .hero-visual {
    min-height: 400px;
    margin-top: 10px;
  }

  .orbit-one {
    width: 360px;
    height: 360px;
    right: -35px;
  }

  .orbit-two {
    width: 260px;
    height: 260px;
    right: 16px;
  }

  .visual-card-web {
    width: 78%;
    top: 22px;
    right: 60px;
  }

  .mini-browser-body {
    min-height: 145px;
    padding: 21px 17px;
  }

  .mini-browser-body b {
    font-size: 18px;
  }

  .visual-card-auto {
    width: 84%;
    right: -5px;
    bottom: 10px;
  }

  .car-illustration {
    min-height: 155px;
  }

  .badge-code {
    width: 51px;
    height: 51px;
    right: 14px;
    font-size: 17px;
  }

  .badge-wrench {
    left: 2px;
    bottom: 85px;
  }

  .section {
    padding: 88px 0;
  }

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

  .service-card {
    min-height: 500px;
    padding: 28px;
  }

  .process-layout {
    gap: 58px;
  }

  .process-steps li {
    grid-template-columns: 48px 1fr;
    gap: 17px;
  }

  .process-steps > li > span {
    width: 42px;
    height: 42px;
  }

  .about-layout {
    gap: 30px;
  }

  .about-mark {
    width: 78%;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-methods strong {
    font-size: 12px;
    word-break: break-word;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 5px;
  }

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

@media (max-width: 390px) {
  .hero-visual {
    min-height: 360px;
  }

  .visual-card-web {
    right: 43px;
  }

  .visual-card p {
    padding: 11px 14px;
    font-size: 10px;
  }

  .service-card {
    min-height: 535px;
  }

  .contact-methods > a {
    grid-template-columns: 42px 1fr;
  }

  .contact-methods b {
    display: none;
  }
}

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

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

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