﻿:root {
  --bg-1: #0b0f19;
  --bg-2: #101826;
  --bg-3: #131d2e;
  --bg-4: #1a2335;
  --bg-5: #202b40;
  --accent: #2f6bff;
  --accent-2: #6e5bff;
  --accent-3: #4da3ff;
  --text: #f5f7fb;
  --text-muted: #a9b4c8;
  --text-soft: #7e8aa3;
  --line: rgba(255, 255, 255, 0.08);
  --line-2: rgba(255, 255, 255, 0.12);
  --radius: 18px;
  --shadow-soft: 0 16px 50px rgba(6, 10, 20, 0.48);
  --shadow-card: 0 12px 34px rgba(8, 14, 28, 0.44);
  --anchor-offset: 0px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--anchor-offset);
}

body {
  margin: 0;
  color: var(--text);
  background: linear-gradient(160deg, var(--bg-1), var(--bg-2) 40%, var(--bg-3));
  font-family: "Manrope", sans-serif;
  line-height: 1.6;
  position: relative;
  isolation: isolate;
}

.site-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 15% 12%, rgba(77, 163, 255, 0.14), transparent 34%),
    radial-gradient(circle at 84% 20%, rgba(110, 91, 255, 0.16), transparent 33%),
    radial-gradient(circle at 72% 86%, rgba(88, 196, 255, 0.1), transparent 31%);
  background-size: 120% 120%, 130% 130%, 125% 125%;
  animation: ambient-gradient-flow 10s ease-in-out infinite alternate;
  filter: none;
  will-change: transform, background-position;
  z-index: -2;
}

.mouse-glow {
  --mouse-x: 50vw;
  --mouse-y: 50vh;
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(280px circle at var(--mouse-x) var(--mouse-y), rgba(88, 196, 255, 0.18), rgba(88, 196, 255, 0.08) 32%, transparent 68%),
    radial-gradient(460px circle at var(--mouse-x) var(--mouse-y), rgba(47, 107, 255, 0.1), transparent 72%);
  opacity: 0.95;
  transition: opacity 0.35s ease;
  will-change: background;
}

.header,
main,
.footer {
  position: relative;
  z-index: 1;
}

@keyframes ambient-gradient-flow {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    background-position: 0% 0%, 100% 0%, 50% 100%;
  }
  50% {
    transform: translate3d(-1.4%, 1%, 0) scale(1.025);
    background-position: 14% 8%, 84% 10%, 44% 92%;
  }
  100% {
    transform: translate3d(1.2%, -1%, 0) scale(1.02);
    background-position: 8% 12%, 90% 6%, 56% 88%;
  }
}

.container {
  width: min(1180px, calc(100% - 2.5rem));
  margin: 0 auto;
}

.section {
  padding: 5.5rem 0;
}

.quick-points.section {
  padding: 0.9rem 0;
}

section[id],
header[id] {
  scroll-margin-top: var(--anchor-offset);
}

h1,
h2,
h3 {
  margin: 0 0 1rem;
  line-height: 1.18;
  letter-spacing: -0.02em;
  font-family: "Space Grotesk", sans-serif;
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 30px !important;
}

.h2-highlight {
  display: block;
  font-size: 30px !important;
  color: #58c4ff;
  text-shadow: 0 0 20px rgba(88, 196, 255, 0.28);
}

h3 {
  font-size: 18px;
}

p,
small,
li,
label,
span,
a,
button,
input,
textarea,
select {
  font-size: 1rem;
}

p,
.section-text {
  color: var(--text-muted);
}

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

.header {
  position: sticky;
  top: 0;
  z-index: 40;
  padding-top: 1rem;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.95rem 1rem;
  border: 1px solid var(--line-2);
  border-radius: 16px;
  backdrop-filter: blur(14px);
  background: linear-gradient(125deg, rgba(18, 29, 47, 0.75), rgba(23, 35, 53, 0.55));
  box-shadow: var(--shadow-soft);
}

.logo {
  display: inline-flex;
  align-items: center;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.logo-image {
  display: block;
  height: 34px;
  width: auto;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: auto;
}

.nav a {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.93rem;
  transition: color 0.28s ease;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  border-radius: 12px;
  border: 1px solid transparent;
  padding: 0.76rem 1.2rem;
  font-weight: 700;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  cursor: pointer;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(130deg, var(--accent), var(--accent-2));
  box-shadow: 0 12px 30px rgba(47, 107, 255, 0.35);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(47, 107, 255, 0.45);
}

.btn-primary:active {
  transform: scale(0.98);
}

.btn-secondary {
  color: var(--text);
  border-color: rgba(77, 163, 255, 0.45);
  background: rgba(20, 33, 54, 0.45);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: rgba(47, 107, 255, 0.16);
}

.menu-toggle {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 38px;
  border: 1px solid var(--line-2);
  border-radius: 10px;
  background: rgba(18, 28, 44, 0.85);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: #dfe7f8;
}

.hero {
  padding-top: 4.2rem;
}

.hero-wrap {
  position: relative;
  padding-bottom: 1.6rem;
}

.hero-grid,
.solution-grid,
.contact-wrap {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.badge {
  display: inline-flex;
  margin-bottom: 1.05rem;
  border-radius: 999px;
  border: 1px solid rgba(88, 196, 255, 0.38);
  background: rgba(18, 33, 56, 0.72);
  color: #d8e3fc;
  font-size: 0.88rem;
  padding: 0.42rem 0.84rem;
  font-weight: 600;
}

.hero p {
  max-width: 59ch;
}

.hero-actions {
  display: flex;
  gap: 0.8rem;
  margin: 1.45rem 0 1.25rem;
}

.hero-strip {
  position: absolute;
  left: 0;
  bottom: 28px;
  width: auto;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: 0.85rem;
}

.hero-strip span {
  border: 1px solid var(--line);
  background: rgba(7, 14, 28, 0.62);
  backdrop-filter: blur(8px);
  border-radius: 10px;
  padding: 0.55rem 0.82rem;
  color: #d6e2f8;
  font-size: 0.88rem;
  white-space: nowrap;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}

.placeholder {
  min-height: 220px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: var(--radius);
  background: #000;
  color: #ecf2ff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  gap: 0.3rem;
  padding: 1.1rem;
}

.placeholder p {
  margin: 0;
  color: #ecf2ff;
  font-weight: 600;
}

.placeholder small {
  color: #ccd7f1;
  display: block;
}

.placeholder-image {
  display: none;
}

.placeholder.has-real-image {
  padding: 0;
  background: transparent;
  overflow: hidden;
  border: 0;
  box-shadow: none;
}

.placeholder.has-real-image p,
.placeholder.has-real-image small {
  display: none;
}

.placeholder.has-real-image .placeholder-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.hero-placeholder {
  min-height: 460px;
}

.hero-media-frame {
  position: relative;
  min-height: 460px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: var(--radius);
  overflow: hidden;
  background: transparent;
}

.hero-media-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: contain;
  background: transparent;
}

.hero-media-frame .hero-placeholder {
  position: absolute;
  inset: 0;
  margin: 0;
  border: 0;
  border-radius: 0;
}

.hero-media-frame.is-loaded .hero-placeholder {
  display: none;
}

.hero-media-frame.is-loaded {
  border: 0;
  box-shadow: none;
}

.cards-4,
.cards-3,
.micro-grid,
.steps,
.footer-grid {
  display: grid;
  gap: 1rem;
}

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

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

.card,
.step-card,
.micro-grid span,
.lead-form,
.acc-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(21, 33, 53, 0.8), rgba(14, 24, 39, 0.66));
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-card);
}

.card,
.step-card {
  padding: 1.2rem;
  transition: transform 0.28s ease, border-color 0.28s ease;
}

.card:hover,
.step-card:hover {
  transform: translateY(-3px);
  border-color: rgba(77, 163, 255, 0.35);
}

.compact .card {
  padding: 1rem;
}

.feature-marquee {
  --marquee-gap: 0.95rem;
  --fade-size: 140px;
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-block: 2px;
  -webkit-mask-image: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.12) 6%,
    rgba(0, 0, 0, 0.3) 12%,
    rgba(0, 0, 0, 0.55) 18%,
    rgba(0, 0, 0, 0.82) 24%,
    rgba(0, 0, 0, 1) 30%,
    rgba(0, 0, 0, 1) 70%,
    rgba(0, 0, 0, 0.82) 76%,
    rgba(0, 0, 0, 0.55) 82%,
    rgba(0, 0, 0, 0.3) 88%,
    rgba(0, 0, 0, 0.12) 94%,
    rgba(0, 0, 0, 0) 100%
  );
  mask-image: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.12) 6%,
    rgba(0, 0, 0, 0.3) 12%,
    rgba(0, 0, 0, 0.55) 18%,
    rgba(0, 0, 0, 0.82) 24%,
    rgba(0, 0, 0, 1) 30%,
    rgba(0, 0, 0, 1) 70%,
    rgba(0, 0, 0, 0.82) 76%,
    rgba(0, 0, 0, 0.55) 82%,
    rgba(0, 0, 0, 0.3) 88%,
    rgba(0, 0, 0, 0.12) 94%,
    rgba(0, 0, 0, 0) 100%
  );
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

.feature-marquee::before,
.feature-marquee::after {
  content: none;
}

.feature-marquee-move {
  display: flex;
  width: max-content;
  animation: feature-marquee-scroll 34s linear infinite;
  will-change: transform;
}

.feature-track {
  display: flex;
  align-items: center;
  gap: var(--marquee-gap);
  padding-block: 1px;
  padding-right: var(--marquee-gap);
}

.feature-chip {
  flex: 0 0 auto;
  white-space: nowrap;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
  padding: 0.9rem 1.1rem;
  color: #d9e2f7;
  font-weight: 600;
  font-size: 0.93rem;
}

@keyframes feature-marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.solution-media {
  position: relative;
  padding: 1.3rem 0;
}

.floating {
  position: absolute;
  width: min(250px, 72%);
  z-index: 3;
  transform: translate3d(0, 0, 0);
  transition: translate 0.45s ease, opacity 0.45s ease, filter 0.45s ease;
  will-change: transform, translate, opacity, filter;
}

.floating.small {
  min-height: 150px;
}

.floating-a {
  right: -1.2rem;
  top: -0.7rem;
  animation: floating-card-a 3.2s cubic-bezier(0.42, 0, 0.22, 1) infinite;
}

.floating-b {
  left: -1.2rem;
  bottom: -0.7rem;
  animation: floating-card-b 4s cubic-bezier(0.42, 0, 0.22, 1) infinite 0.35s;
}

.solution-media > .placeholder:not(.floating) {
  position: relative;
  z-index: 1;
  transition: filter 0.45s ease;
}

.solution-media:hover .floating-a,
.solution-media:focus-within .floating-a {
  translate: 132px -34px;
  opacity: 0.92;
  filter: saturate(1.05);
}

.solution-media:hover .floating-b,
.solution-media:focus-within .floating-b {
  translate: -132px 34px;
  opacity: 0.92;
  filter: saturate(1.05);
}

.solution-media:hover > .placeholder:not(.floating),
.solution-media:focus-within > .placeholder:not(.floating) {
  filter: brightness(1.08) saturate(1.06);
}

@keyframes floating-card-a {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -14px, 0);
  }
}

@keyframes floating-card-b {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -11px, 0);
  }
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 1.6rem;
}

.check-list li {
  position: relative;
  padding-left: 1.45rem;
  margin-bottom: 0.5rem;
  color: #d6e2f6;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-3);
  box-shadow: 0 0 14px rgba(77, 163, 255, 0.75);
}

.steps {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 1.1rem;
}

.step-card span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.7rem;
  background: rgba(47, 107, 255, 0.21);
  border: 1px solid rgba(77, 163, 255, 0.44);
  font-weight: 700;
}

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

.micro-grid span {
  padding: 0.9rem;
  color: #d9e2f7;
  font-weight: 600;
  font-size: 0.93rem;
}

.medium {
  min-height: 280px;
  margin-top: 1.2rem;
}

.accordion {
  display: grid;
  gap: 0.8rem;
}

.acc-trigger {
  width: 100%;
  text-align: left;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-weight: 700;
  border: 0;
  padding: 1.1rem 1.2rem;
  cursor: pointer;
  position: relative;
}

.acc-trigger::after {
  content: "+";
  position: absolute;
  right: 1.2rem;
}

.acc-item.open .acc-trigger::after {
  content: "-";
}

.acc-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.acc-content p {
  margin: 0;
  padding: 0 1.2rem 1.1rem;
}

.contact-wrap {
  gap: 1.4rem;
  align-items: stretch;
}

.contact-copy {
  display: flex;
  flex-direction: column;
}

.contact-copy h2 {
  margin-bottom: 0.45rem;
}

.contact-copy .section-text {
  margin: 0;
}

.contact-side-image-frame {
  position: relative;
  margin: 0 0 0.9rem;
  min-height: 0;
  border: 0;
  border-radius: 0;
  overflow: visible;
  background: transparent;
  animation: contact-image-float 3.8s cubic-bezier(0.42, 0, 0.22, 1) infinite;
  will-change: transform;
}

.contact-side-image {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: contain;
}

.contact-side-image-frame .contact-side-placeholder {
  position: absolute;
  inset: 0;
  margin: 0;
  border: 0;
  border-radius: 0;
}

.contact-side-image-frame.is-loaded .contact-side-placeholder {
  display: none;
}

@keyframes contact-image-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -12px, 0);
  }
}

.lead-form {
  padding: 1.2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

label {
  display: grid;
  gap: 0.35rem;
  color: #dae5fb;
  font-weight: 600;
  font-size: 0.9rem;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line-2);
  border-radius: 10px;
  background: rgba(8, 14, 25, 0.86);
  color: #f3f7ff;
  padding: 0.75rem 0.82rem;
  font-family: inherit;
}

.lead-form textarea {
  resize: vertical;
  min-height: 130px;
  max-width: 100%;
}

.lead-form button[disabled] {
  opacity: 0.75;
  cursor: wait;
}

.form-feedback {
  margin: 0.2rem 0 0;
  min-height: 1.2em;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.form-feedback.is-success {
  color: #8fe5b7;
}

.form-feedback.is-error {
  color: #ff9eb2;
}

input:focus,
textarea:focus,
select:focus {
  outline: 1px solid rgba(77, 163, 255, 0.68);
  border-color: rgba(77, 163, 255, 0.68);
}

input[name="colaboradores"] {
  appearance: textfield;
  -moz-appearance: textfield;
}

input[name="colaboradores"]::-webkit-outer-spin-button,
input[name="colaboradores"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.full {
  grid-column: 1 / -1;
}

.footer {
  background: linear-gradient(180deg, rgba(10, 15, 24, 0.15), rgba(4, 8, 14, 0.62));
  border-top: 1px solid var(--line);
}

.footer.section {
  padding-top: 4rem;
  padding-bottom: 0;
}

.footer-grid {
  grid-template-columns: 1.2fr repeat(4, 1fr);
  align-items: start;
}

.footer h3 {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.footer-logo-image {
  display: block;
  height: 24px;
  width: auto;
  object-fit: contain;
  margin-bottom: 0.7rem;
}

.footer a,
.footer p {
  display: block;
  color: var(--text-soft);
  margin-bottom: 0.32rem;
}

.footer .social-link {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.footer .social-link svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.92;
  flex: 0 0 auto;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
  border-top: 1px solid var(--line);
  text-align: center;
}

.footer-bottom p {
  margin: 0 0 0.08rem;
  color: var(--text-soft);
  font-size: 0.66rem !important;
  font-weight: 400 !important;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

.footer-bottom a {
  display: inline;
  margin: 0;
  color: inherit !important;
  font-size: inherit !important;
  font-weight: inherit !important;
  line-height: inherit !important;
  letter-spacing: inherit !important;
  text-decoration: none !important;
}

.footer-bottom span {
  color: inherit !important;
  font-size: inherit !important;
  font-weight: inherit !important;
  line-height: inherit !important;
  letter-spacing: inherit !important;
}

.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-up.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .cards-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cards-3,
  .steps,
  .micro-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-marquee {
    --fade-size: 72px;
  }
}

@media (max-width: 860px) {
  .header-inner {
    display: grid;
    grid-template-columns: 80% 20%;
    grid-template-rows: auto auto;
    align-items: center;
    gap: 0.7rem;
    position: relative;
  }

  .menu-toggle {
    display: inline-flex;
    grid-column: 2;
    grid-row: 2;
    margin-left: 0;
    justify-self: end;
    align-self: stretch;
    width: 100%;
    max-width: 64px;
    height: 48px;
  }

  .nav {
    display: none;
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    right: 0;
    width: 100%;
    padding: 0.75rem 1rem;
    margin-left: 0;
    flex-direction: column;
    align-items: flex-start;
    border: 1px solid var(--line-2);
    border-radius: 14px;
    backdrop-filter: blur(14px);
    background: linear-gradient(125deg, rgba(18, 29, 47, 0.92), rgba(23, 35, 53, 0.88));
    box-shadow: var(--shadow-soft);
    z-index: 60;
  }

  .nav.open {
    display: flex;
  }

  .logo {
    grid-column: 1 / -1;
    grid-row: 1;
    width: 100%;
    justify-content: center;
  }

  .logo-image {
    width: 100%;
    max-width: 320px;
    height: auto;
    object-fit: contain;
  }

  .header-cta {
    grid-column: 1;
    grid-row: 2;
    width: 100%;
    margin-left: 0;
    text-align: center;
    justify-content: center;
    min-width: 0;
  }

  .header-cta.btn {
    width: 100%;
    height: 48px;
    min-height: 48px;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    white-space: nowrap;
  }

  .hero-grid,
  .solution-grid,
  .contact-wrap {
    grid-template-columns: 1fr;
  }

  .contact-side-image-frame {
    display: none;
  }

  .contact-side-image {
    max-height: 260px;
  }

  .solution-media {
    padding-top: 1rem;
  }

  .placeholder.has-real-image {
    min-height: 0;
  }

  .placeholder.has-real-image .placeholder-image {
    width: 100%;
    height: auto;
    min-height: 0;
    object-fit: contain;
    object-position: center;
  }

  .feature-marquee-move {
    animation-duration: 28s;
  }

  .floating {
    position: static;
    width: 100%;
    margin-top: 0.8rem;
    animation: none;
    transform: none;
    translate: 0 0;
    opacity: 1;
    filter: none;
  }

  .solution-media:hover .floating-a,
  .solution-media:focus-within .floating-a,
  .solution-media:hover .floating-b,
  .solution-media:focus-within .floating-b {
    translate: 0 0;
    opacity: 1;
    filter: none;
  }

  .solution-media:hover > .placeholder:not(.floating),
  .solution-media:focus-within > .placeholder:not(.floating) {
    filter: none;
  }

  .hero-strip {
    width: min(740px, calc(100% - 1rem));
    bottom: 2rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .header-inner {
    grid-template-columns: minmax(0, 4fr) minmax(0, 1fr);
    gap: 0.6rem;
  }

  .menu-toggle {
    max-width: 100%;
    justify-self: end;
  }

  .section {
    padding: 4.2rem 0;
  }

  .cards-4,
  .cards-3,
  .steps,
  .micro-grid,
  .footer-grid,
  .lead-form {
    grid-template-columns: 1fr;
  }

  .container {
    width: min(1180px, calc(100% - 1.4rem));
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .feature-marquee {
    --fade-size: 34px;
  }

  .feature-marquee-move {
    animation-duration: 24s;
  }

  .hero-wrap {
    padding-bottom: 0;
  }

  .hero-strip {
    position: static;
    width: 100%;
    margin: 0.75rem 0 0;
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-bg {
    animation: none;
  }

  .mouse-glow {
    display: none;
  }

  .feature-marquee-move {
    animation: none;
  }
}



