:root {
  --night: #020711;
  --petrol: #061725;
  --petrol-2: #0b2a3d;
  --brand-blue: #1682ff;
  --cyan: #1cebe1;
  --ice: #050e18;
  --ice-2: #081724;
  --line: rgba(109, 200, 232, 0.18);
  --text: #eef7fb;
  --muted: #9ab4c5;
  --white: #ffffff;
  --shadow: 0 24px 54px rgba(0, 0, 0, 0.36);
  --radius: 8px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 4%, rgba(22, 130, 255, 0.14), transparent 28rem),
    radial-gradient(circle at 88% 18%, rgba(28, 235, 225, 0.11), transparent 30rem),
    var(--ice);
  color: var(--text);
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.5;
}

.site-shell {
  animation: pageIn 420ms ease both;
}

@keyframes pageIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

body.is-menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-shell {
  min-height: 100vh;
  overflow: hidden;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  min-height: 96px;
  padding: 0 clamp(22px, 5vw, 72px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  background: rgba(2, 7, 17, 0.88);
  border-bottom: 1px solid rgba(109, 200, 232, 0.16);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 220px;
}

.brand img {
  width: 280px;
  height: 72px;
  object-fit: contain;
  object-position: left center;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  color: #9fb8c9;
  font-size: 0.96rem;
  font-weight: 800;
}

.main-nav a {
  position: relative;
  padding: 12px 0;
  transition: color 180ms ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 2px;
  width: 0;
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--brand-blue), var(--cyan));
  transform: translateX(-50%);
  transition: width 180ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a.is-active {
  color: var(--white);
  outline: none;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.main-nav a.is-active::after {
  width: 28px;
}

.mobile-nav-actions {
  display: none;
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.header-action {
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid rgba(109, 200, 232, 0.2);
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.84rem;
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.22);
  transition: transform 180ms ease, border-color 180ms ease;
}

.client-action {
  border-color: rgba(28, 235, 225, 0.28);
  background: linear-gradient(145deg, rgba(13, 49, 72, 0.96), rgba(5, 23, 37, 0.96));
}

.client-action::before {
  content: "";
  width: 18px;
  height: 18px;
  display: inline-block;
  flex: 0 0 auto;
  background: currentColor;
  mask-position: center;
  mask-size: contain;
  mask-repeat: no-repeat;
}

.tracking-action {
  color: #67f5ec;
  box-shadow: 0 14px 28px rgba(28, 235, 225, 0.1);
}

.tracking-action::before {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2a7 7 0 0 0-7 7c0 5.2 7 13 7 13s7-7.8 7-13a7 7 0 0 0-7-7Zm0 9.5A2.5 2.5 0 1 1 12 6a2.5 2.5 0 0 1 0 5.5Z'/%3E%3C/svg%3E");
}

.finance-action {
  color: #9fc5ff;
  box-shadow: 0 14px 28px rgba(22, 130, 255, 0.12);
}

.finance-action::before {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 4h14a2 2 0 0 1 2 2v2h1a1 1 0 0 1 1 1v7a2 2 0 0 1-2 2v2H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2Zm0 2v12h14v-2h-4a4 4 0 0 1 0-8h4V6H4Zm10 4a2 2 0 1 0 0 4h6v-4h-6Zm0 1.3a.7.7 0 1 1 0 1.4.7.7 0 0 1 0-1.4Z'/%3E%3C/svg%3E");
}

.client-action:hover,
.client-action:focus-visible {
  color: var(--white);
  border-color: rgba(28, 235, 225, 0.62);
  box-shadow: 0 16px 32px rgba(22, 130, 255, 0.18);
}

.whatsapp-button {
  background: linear-gradient(135deg, #25d366, #128c4a);
  color: #ffffff;
  border: 1px solid rgba(18, 140, 74, 0.28);
  box-shadow: 0 16px 30px rgba(18, 140, 74, 0.18);
}

.whatsapp-button::before {
  content: "";
  width: 18px;
  height: 18px;
  display: inline-block;
  flex: 0 0 auto;
  background: currentColor;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.1 2a9.8 9.8 0 0 1 8.4 14.9L22 22l-5.3-1.4A9.9 9.9 0 0 1 2.2 12 9.8 9.8 0 0 1 12.1 2Zm0 2A7.9 7.9 0 0 0 4.2 12c0 1.5.4 3 1.2 4.2l.2.4-.8 2.8 2.9-.8.4.2a7.9 7.9 0 1 0 4-14.8Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.call-button {
  background: linear-gradient(135deg, var(--brand-blue), #20bfd0);
  color: #ffffff;
  border: 1px solid rgba(28, 235, 225, 0.34);
  box-shadow: 0 16px 30px rgba(22, 130, 255, 0.2);
}

.call-button::before {
  content: "";
  width: 18px;
  height: 18px;
  display: inline-block;
  flex: 0 0 auto;
  background: currentColor;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.6 2.8 9 2.2c.7-.2 1.5.2 1.8.9l1.1 2.6c.3.7.1 1.5-.5 1.9l-1.5 1.2a12.7 12.7 0 0 0 5.3 5.3l1.2-1.5c.5-.6 1.3-.8 1.9-.5l2.6 1.1c.7.3 1.1 1.1.9 1.8l-.6 2.4c-.2.8-.9 1.3-1.7 1.3A17.5 17.5 0 0 1 4.2 4.5c0-.8.6-1.5 1.4-1.7Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.whatsapp-button svg {
  display: none;
}

.whatsapp-button:hover,
.whatsapp-button:focus-visible {
  border-color: rgba(18, 140, 74, 0.55);
  box-shadow: 0 18px 34px rgba(18, 140, 74, 0.24);
}

.call-button:hover,
.call-button:focus-visible {
  border-color: rgba(28, 235, 225, 0.58);
  box-shadow: 0 18px 34px rgba(22, 130, 255, 0.26);
}

.header-action:hover,
.header-action:focus-visible {
  border-color: rgba(18, 107, 255, 0.5);
  transform: translateY(-1px);
  outline: none;
}

.header-action svg {
  width: 20px;
  height: 20px;
  fill: #0a9d72;
}

.menu-toggle {
  display: none;
}

.section {
  padding: clamp(64px, 8vw, 104px) clamp(22px, 5vw, 72px);
}

.section-inner,
.hero-inner,
.footer-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: 720px;
  padding: 152px clamp(22px, 5vw, 72px) 74px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.hero-bg-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
  filter: brightness(1.18) saturate(1.05) contrast(1.02);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7, 24, 39, 0.82) 0%, rgba(7, 24, 39, 0.64) 42%, rgba(14, 42, 58, 0.2) 74%),
    linear-gradient(180deg, rgba(7, 24, 39, 0.12), rgba(7, 24, 39, 0.58));
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(34, 211, 197, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34, 211, 197, 0.055) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(to right, #000, transparent 74%);
}

.hero-inner {
  position: relative;
  z-index: 3;
}

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

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 0.8rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

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

.hero h1 {
  max-width: 620px;
  font-size: clamp(2.55rem, 5vw, 4.35rem);
  font-weight: 950;
  text-transform: uppercase;
  text-shadow: 0 16px 42px rgba(0, 0, 0, 0.38);
}

.hero h1 span {
  display: block;
  color: var(--cyan);
}

.hero-text {
  max-width: 540px;
  margin: 22px 0 0;
  color: #e4eef5;
  font-size: 1.08rem;
}

.hero-actions,
.cta-actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.center .cta-actions {
  justify-content: center;
}

.hero-metrics {
  width: min(100%, 620px);
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.hero-metrics span {
  color: #dce9f2;
  font-size: 0.84rem;
  font-weight: 700;
}

.hero-metrics strong {
  display: block;
  color: var(--cyan);
  font-size: 1.45rem;
  line-height: 1;
  margin-bottom: 5px;
}

.btn {
  min-height: 50px;
  border: 0;
  border-radius: var(--radius);
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 950;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex: 0 0 auto;
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand-blue), #2f85ff);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(18, 107, 255, 0.26);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.btn-light {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1px solid rgba(28, 235, 225, 0.28);
}

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

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.section-heading h1,
.section-heading h2,
.split-copy h2,
.contact-copy h2 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 950;
}

.section-heading p,
.split-copy p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.02rem;
}

.page-hero {
  padding: 150px clamp(22px, 5vw, 72px) 74px;
  background:
    radial-gradient(circle at 86% 16%, rgba(34, 211, 197, 0.22), transparent 28rem),
    linear-gradient(135deg, var(--night), var(--petrol));
  color: var(--white);
}

.page-hero .section-heading {
  margin-bottom: 0;
}

.page-hero h1,
.page-hero .section-heading h1 {
  color: var(--white);
}

.page-hero p {
  color: #d7e6ef;
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(8, 23, 36, 0.84);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 620ms ease, transform 620ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

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

@media (prefers-reduced-motion: reduce) {
  .site-shell,
  .reveal {
    animation: none;
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.service-card,
.benefit-card,
.step-card,
.vehicle-card {
  padding: 24px;
}

.service-card svg,
.benefit-card svg {
  width: 38px;
  height: 38px;
  fill: #148fb1;
  margin-bottom: 18px;
}

.card h2,
.card h3 {
  margin: 0;
  color: var(--white);
  font-size: 1.18rem;
}

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

.soft-section {
  background:
    radial-gradient(circle at 10% 12%, rgba(22, 130, 255, 0.1), transparent 25rem),
    var(--ice-2);
}

.white-section {
  background:
    radial-gradient(circle at 88% 20%, rgba(28, 235, 225, 0.08), transparent 26rem),
    var(--ice);
}

.dark-section {
  background:
    radial-gradient(circle at 80% 20%, rgba(34, 211, 197, 0.16), transparent 28rem),
    linear-gradient(135deg, var(--night), var(--petrol));
  color: var(--white);
}

.dark-section .section-heading h2,
.dark-section .split-copy h2,
.dark-section h2,
.dark-section h3 {
  color: var(--white);
}

.dark-section .section-heading p,
.dark-section .split-copy p,
.dark-section p {
  color: #d7e6ef;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
  gap: 42px;
  align-items: center;
}

.split-media {
  min-height: 360px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: var(--petrol);
}

.split-media img,
.split-media video {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.stat-strip {
  margin-top: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(8, 23, 36, 0.84);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.stat-strip div {
  min-height: 82px;
  padding: 16px;
  display: grid;
  place-items: center;
  gap: 4px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.stat-strip div:last-child {
  border-right: 0;
}

.stat-strip strong {
  color: var(--cyan);
  font-size: 1.6rem;
  line-height: 1;
}

.stat-strip span {
  color: var(--muted);
  font-size: 0.9rem;
}

.vehicle-card {
  overflow: hidden;
  padding: 0;
}

.vehicle-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.vehicle-card div {
  padding: 24px;
}

.process-list {
  display: grid;
  gap: 14px;
}

.step-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
}

.step-card span {
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--brand-blue), var(--cyan));
  color: var(--white);
  font-weight: 950;
}

.contact-section {
  background:
    radial-gradient(circle at 90% 18%, rgba(34, 211, 197, 0.16), transparent 24rem),
    radial-gradient(circle at 8% 70%, rgba(22, 130, 255, 0.1), transparent 26rem),
    var(--ice);
}

.app-download-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.download-card {
  position: relative;
  min-height: 112px;
  padding: 20px;
  border: 1px solid rgba(109, 200, 232, 0.2);
  border-radius: 14px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.22);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.download-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 12% 10%, rgba(255, 255, 255, 0.16), transparent 38%);
}

.download-card-google {
  background: linear-gradient(145deg, #0c3a31, #071b20 68%);
}

.download-card-apple {
  background: linear-gradient(145deg, #27303b, #090d13 68%);
}

.download-card:hover,
.download-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(28, 235, 225, 0.56);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.3);
  outline: none;
}

.download-icon {
  position: relative;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
}

.download-icon svg {
  width: 29px;
  height: 29px;
  fill: currentColor;
}

.download-card-google .download-icon {
  color: #54e5aa;
}

.download-copy {
  position: relative;
  min-width: 0;
  display: grid;
}

.download-copy small,
.download-copy span {
  color: #a9c0cf;
  font-size: 0.72rem;
  font-weight: 700;
}

.download-copy strong {
  margin: 2px 0;
  font-size: 1.12rem;
  line-height: 1.1;
}

.download-arrow {
  position: relative;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.1);
}

.download-arrow svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.app-panel {
  padding: 28px;
}

.app-panel-badge {
  width: fit-content;
  margin-bottom: 14px;
  padding: 6px 10px;
  border: 1px solid rgba(28, 235, 225, 0.3);
  border-radius: 99px;
  display: inline-flex;
  color: var(--cyan);
  background: rgba(28, 235, 225, 0.08);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.app-panel ul {
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.app-panel li + li {
  margin-top: 10px;
}

body.is-modal-open {
  overflow: hidden;
}

.finance-dialog {
  width: min(540px, calc(100% - 32px));
  max-height: calc(100vh - 32px);
  margin: auto;
  padding: 0;
  border: 1px solid rgba(109, 200, 232, 0.3);
  border-radius: 18px;
  overflow: auto;
  color: var(--text);
  background: #07131f;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.64);
}

.finance-dialog::backdrop {
  background: rgba(0, 5, 12, 0.78);
  backdrop-filter: blur(7px);
}

.finance-dialog:not([open]) {
  display: none;
}

.finance-dialog-fallback[open] {
  position: fixed;
  inset: 50% auto auto 50%;
  z-index: 1000;
  transform: translate(-50%, -50%);
}

.finance-dialog-head {
  padding: 28px 28px 20px;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  background:
    radial-gradient(circle at 90% 0, rgba(28, 235, 225, 0.14), transparent 14rem),
    linear-gradient(145deg, #0b2538, #07131f);
}

.finance-dialog-head p,
.finance-dialog-head h2 {
  margin: 0;
}

.finance-dialog-head p {
  margin-bottom: 6px;
  color: var(--cyan);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.finance-dialog-head h2 {
  font-size: clamp(1.45rem, 5vw, 2rem);
}

.finance-dialog-close {
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.finance-dialog-close:hover,
.finance-dialog-close:focus-visible {
  border-color: var(--cyan);
  outline: none;
}

.finance-dialog-body {
  padding: 26px 28px 28px;
}

.finance-dialog-intro {
  margin: 0 0 22px;
  color: var(--muted);
}

.finance-primary-link {
  min-height: 72px;
  padding: 14px 18px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--brand-blue), #14b9c8);
  text-align: center;
  box-shadow: 0 16px 30px rgba(22, 130, 255, 0.2);
}

.finance-primary-link strong,
.finance-primary-link span {
  display: block;
}

.finance-primary-link strong {
  font-size: 1rem;
  font-weight: 950;
}

.finance-primary-link span {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.76rem;
  font-weight: 700;
}

.finance-primary-link:hover,
.finance-primary-link:focus-visible {
  filter: brightness(1.08);
  outline: 2px solid rgba(255, 255, 255, 0.72);
  outline-offset: 2px;
}

.finance-secondary-actions {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.finance-secondary-actions a {
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid rgba(109, 200, 232, 0.2);
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: #c7dae6;
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.8rem;
  font-weight: 850;
  text-align: center;
}

.finance-secondary-actions a:hover,
.finance-secondary-actions a:focus-visible {
  border-color: var(--cyan);
  color: var(--white);
  outline: none;
}

.finance-security-note {
  margin: 18px 0 0;
  color: #819baa;
  font-size: 0.76rem;
  text-align: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(460px, 1fr);
  gap: 42px;
  align-items: start;
}

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

.contact-actions {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-weight: 800;
}

.contact-list svg {
  width: 22px;
  height: 22px;
  fill: #1287aa;
}

.lead-form {
  width: 100%;
  padding: 26px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 900;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  border: 1px solid rgba(109, 200, 232, 0.18);
  border-radius: var(--radius);
  background: rgba(2, 7, 17, 0.54);
  color: var(--text);
  padding: 13px 14px;
  outline: none;
  transition: border-color 160ms ease, background 160ms ease;
}

.lead-form textarea {
  min-height: 128px;
  resize: vertical;
}

.lead-form input:focus,
.lead-form textarea:focus {
  border-color: var(--cyan);
  background: rgba(8, 23, 36, 0.95);
}

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

.site-footer {
  padding: 54px clamp(22px, 5vw, 72px) 26px;
  background: var(--night);
  color: #d7e6ef;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(240px, 1.15fr) minmax(150px, 0.7fr) minmax(180px, 0.82fr) minmax(260px, 1fr);
  align-items: start;
  gap: 34px;
}

.site-footer img {
  width: 250px;
  height: 70px;
  max-height: none;
  object-fit: contain;
  object-position: left center;
  filter: none;
}

.site-footer p,
.site-footer span,
.site-footer a {
  margin: 0;
  color: #d7e6ef;
}

.site-footer h3 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 1rem;
}

.footer-brand,
.footer-links,
.footer-contact,
.footer-reputation {
  display: grid;
  gap: 12px;
}

.footer-brand .whatsapp-button,
.footer-brand .call-button {
  width: fit-content;
  min-height: 44px;
  padding: 0 16px;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 900;
}

.footer-links a {
  width: fit-content;
  color: #d7e6ef;
  transition: color 180ms ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--cyan);
  outline: none;
}

.reclame-badge {
  width: fit-content;
  padding: 10px 14px;
  border-radius: var(--radius);
  background: #19a974;
  color: #ffffff;
  font-weight: 950;
  box-shadow: 0 12px 24px rgba(25, 169, 116, 0.22);
}

.review {
  padding-left: 12px;
  border-left: 3px solid var(--cyan);
  font-size: 0.92rem;
}

.google-review {
  width: fit-content;
  min-height: 42px;
  padding: 0 14px;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(28, 235, 225, 0.34);
  background: rgba(28, 235, 225, 0.12);
  color: var(--white) !important;
  font-weight: 950;
}

.footer-bottom {
  width: min(1180px, 100%);
  margin: 34px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #9fb4c2;
  font-size: 0.9rem;
}

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

  .header-actions {
    justify-self: end;
  }

  .main-nav {
    position: fixed;
    inset: 88px 0 auto;
    padding: 24px clamp(22px, 5vw, 72px) 34px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    background: rgba(2, 7, 17, 0.98);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 22px 40px rgba(0, 0, 0, 0.36);
  }

  body.is-menu-open .main-nav {
    display: flex;
  }

  .menu-toggle {
    width: 46px;
    height: 46px;
    border: 1px solid rgba(109, 200, 232, 0.22);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.08);
    display: grid;
    place-content: center;
    gap: 5px;
    cursor: pointer;
  }

  .menu-toggle span {
    width: 20px;
    height: 2px;
    background: var(--white);
  }

  .split,
  .contact-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 1000px) {
  .contact-header-action {
    display: none;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 80px;
    padding-inline: 18px;
    gap: 12px;
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .brand {
    min-width: 0;
    max-width: calc(100vw - 96px);
  }

  .brand img {
    width: min(210px, calc(100vw - 108px));
    height: 58px;
    max-height: none;
  }

  .header-actions {
    display: none;
  }

  .menu-toggle {
    justify-self: end;
  }

  .main-nav {
    inset: 80px 0 auto;
    padding-inline: 22px;
  }

  .mobile-nav-actions {
    width: 100%;
    margin-top: 8px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .main-nav .mobile-nav-actions a {
    min-height: 46px;
    padding: 10px 12px;
    border: 1px solid rgba(109, 200, 232, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--white);
    font-size: 0.8rem;
    text-align: center;
  }

  .main-nav .mobile-nav-actions a::after {
    display: none;
  }

  .main-nav .mobile-nav-actions .client-action::before,
  .main-nav .mobile-nav-actions .whatsapp-button::before,
  .main-nav .mobile-nav-actions .call-button::before {
    width: 16px;
    height: 16px;
  }

  .hero {
    min-height: 620px;
    padding-inline: 24px;
    padding-top: 124px;
    padding-bottom: 44px;
  }

  .hero-inner,
  .hero-copy,
  .hero h1,
  .hero-text {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 12vw, 3.2rem);
  }

  .hero-text {
    font-size: 1rem;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(7, 24, 39, 0.82), rgba(7, 24, 39, 0.58)),
      linear-gradient(180deg, rgba(7, 24, 39, 0.16), rgba(7, 24, 39, 0.62));
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
  }

  .hero-actions .btn,
  .cta-actions .btn {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    text-align: center;
    white-space: normal;
  }

  .hero-metrics,
  .grid-3,
  .grid-4,
  .stat-strip,
  .lead-form,
  .app-download-grid {
    grid-template-columns: 1fr;
  }

  .download-card {
    min-height: 102px;
  }

  .finance-dialog-head,
  .finance-dialog-body {
    padding-left: 20px;
    padding-right: 20px;
  }

  .stat-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stat-strip div:last-child {
    border-bottom: 0;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 420px) {
  .brand img {
    width: min(190px, calc(100vw - 100px));
    height: 54px;
  }

  .lead-form {
    padding: 20px;
  }
}
