:root {
  --ink: #06181b;
  --ink-soft: #173338;
  --muted: #607276;
  --green: #2db757;
  --green-dark: #118947;
  --teal: #087a87;
  --teal-dark: #055866;
  --cyan: #18a9bd;
  --amber: #f2b84b;
  --surface: #f5f8f7;
  --surface-strong: #e7f1ef;
  --line: #dbe7e4;
  --white: #ffffff;
  --header-height: 76px;
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  line-height: 1.5;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-150%);
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(219, 231, 228, 0.78);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 14px 36px rgba(6, 24, 27, 0.08);
}

.header-inner,
.container {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.header-inner {
  height: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 152px;
  height: auto;
}

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  color: var(--ink-soft);
  font-size: 0.94rem;
  font-weight: 650;
}

.main-nav a {
  position: relative;
  padding-block: 8px;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--cyan));
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

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

.header-action,
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 750;
  line-height: 1.1;
  text-align: center;
}

.header-action {
  padding: 0 18px;
  background: linear-gradient(135deg, var(--green), var(--teal));
  color: var(--white);
  font-size: 0.9rem;
  box-shadow: 0 14px 28px rgba(45, 183, 87, 0.22);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  cursor: pointer;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

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

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

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

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-height) - 42px);
  margin-top: var(--header-height);
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(3, 19, 22, 0.9) 0%, rgba(3, 19, 22, 0.74) 38%, rgba(3, 19, 22, 0.08) 74%),
    url("../img/hero-oxyvolt.webp") center / cover no-repeat;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 28%;
  background: linear-gradient(180deg, rgba(3, 19, 22, 0), rgba(3, 19, 22, 0.36));
  content: "";
  pointer-events: none;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 22%, rgba(45, 183, 87, 0.22), transparent 24%),
    linear-gradient(180deg, rgba(3, 19, 22, 0.12), rgba(3, 19, 22, 0.1));
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
  padding-block: 66px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #8df3aa;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: 0;
}

.brand-gradient-text {
  display: inline-block;
  background: linear-gradient(135deg, var(--green), var(--teal));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

h1 {
  max-width: 680px;
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 900;
}

h2 {
  font-size: clamp(2rem, 4.2vw, 3.65rem);
  font-weight: 870;
}

h3 {
  font-size: 1.22rem;
  font-weight: 820;
}

.hero-copy {
  max-width: 660px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  padding: 0 22px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--green), var(--teal));
  color: var(--white);
  box-shadow: 0 18px 34px rgba(45, 183, 87, 0.24);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  backdrop-filter: blur(8px);
}

.hero-proof {
  display: grid;
  max-width: 760px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 40px 0 0;
}

.hero-proof div {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.hero-proof dt {
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 850;
}

.hero-proof dd {
  margin: 3px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.94rem;
}

.section {
  padding-block: 96px;
  scroll-margin-top: calc(var(--header-height) + 18px);
}

.intro-band {
  padding-block: 28px;
  background: var(--ink);
  color: var(--white);
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  overflow: hidden;
}

.intro-grid article {
  min-height: 186px;
  padding: 28px;
  background: linear-gradient(135deg, #082427, #0f3034);
}

.intro-grid span {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--amber);
  font-size: 0.8rem;
  font-weight: 850;
}

.intro-grid h2 {
  font-size: 1.18rem;
}

.intro-grid p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.73);
}

.section-heading {
  max-width: 810px;
  text-align: center;
}

.section-heading.align-left {
  max-width: 480px;
  text-align: left;
}

.section-heading p:not(.eyebrow) {
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.section-heading.align-left p:not(.eyebrow) {
  margin-inline: 0;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 42px;
}

.solution-card {
  display: flex;
  min-height: 390px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(8, 46, 51, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.solution-card:hover {
  border-color: rgba(45, 183, 87, 0.42);
  box-shadow: 0 22px 54px rgba(8, 46, 51, 0.13);
  transform: translateY(-3px);
}

.solution-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--surface-strong);
}

.solution-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 24, 27, 0), rgba(6, 24, 27, 0.18));
  content: "";
  pointer-events: none;
}

.solution-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.solution-card:hover .solution-media img {
  transform: scale(1.035);
}

.solution-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.solution-body p {
  margin: 14px 0 22px;
  color: var(--muted);
}

.solution-body a {
  margin-top: auto;
  color: var(--teal);
  font-weight: 800;
}

.solution-body a::after {
  content: " →";
}

.app-section {
  background:
    linear-gradient(90deg, rgba(45, 183, 87, 0.08), rgba(8, 122, 135, 0.08)),
    var(--surface);
}

.app-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  align-items: center;
  gap: clamp(40px, 7vw, 92px);
}

.phone-demo {
  display: grid;
  place-items: center;
}

.phone-shell {
  position: relative;
  width: min(340px, 100%);
  aspect-ratio: 352 / 620;
  padding: 12px;
  border-radius: 34px;
  background: linear-gradient(135deg, #071417, #163a3f);
  box-shadow: 0 34px 80px rgba(6, 24, 27, 0.28);
}

.phone-shell::before {
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  content: "";
  pointer-events: none;
}

.phone-screen {
  position: relative;
  height: 100%;
  border-radius: 26px;
  overflow: hidden;
  background:
    linear-gradient(180deg, #f8fbfb, #eef5f4);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.app-screenshot {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.platform-video {
  background: #f5f9f9 url("../img/plataforma-demo-poster.webp") center / cover no-repeat;
}

.platform-video.is-loaded {
  animation: platform-video-reveal 700ms ease both;
}

@keyframes platform-video-reveal {
  from {
    filter: saturate(0.86);
    transform: scale(1.01);
  }

  to {
    filter: saturate(1);
    transform: scale(1);
  }
}

.platform-copy > p:not(.eyebrow) {
  max-width: 680px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.1rem;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.feature-list article,
.proof-grid article {
  padding: 22px;
  border: 1px solid rgba(8, 122, 135, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
}

.feature-list h3,
.proof-grid h3 {
  font-size: 1rem;
}

.feature-list p,
.proof-grid p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.operation-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(36px, 6vw, 78px);
  align-items: start;
}

.timeline {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline li {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 48px rgba(8, 46, 51, 0.08);
}

.timeline span {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--green), var(--teal));
  color: var(--white);
  font-weight: 900;
}

.timeline p {
  margin: 8px 0 0;
  color: var(--muted);
}

.chargers-section {
  background: var(--ink);
  color: var(--white);
}

.chargers-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(38px, 6vw, 80px);
  align-items: center;
}

.charger-visual {
  position: relative;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(45, 183, 87, 0.2), rgba(24, 169, 189, 0.12)),
    #0a2529;
}

.charger-visual img {
  width: min(330px, 100%);
  margin-inline: auto;
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.26);
}

.charger-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.charger-specs span {
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.82rem;
  font-weight: 760;
}

.charger-copy .eyebrow {
  color: #8df3aa;
}

.charger-copy p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.08rem;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: rgba(255, 255, 255, 0.82);
}

.check-list li::before {
  position: absolute;
  top: 0.5em;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  content: "";
}

.proof-section {
  background: var(--surface);
}

.proof-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: start;
}

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

.partner-section {
  background:
    radial-gradient(circle at 14% 18%, rgba(45, 183, 87, 0.18), transparent 28%),
    linear-gradient(135deg, #06181b, #092d32);
  color: var(--white);
}

.partner-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(38px, 6vw, 78px);
  align-items: start;
}

.partner-copy {
  position: sticky;
  top: calc(var(--header-height) + 30px);
}

.partner-copy .eyebrow {
  color: #8df3aa;
}

.partner-copy p:not(.eyebrow) {
  max-width: 560px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.08rem;
}

.partner-button {
  margin-top: 30px;
}

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

.partner-grid article {
  min-height: 220px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.14);
}

.partner-grid span {
  display: inline-flex;
  margin-bottom: 26px;
  color: #8df3aa;
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.partner-grid h3 {
  color: var(--white);
}

.partner-grid p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.contact-section {
  background:
    linear-gradient(135deg, rgba(45, 183, 87, 0.1), rgba(8, 122, 135, 0.08)),
    var(--white);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.74fr);
  gap: clamp(38px, 6vw, 80px);
  align-items: start;
}

.contact-copy p:not(.eyebrow) {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.contact-lines {
  display: inline-flex;
  max-width: 460px;
  min-height: 58px;
  align-items: center;
  margin-top: 34px;
  padding: 14px 18px;
  border: 1px solid rgba(45, 183, 87, 0.26);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(45, 183, 87, 0.13), rgba(8, 122, 135, 0.12)),
    rgba(255, 255, 255, 0.76);
  box-shadow: 0 18px 44px rgba(8, 46, 51, 0.1);
}

.contact-lines span {
  background: linear-gradient(135deg, var(--green-dark), var(--teal));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  font-weight: 900;
  line-height: 1.18;
}

.lead-form {
  display: grid;
  gap: 11px;
  padding: 26px;
  border: 1px solid rgba(8, 122, 135, 0.18);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 24px 64px rgba(8, 46, 51, 0.13);
}

.lead-form label {
  color: var(--ink-soft);
  font-size: 0.85rem;
  font-weight: 800;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fbfdfc;
  color: var(--ink);
  outline: 0;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.lead-form input,
.lead-form select {
  min-height: 46px;
  padding: 0 13px;
}

.lead-form textarea {
  min-height: 112px;
  padding: 12px 13px;
  resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--teal);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(8, 122, 135, 0.12);
}

.form-button {
  width: 100%;
  margin-top: 10px;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--teal-dark);
  font-size: 0.92rem;
  font-weight: 720;
}

.site-footer {
  padding-block: 54px 34px;
  background: #06181b;
  color: rgba(255, 255, 255, 0.78);
}

.footer-layout {
  display: grid;
  grid-template-columns: minmax(260px, 1.35fr) minmax(160px, 0.7fr) minmax(220px, 0.8fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: start;
}

.footer-brand img {
  width: 168px;
  margin-bottom: 14px;
}

.footer-brand p {
  max-width: 430px;
  margin: 0;
}

.footer-column {
  display: grid;
  gap: 14px;
}

.footer-contact {
  justify-items: end;
  text-align: right;
}

.footer-title {
  margin: 0;
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 850;
  text-transform: uppercase;
}

.footer-nav {
  display: grid;
  gap: 10px;
  font-weight: 760;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.78);
  transition: color 180ms ease;
}

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

.footer-social {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--green), var(--teal));
  color: var(--white);
  box-shadow: 0 14px 32px rgba(45, 183, 87, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.footer-social:hover,
.footer-social:focus-visible {
  box-shadow: 0 18px 38px rgba(45, 183, 87, 0.26);
  transform: translateY(-1px);
}

.footer-social svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.footer-note {
  grid-column: 1 / -1;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.9rem;
}

@media (max-width: 1020px) {
  .header-inner {
    grid-template-columns: auto auto 1fr;
  }

  .nav-toggle {
    display: inline-flex;
    grid-column: 3;
    justify-self: end;
  }

  .main-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: grid;
    justify-items: start;
    gap: 0;
    padding: 12px 20px 22px;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 24px 44px rgba(6, 24, 27, 0.12);
    transform: translateY(-125%);
    transition: transform 190ms ease;
  }

  .main-nav.is-open {
    transform: translateY(0);
  }

  .main-nav a {
    width: 100%;
    padding: 14px 0;
  }

  .header-action {
    display: none;
  }

  .solution-grid,
  .feature-list,
  .proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .app-layout,
  .operation-layout,
  .chargers-layout,
  .proof-layout,
  .partner-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .partner-copy {
    position: static;
  }

  .section-heading.align-left {
    max-width: 760px;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 68px;
  }

  .header-inner,
  .container,
  .hero-content {
    width: min(100% - 28px, 1160px);
  }

  .brand img {
    width: 132px;
  }

  .hero {
    min-height: calc(100svh - var(--header-height) - 32px);
    align-items: end;
    background:
      linear-gradient(180deg, rgba(3, 19, 22, 0.2), rgba(3, 19, 22, 0.88) 64%, rgba(3, 19, 22, 0.96)),
      url("../img/hero-oxyvolt.webp") 64% center / cover no-repeat;
  }

  .hero-content {
    padding-block: 48px 36px;
  }

  h1 {
    font-size: clamp(2.55rem, 14vw, 4.4rem);
  }

  h2 {
    font-size: clamp(1.9rem, 9vw, 2.9rem);
  }

  .hero-proof {
    display: none;
  }

  .intro-grid,
  .solution-grid,
  .feature-list,
  .partner-grid,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding-block: 70px;
  }

  .intro-band {
    padding-block: 20px;
  }

  .intro-grid article {
    min-height: auto;
    padding: 22px;
  }

  .solution-card {
    min-height: 246px;
  }

  .timeline li {
    grid-template-columns: 42px 1fr;
    padding: 18px;
  }

  .timeline span {
    width: 42px;
    height: 42px;
  }

  .contact-layout {
    gap: 32px;
  }

  .lead-form {
    padding: 20px;
  }

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

  .footer-brand,
  .footer-note {
    grid-column: 1 / -1;
  }

  .footer-contact {
    justify-items: start;
    text-align: left;
  }
}

@media (max-width: 440px) {
  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

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

  .phone-shell {
    width: min(292px, 100%);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
