:root {
  --orange: #ff6a00;
  --orange-2: #ff9d00;
  --orange-soft: #fff1e6;
  --ink: #0b0b0d;
  --ink-2: #151518;
  --text: #252529;
  --muted: #73737b;
  --line: #e6e6e9;
  --paper: #ffffff;
  --off-white: #f7f7f8;
  --green: #21c063;
  --shadow: 0 24px 70px rgba(0, 0, 0, .17);
  --radius: 24px;
  --shell: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.chat-open {
  overflow: hidden;
}

button,
input {
  font: inherit;
}

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

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

img,
svg {
  display: block;
}

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

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

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  color: #fff;
}

.header-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

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

.brand-logo-frame {
  position: relative;
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 7px 22px rgba(0, 0, 0, .22);
}

.brand-logo-frame img {
  position: absolute;
  width: 112%;
  height: 112%;
  max-width: none;
  left: -6%;
  top: -6%;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-size: 18px;
  line-height: 1;
  letter-spacing: -.02em;
}

.brand-copy small {
  color: var(--orange-2);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

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

.main-nav > a {
  position: relative;
  color: rgba(255, 255, 255, .76);
  font-size: 14px;
  font-weight: 650;
  transition: .2s ease;
}

.main-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width .2s ease;
}

.main-nav > a:hover {
  color: #fff;
}

.main-nav > a:hover::after {
  width: 100%;
}

.main-nav .nav-cta {
  padding: 13px 20px;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, .06);
  backdrop-filter: blur(12px);
}

.main-nav .nav-cta:hover {
  border-color: var(--orange);
  background: var(--orange);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  border-radius: 11px;
  color: #fff;
  background: rgba(255, 255, 255, .1);
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  border-radius: 2px;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 790px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: #07080a;
}

.hero-image,
.hero-shade,
.hero-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(5, 5, 7, .98) 0%, rgba(5, 5, 7, .91) 29%, rgba(5, 5, 7, .5) 54%, rgba(5, 5, 7, .08) 100%),
    linear-gradient(0deg, rgba(5, 5, 7, .62), transparent 35%);
}

.hero-lines {
  opacity: .22;
  background-image:
    linear-gradient(rgba(255, 255, 255, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .07) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: linear-gradient(90deg, #000, transparent 63%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 91px;
}

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

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--orange-2);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 34px;
  height: 2px;
  background: var(--orange);
}

.hero h1 {
  max-width: 610px;
  margin: 22px 0 22px;
  font-size: clamp(54px, 6vw, 88px);
  line-height: .97;
  letter-spacing: -.062em;
}

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

.hero-copy > p {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, .7);
  font-size: 18px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 34px;
}

.button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 25px;
  border: 0;
  border-radius: 11px;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

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

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

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--orange), #ff8a00);
  box-shadow: 0 13px 30px rgba(255, 106, 0, .27);
}

.button-primary:hover {
  box-shadow: 0 16px 35px rgba(255, 106, 0, .39);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, .8);
  font-size: 14px;
  font-weight: 700;
}

.text-link span {
  color: var(--orange-2);
}

.hero-trust {
  display: flex;
  gap: 26px;
  margin: 38px 0 0;
  padding: 28px 0 0;
  border-top: 1px solid rgba(255, 255, 255, .13);
  list-style: none;
}

.hero-trust li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, .63);
  font-size: 12px;
  font-weight: 650;
}

.hero-trust svg {
  width: 19px;
  fill: none;
  stroke: var(--orange-2);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 29px;
  width: 23px;
  height: 39px;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 20px;
}

.scroll-cue span {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 3px;
  height: 7px;
  border-radius: 4px;
  background: var(--orange);
  animation: scroll 1.7s ease infinite;
}

@keyframes scroll {
  0% { opacity: 0; transform: translate(-50%, 0); }
  30% { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, 12px); }
}

.service-strip {
  position: relative;
  z-index: 4;
  margin-top: -1px;
  color: #fff;
  background: var(--ink);
  border-top: 1px solid rgba(255, 255, 255, .07);
}

.service-strip-inner {
  min-height: 130px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.service-strip article {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 38px;
  border-right: 1px solid rgba(255, 255, 255, .1);
}

.service-strip article:first-child {
  border-left: 1px solid rgba(255, 255, 255, .1);
}

.service-icon {
  width: 48px;
  height: 48px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 13px;
  color: var(--orange-2);
  background: rgba(255, 106, 0, .12);
}

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

.service-strip article div {
  display: grid;
  gap: 6px;
}

.service-strip strong {
  font-size: 14px;
}

.service-strip small {
  color: rgba(255, 255, 255, .45);
  font-size: 11px;
}

.section {
  padding: 110px 0;
}

.section-heading {
  max-width: 690px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-heading h2,
.steps-intro h2,
.faq-layout h2,
.final-cta h2 {
  margin: 13px 0 15px;
  color: var(--ink);
  font-size: clamp(34px, 4.2vw, 52px);
  line-height: 1.08;
  letter-spacing: -.045em;
}

.section-heading p,
.steps-intro > p,
.faq-layout > div > p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.brands-section {
  background:
    radial-gradient(circle at 3% 5%, rgba(255, 106, 0, .08), transparent 25%),
    var(--off-white);
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.brand-card {
  min-height: 203px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 22px 16px;
  border: 1px solid #e2e2e5;
  border-radius: 18px;
  color: var(--text);
  background: #fff;
  box-shadow: 0 6px 20px rgba(22, 22, 26, .025);
  cursor: pointer;
  transition: .25s ease;
}

.brand-card:hover,
.brand-card:focus-visible {
  transform: translateY(-5px);
  border-color: rgba(255, 106, 0, .55);
  box-shadow: 0 17px 36px rgba(30, 25, 20, .09);
  outline: none;
}

.brand-card strong {
  margin-top: 18px;
  font-size: 15px;
}

.brand-card small {
  margin-top: 10px;
  color: #9a9aa0;
  font-size: 10px;
  font-weight: 650;
  text-transform: uppercase;
  letter-spacing: .09em;
}

.brand-card small span {
  margin-left: 4px;
  color: var(--orange);
}

.brand-emblem {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: -.04em;
}

.emblem-fiat {
  border: 5px solid #d4d7da;
  background: #a90c20;
}

.emblem-vw {
  border: 3px solid #fff;
  outline: 3px solid #16447d;
  color: #16447d;
  background: #fff;
  font-size: 19px;
}

.emblem-ford {
  width: 82px;
  border-radius: 50%;
  background: #123f82;
  font-family: Georgia, serif;
  font-size: 17px;
  font-style: italic;
}

.emblem-chevrolet {
  position: relative;
  border-radius: 12px;
  background: transparent;
}

.emblem-chevrolet i,
.emblem-chevrolet i::after {
  display: block;
  width: 54px;
  height: 17px;
  transform: skew(-13deg);
  background: #d7a21a;
}

.emblem-chevrolet i::after {
  content: "";
  transform: translate(9px, -8px);
}

.emblem-jeep {
  color: #1c382c;
  background: #d9dfd6;
  font-size: 18px;
}

.emblem-honda {
  border: 5px solid #d71920;
  border-radius: 17px;
  color: #d71920;
  background: #fff;
  font-size: 35px;
  font-family: Arial Black, sans-serif;
}

.emblem-renault {
  border-radius: 12px;
  background: #ffcf00;
}

.emblem-renault i {
  width: 29px;
  height: 39px;
  border: 7px solid #161616;
  transform: skew(-10deg) rotate(10deg);
}

.emblem-mercedes {
  border: 3px solid #777;
  color: #555;
  background: #eee;
  font-size: 39px;
}

.emblem-volvo {
  border: 3px solid #145789;
  color: #145789;
  background: #fff;
  font-size: 12px;
}

.emblem-iveco {
  border-radius: 17px;
  color: #1c55a5;
  background: #edf3ff;
  font-size: 14px;
}

.emblem-chrysler {
  width: 84px;
  color: #263d6a;
  background: transparent;
  font-size: 13px;
}

.steps-section {
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 14% 70%, rgba(255, 106, 0, .19), transparent 27%),
    linear-gradient(130deg, #17171a, #08080a);
}

.steps-layout {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 95px;
  align-items: center;
}

.section-kicker-dark {
  color: var(--orange-2);
}

.steps-intro h2 {
  color: #fff;
}

.steps-intro > p {
  color: rgba(255, 255, 255, .55);
}

.mini-dashboard {
  width: 390px;
  max-width: 100%;
  margin-top: 40px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 17px;
  background: rgba(255, 255, 255, .04);
  box-shadow: 0 26px 60px rgba(0, 0, 0, .3);
  transform: perspective(600px) rotateY(5deg);
}

.dash-top {
  display: flex;
  gap: 6px;
  padding: 11px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.dash-top span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .16);
}

.dash-top span:first-child {
  background: var(--orange);
}

.dash-screen {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 13px;
  align-items: center;
  padding: 23px;
}

.dash-lock {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: var(--orange-2);
  background: rgba(255, 106, 0, .15);
}

.dash-lock svg {
  width: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.dash-screen div:nth-child(2) {
  display: grid;
  gap: 5px;
}

.dash-screen b {
  font-size: 14px;
}

.dash-screen small {
  color: rgba(255, 255, 255, .4);
}

.dash-screen > i {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
  font-style: normal;
}

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

.steps-list li {
  position: relative;
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 25px;
  min-height: 130px;
}

.steps-list li:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 59px;
  bottom: 13px;
  left: 29px;
  width: 1px;
  background: linear-gradient(var(--orange), rgba(255, 106, 0, .1));
}

.steps-list li > span {
  width: 59px;
  height: 59px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 106, 0, .45);
  border-radius: 17px;
  color: var(--orange-2);
  background: rgba(255, 106, 0, .1);
  font-size: 13px;
  font-weight: 850;
}

.steps-list h3 {
  margin: 7px 0 8px;
  font-size: 20px;
}

.steps-list p {
  margin: 0;
  color: rgba(255, 255, 255, .5);
  font-size: 14px;
  line-height: 1.6;
}

.benefits-section {
  background: #fff;
}

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

.benefits-grid article {
  position: relative;
  min-height: 250px;
  padding: 35px 31px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  transition: .25s ease;
}

.benefits-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 106, 0, .35);
  box-shadow: 0 18px 38px rgba(0, 0, 0, .07);
}

.benefits-grid article::after {
  content: "";
  position: absolute;
  right: -30px;
  bottom: -50px;
  width: 130px;
  height: 130px;
  border: 23px solid var(--orange-soft);
  border-radius: 50%;
}

.benefits-grid span {
  display: inline-flex;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--orange);
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
}

.benefits-grid h3 {
  margin: 31px 0 12px;
  font-size: 21px;
}

.benefits-grid p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

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

.faq-layout {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 90px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #fff;
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 21px 23px;
  font-size: 15px;
  font-weight: 750;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  color: var(--orange);
  font-size: 23px;
  font-weight: 400;
  transition: transform .2s ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  margin: 0;
  padding: 0 23px 22px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 70px 0;
  color: #fff;
  background: linear-gradient(135deg, #ff5d00, #ff8c00);
}

.final-cta::before,
.final-cta::after {
  content: "";
  position: absolute;
  border: 45px solid rgba(255, 255, 255, .09);
  border-radius: 50%;
}

.final-cta::before {
  width: 240px;
  height: 240px;
  left: -80px;
  top: -140px;
}

.final-cta::after {
  width: 340px;
  height: 340px;
  right: -100px;
  bottom: -260px;
}

.final-cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.final-cta .section-kicker {
  color: rgba(255, 255, 255, .72);
}

.final-cta h2 {
  max-width: 720px;
  margin-bottom: 0;
  color: #fff;
}

.button-light {
  min-width: 180px;
  color: var(--orange);
  background: #fff;
  box-shadow: 0 12px 28px rgba(83, 32, 0, .18);
}

.site-footer {
  color: rgba(255, 255, 255, .58);
  background: #09090b;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.65fr .6fr 1fr;
  gap: 70px;
  padding: 67px 0 58px;
}

.footer-brand {
  display: flex;
  gap: 17px;
  align-items: flex-start;
}

.footer-brand strong {
  color: #fff;
  font-size: 19px;
}

.footer-brand p {
  max-width: 340px;
  margin: 9px 0 0;
  font-size: 13px;
  line-height: 1.7;
}

.footer-main > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.footer-main h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.footer-main a,
.footer-main span {
  font-size: 13px;
}

.footer-main a:hover {
  color: var(--orange-2);
}

.footer-bottom {
  min-height: 69px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, .09);
  font-size: 11px;
}

.whatsapp-float {
  position: fixed;
  z-index: 15;
  right: 25px;
  bottom: 25px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
  box-shadow: 0 12px 28px rgba(21, 151, 76, .35);
  transition: transform .2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.03);
}

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

.chat-overlay {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(0, 0, 0, .72);
  backdrop-filter: blur(7px);
}

.chat-overlay[hidden] {
  display: none;
}

.chat-modal {
  width: min(100%, 480px);
  height: min(720px, calc(100vh - 40px));
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 24px;
  background: #f5f5f6;
  box-shadow: var(--shadow);
  animation: modal-in .25s ease both;
}

@keyframes modal-in {
  from { opacity: 0; transform: translateY(18px) scale(.98); }
  to { opacity: 1; transform: none; }
}

.chat-header {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 17px 18px;
  color: #fff;
  background: linear-gradient(135deg, #18181b, #09090b);
}

.chat-avatar {
  position: relative;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, .16);
  border-radius: 14px;
  background: #fff;
}

.chat-avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.chat-avatar span {
  position: absolute;
  right: 1px;
  bottom: 1px;
  width: 11px;
  height: 11px;
  border: 2px solid #141416;
  border-radius: 50%;
  background: var(--green);
}

.chat-header > div:nth-child(2) {
  display: grid;
  gap: 4px;
  flex: 1;
}

.chat-header strong {
  font-size: 14px;
}

.chat-header small {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, .55);
  font-size: 10px;
}

.chat-header small i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

.chat-close,
.chat-back {
  display: grid;
  place-items: center;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.chat-close {
  width: 39px;
  height: 39px;
  border-radius: 10px;
  color: rgba(255, 255, 255, .68);
}

.chat-close:hover {
  color: #fff;
  background: rgba(255, 255, 255, .08);
}

.chat-close svg,
.chat-back svg {
  width: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.chat-context {
  min-height: 43px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  color: #77777d;
  border-bottom: 1px solid #e1e1e4;
  background: #fff;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .07em;
}

.chat-back {
  width: 28px;
  height: 28px;
  margin-left: -5px;
  color: var(--orange);
}

.chat-context strong {
  color: var(--text);
}

.chat-body {
  min-height: 0;
  overflow-y: auto;
  padding: 20px 17px 26px;
  scroll-behavior: smooth;
  background:
    radial-gradient(circle at 85% 15%, rgba(255, 106, 0, .05), transparent 23%),
    #f5f5f6;
}

.message-row {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  margin: 0 0 12px;
  animation: message-in .23s ease both;
}

.message-row.user {
  justify-content: flex-end;
}

@keyframes message-in {
  from { opacity: 0; transform: translateY(7px); }
  to { opacity: 1; transform: none; }
}

.bot-dot {
  width: 25px;
  height: 25px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: var(--orange);
  font-size: 10px;
  font-weight: 900;
}

.message {
  max-width: 82%;
  padding: 11px 13px;
  border-radius: 14px 14px 14px 4px;
  color: #3f3f44;
  background: #fff;
  box-shadow: 0 3px 12px rgba(0, 0, 0, .055);
  font-size: 13px;
  line-height: 1.52;
}

.message strong {
  color: var(--ink);
}

.message-row.user .message {
  border-radius: 14px 14px 4px 14px;
  color: #fff;
  background: linear-gradient(135deg, #ff6a00, #ff8500);
}

.message.price {
  width: min(82%, 300px);
  padding: 16px;
  border-left: 3px solid var(--orange);
  background: #fff;
}

.message.price b {
  display: block;
  margin-top: 4px;
  color: var(--orange);
  font-size: 23px;
}

.chat-form {
  display: flex;
  gap: 8px;
  margin: 7px 0 16px 33px;
  animation: message-in .23s ease both;
}

.chat-form input {
  min-width: 0;
  flex: 1;
  height: 45px;
  padding: 0 13px;
  border: 1px solid #d9d9dd;
  border-radius: 11px;
  color: var(--text);
  background: #fff;
  outline: none;
}

.chat-form input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 106, 0, .1);
}

.chat-form button {
  min-width: 45px;
  height: 45px;
  padding: 0 14px;
  border: 0;
  border-radius: 11px;
  color: #fff;
  background: var(--orange);
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.chat-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 7px 0 17px 33px;
  animation: message-in .23s ease both;
}

.chat-options.column {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.chat-options button {
  min-height: 42px;
  padding: 9px 13px;
  border: 1px solid rgba(255, 106, 0, .35);
  border-radius: 10px;
  color: #a84400;
  background: #fff;
  font-size: 11px;
  font-weight: 780;
  cursor: pointer;
  transition: .18s ease;
}

.chat-options button:hover,
.chat-options button:focus-visible {
  border-color: var(--orange);
  color: #fff;
  background: var(--orange);
  outline: none;
}

.chat-options .whatsapp-button {
  width: 100%;
  min-height: 49px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-color: var(--green);
  color: #fff;
  background: var(--green);
  font-size: 12px;
}

.chat-options .whatsapp-button:hover {
  border-color: #18a653;
  background: #18a653;
}

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

.chat-error {
  margin: -10px 0 13px 34px;
  color: #c53d21;
  font-size: 10px;
}

.chat-footer {
  min-height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 9px 14px;
  border-top: 1px solid #e3e3e6;
  color: #929298;
  background: #fff;
  font-size: 9px;
  text-align: center;
}

.chat-footer svg {
  width: 14px;
  fill: none;
  stroke: var(--orange);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

noscript {
  position: fixed;
  z-index: 200;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 12px;
  color: #fff;
  background: #bd3200;
  text-align: center;
}

@media (max-width: 1020px) {
  .main-nav {
    gap: 20px;
  }

  .main-nav > a:not(.nav-cta) {
    display: none;
  }

  .hero {
    min-height: 740px;
  }

  .hero-image {
    object-position: 58% center;
  }

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

  .steps-layout {
    gap: 60px;
  }

  .service-strip article {
    padding-inline: 22px;
  }
}

@media (max-width: 760px) {
  :root {
    --shell: min(100% - 30px, 620px);
  }

  .header-inner {
    min-height: 75px;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo-frame {
    width: 48px;
    height: 48px;
    border-radius: 12px;
  }

  .brand-copy strong {
    font-size: 16px;
  }

  .brand-copy small {
    font-size: 8px;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 75px;
    left: 15px;
    right: 15px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 15px;
    background: rgba(13, 13, 15, .97);
    box-shadow: var(--shadow);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav > a:not(.nav-cta) {
    display: block;
    padding: 13px;
  }

  .main-nav .nav-cta {
    margin-top: 5px;
    text-align: center;
  }

  .hero {
    min-height: 760px;
    align-items: end;
  }

  .hero-image {
    height: 55%;
    top: auto;
    bottom: 0;
    object-position: 68% center;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, #07070a 0%, #07070a 38%, rgba(7, 7, 10, .7) 64%, rgba(7, 7, 10, .2) 100%),
      linear-gradient(0deg, rgba(5, 5, 7, .7), transparent);
  }

  .hero-lines {
    opacity: .14;
  }

  .hero-content {
    align-self: start;
    padding-top: 132px;
  }

  .hero h1 {
    margin-top: 16px;
    font-size: clamp(44px, 13vw, 65px);
  }

  .hero-copy > p {
    max-width: 510px;
    font-size: 15px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    margin-top: 26px;
  }

  .hero-trust {
    display: none;
  }

  .scroll-cue {
    display: none;
  }

  .service-strip-inner {
    grid-template-columns: 1fr;
    padding: 13px 0;
  }

  .service-strip article,
  .service-strip article:first-child {
    padding: 18px 3px;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
  }

  .service-strip article:last-child {
    border: 0;
  }

  .section {
    padding: 77px 0;
  }

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

  .section-heading h2,
  .steps-intro h2,
  .faq-layout h2,
  .final-cta h2 {
    font-size: 36px;
  }

  .brand-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 11px;
  }

  .brand-card {
    min-height: 172px;
    padding: 18px 8px;
  }

  .brand-emblem {
    width: 58px;
    height: 58px;
  }

  .steps-layout,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 57px;
  }

  .mini-dashboard {
    width: 100%;
    transform: none;
  }

  .steps-list li {
    grid-template-columns: 62px 1fr;
  }

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

  .benefits-grid article {
    min-height: 225px;
  }

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

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 18px 0;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 54px;
    height: 54px;
  }

  .chat-overlay {
    padding: 0;
    align-items: end;
  }

  .chat-modal {
    width: 100%;
    height: min(760px, 94dvh);
    border-radius: 23px 23px 0 0;
  }
}

@media (max-width: 390px) {
  .brand-copy {
    display: none;
  }

  .brand-card strong {
    font-size: 13px;
  }

  .chat-options.column {
    grid-template-columns: 1fr;
  }
}

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

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