:root {
  --red: #10aee5;
  --red-dark: #05659e;
  --orange: #ffea00;
  --ink: #081b33;
  --ink-2: #0b2745;
  --muted: #66707c;
  --line: #e9edf1;
  --soft: #f3f8fb;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(8, 27, 51, 0.14);
  --radius: 6px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  background: var(--white);
  color: var(--ink);
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

.container {
  width: min(1500px, calc(100% - 64px));
  margin: 0 auto;
}

.topbar {
  background: #070a0e;
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
}

.topbar__inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.topbar a,
.topbar__social {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}

.topbar svg {
  width: 14px;
  height: 14px;
  fill: var(--red);
}

.topbar__social span {
  margin-right: 3px;
}

.topbar__social a {
  width: 19px;
  height: 19px;
  justify-content: center;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  transition: transform 0.25s ease, background 0.25s ease;
}

.topbar__social a:hover {
  background: var(--white);
  color: var(--red);
  transform: translateY(-2px);
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--ink);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08), 0 18px 46px rgba(8, 27, 51, 0.22);
}

.navbar__inner {
  min-height: 88px;
  display: grid;
  grid-template-columns: auto minmax(260px, 1fr) auto;
  align-items: center;
  gap: 34px;
}

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

.brand__logo-frame {
  display: grid;
  width: 176px;
  height: 62px;
  place-items: center;
  padding: 0;
  border-radius: var(--radius);
  background: transparent;
  box-shadow: none;
  overflow: hidden;
}

.brand__logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.brand__mark {
  color: var(--ink);
  font-size: 34px;
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: 0;
}

.brand__bolt {
  display: inline-block;
  width: 13px;
  height: 27px;
  color: var(--red);
  margin: 0 1px;
  background: currentColor;
  clip-path: polygon(52% 0, 100% 0, 62% 38%, 96% 38%, 26% 100%, 43% 55%, 5% 55%);
  transform: translateY(2px);
}

.brand__text {
  display: grid;
  gap: 0;
  text-transform: uppercase;
  line-height: 1;
}

.brand__text strong {
  color: var(--red);
  font-size: 15px;
  font-weight: 800;
}

.brand__text small {
  color: var(--ink);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0;
}

.navbar__contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-width: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  font-weight: 700;
}

.navbar__contact > a,
.navbar__social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  line-height: 1;
}

.navbar__contact svg {
  width: 15px;
  height: 15px;
  fill: var(--orange);
  flex: 0 0 auto;
}

.navbar__social span {
  color: #59636f;
  font-size: 12px;
  font-weight: 600;
}

.navbar__social a {
  width: auto;
  min-height: 34px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 0 0 1px rgba(255, 234, 0, 0.34);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.navbar__social svg {
  width: 15px;
  height: 15px;
  fill: var(--orange);
}

.navbar__social a:hover {
  background: var(--orange);
  color: var(--ink);
  transform: translateY(-2px);
}

.navbar__social a:hover svg {
  fill: var(--ink);
}

.navbar__links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.navbar__links > a:not(.btn) {
  position: relative;
  padding: 25px 0;
}

.navbar__links > a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 19px;
  width: 100%;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.navbar__links .btn {
  background: var(--orange);
  color: var(--ink);
  box-shadow: 0 12px 30px rgba(255, 234, 0, 0.22);
}

.navbar__links .btn:hover {
  background: #fff36d;
  box-shadow: 0 18px 38px rgba(255, 234, 0, 0.3);
}

.navbar__links > a:not(.btn):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  background: var(--ink);
  border-radius: var(--radius);
  place-items: center;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 3px auto;
  background: var(--white);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

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

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

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

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 26px;
  border: 0;
  border-radius: 999px;
  overflow: hidden;
  background: var(--red);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(16, 174, 229, 0.27);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
  isolation: isolate;
  transform: translateZ(0);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, transparent 37%, rgba(255, 255, 255, 0.38) 50%, transparent 63%, transparent 100%);
  transform: translateX(-120%);
  transition: transform 0.6s ease;
  z-index: -1;
}

.btn:hover {
  transform: translateY(-4px) scale(1.02);
  background: #0798d2;
  box-shadow: 0 18px 36px rgba(16, 174, 229, 0.38);
}

.btn:hover::before {
  transform: translateX(120%);
}

.btn:active {
  transform: translateY(-1px) scale(0.98);
}

.btn--small {
  min-height: 36px;
  padding: 0 18px;
  font-size: 11px;
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(10px);
}

.btn--submit {
  width: 100%;
  min-height: 42px;
  border-radius: 4px;
}

.btn--whatsapp {
  min-width: 230px;
  background: var(--red);
  color: var(--white);
  box-shadow: 0 18px 36px rgba(16, 174, 229, 0.32);
  animation: softPulse 3.8s ease-in-out infinite;
}

.btn--whatsapp:hover {
  background: #0798d2;
  box-shadow: 0 20px 40px rgba(16, 174, 229, 0.4);
}

.hero {
  position: relative;
  min-height: 620px;
  overflow: visible;
  background: var(--ink);
  color: var(--white);
}

.hero__image,
.hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__image {
  object-fit: cover;
  object-position: center;
}

.hero__shade {
  background:
    linear-gradient(90deg, rgba(4, 7, 11, 0.92) 0%, rgba(4, 7, 11, 0.74) 34%, rgba(4, 7, 11, 0.25) 74%, rgba(4, 7, 11, 0.36) 100%),
    linear-gradient(180deg, rgba(4, 7, 11, 0.1) 0%, rgba(4, 7, 11, 0.24) 100%);
}

.hero__inner {
  position: relative;
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(0, 760px) 430px;
  align-items: center;
  justify-content: space-between;
  gap: 56px;
  padding: 86px 0 74px;
}

.hero__content {
  padding-top: 22px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 10px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow--light {
  background: var(--orange);
  color: var(--ink);
  box-shadow: 0 10px 24px rgba(255, 234, 0, 0.22);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin: 16px 0 15px;
  color: var(--white);
  font-size: 5rem;
  line-height: 0.98;
  font-weight: 800;
  text-transform: capitalize;
}

h1 span,
h2 span,
.quote-card h2 span {
  color: var(--red);
}

.text-nowrap {
  white-space: nowrap;
}

.hero__content p {
  max-width: 580px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.8;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 10px;
  margin-top: 18px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  backdrop-filter: blur(10px);
  transition: transform 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}

.trust-badge:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.15);
}

.trust-badge__stars {
  color: var(--orange);
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0;
}

.trust-badge strong {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.trust-badge small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 600;
}

.quote-card {
  align-self: end;
  width: 100%;
  max-width: 430px;
  margin-bottom: -72px;
  border-radius: 6px;
  box-shadow: var(--shadow);
  transition: transform 0.32s ease, box-shadow 0.32s ease;
}

.quote-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 72px rgba(11, 15, 20, 0.22);
}

.quote-card__badge {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 12px;
  min-height: 100px;
  padding: 18px 20px;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: var(--white);
}

.quote-card__badge strong {
  display: block;
  margin-bottom: 2px;
  font-size: 34px;
  line-height: 1;
  font-weight: 800;
}

.quote-card__badge span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 10px;
  line-height: 1.4;
}

.quote-card__avatars {
  display: flex;
}

.avatar-shot {
  display: block;
  object-fit: cover;
  object-position: 0% center;
}

.avatar-shot--2 {
  object-position: 33.333% center;
}

.avatar-shot--3 {
  object-position: 66.666% center;
}

.avatar-shot--4 {
  object-position: 100% center;
}

.quote-card__avatars img {
  width: 27px;
  height: 27px;
  margin-left: -7px;
  border: 2px solid var(--white);
  border-radius: 50%;
  background: #dfe3e8;
}

.quote-card__badge a {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--red);
  transition: transform 0.25s ease;
}

.quote-card__badge a:hover {
  transform: rotate(45deg) scale(1.05);
}

.quote-card__badge svg,
.service-card__footer svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.quote-card__form {
  padding: 22px;
  border-radius: 0 0 6px 6px;
  background: #11161d;
}

.form-label {
  color: rgba(255, 255, 255, 0.55);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.quote-card h2 {
  margin: 3px 0 7px;
  color: var(--white);
  font-size: 26px;
  line-height: 1.1;
  font-weight: 800;
}

.quote-card p {
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  line-height: 1.55;
}

.quote-card label {
  display: block;
  margin-bottom: 9px;
}

.quote-card label span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.quote-card input,
.quote-card select {
  width: 100%;
  height: 43px;
  padding: 0 12px;
  border: 1px solid #d6dce2;
  border-radius: 2px;
  background: var(--white);
  color: #17202a;
  font-size: 12px;
  outline: none;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.quote-card input:focus,
.quote-card select:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(16, 174, 229, 0.2);
}

.benefits {
  position: relative;
  padding: 72px 0 72px;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(16, 174, 229, 0.12), transparent 32%),
    linear-gradient(180deg, #fff 0%, #f6f7f9 100%);
}

.wire {
  position: absolute;
  left: 0;
  bottom: 10px;
  width: 52%;
  min-width: 560px;
  height: 62px;
  opacity: 0.32;
  pointer-events: none;
}

.wire svg {
  width: 100%;
  height: 100%;
}

.wire path {
  fill: none;
  stroke: var(--red);
  stroke-width: 12;
  stroke-linecap: round;
}

.wire path:nth-child(2) {
  stroke-width: 2;
}

.benefits__layout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 22px;
}

.benefits__intro {
  display: grid;
  align-content: center;
  min-height: 560px;
  align-self: stretch;
}

.benefits__intro .eyebrow {
  justify-self: start;
}

.benefits__intro h2 {
  margin: 15px 0 14px;
  color: var(--ink);
  font-size: 2.55rem;
  line-height: 1.08;
  font-weight: 900;
}

.benefits__intro p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.benefits__intro-points {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.benefits__intro-points span {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  border-radius: 999px;
  background: var(--white);
  color: #26313d;
  box-shadow: inset 0 0 0 1px #e3e7ec, 0 10px 24px rgba(10, 18, 30, 0.05);
  font-size: 12px;
  font-weight: 900;
}

.benefits__grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(3, 1fr);
  gap: 14px;
  min-height: 560px;
}

.mini-card {
  position: relative;
  display: grid;
  align-content: center;
  min-height: 0;
  padding: 24px 24px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  text-align: left;
  box-shadow: 0 18px 45px rgba(10, 18, 30, 0.05);
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.mini-card::after,
.stat-card::after,
.testimonial-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent, rgba(255, 234, 0, 0.16), transparent);
  transform: translateX(-115%);
  transition: transform 0.65s ease;
  pointer-events: none;
}

.mini-card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: rgba(16, 174, 229, 0.35);
  box-shadow: 0 24px 55px rgba(10, 18, 30, 0.1);
}

.mini-card:hover::after,
.stat-card:hover::after,
.testimonial-card:hover::after {
  transform: translateX(115%);
}

.mini-card__icon,
.stats span,
.process__steps span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  transition: transform 0.28s ease, background 0.28s ease, color 0.28s ease;
}

.mini-card__icon svg,
.stats svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.mini-card h3 {
  margin: 17px 0 8px;
  color: var(--red-dark);
  font-size: 21px;
  line-height: 1.1;
  font-weight: 800;
}

.mini-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.mini-card ul,
.procedure-panel ul {
  display: grid;
  gap: 7px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  color: #27323d;
  font-size: 12px;
  font-weight: 700;
}

.mini-card li,
.procedure-panel li {
  position: relative;
  padding-left: 18px;
}

.mini-card li::before,
.procedure-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 234, 0, 0.16);
}

.procedure-panel {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 234, 0, 0.22), transparent 30%),
    #081b33;
  color: var(--white);
  box-shadow: 0 26px 62px rgba(11, 15, 20, 0.17);
}

.procedure-panel__body {
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  min-height: 100%;
  gap: 14px;
  padding: 34px 30px;
  align-content: stretch;
}

.procedure-panel__body > span {
  display: inline-flex;
  justify-self: start;
  min-height: 24px;
  align-items: center;
  padding: 0 10px;
  border-radius: 3px;
  background: var(--orange);
  color: var(--ink);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.procedure-panel strong {
  display: block;
  margin-top: 0;
  font-size: 26px;
  line-height: 1.25;
}

.procedure-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.65;
}

.procedure-panel__steps {
  display: grid;
  grid-template-rows: repeat(3, minmax(82px, 1fr));
  align-content: stretch;
  gap: 12px;
  margin-top: 8px;
}

.procedure-panel__steps article {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.09);
}

.procedure-panel__steps b {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  color: var(--ink);
  font-size: 12px;
}

.procedure-panel__steps span {
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.procedure-panel li {
  color: rgba(255, 255, 255, 0.82);
}

.section-band {
  background: var(--soft);
}

.about {
  padding: 82px 0 82px;
}

.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.04fr);
  align-items: center;
  gap: 76px;
}

.about__media {
  display: grid;
  gap: 16px;
}

.about__large,
.about__bottom img,
.about__content img,
.faq__intro img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius);
}

.about__bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about__bottom img {
  height: 178px;
}

.experience-box {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 150px;
  padding: 20px;
  border: 1px solid #e1e5e9;
  border-radius: var(--radius);
  background: var(--white);
  text-align: center;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.experience-box:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(16, 174, 229, 0.34);
  box-shadow: 0 22px 46px rgba(11, 15, 20, 0.11);
}

.experience-box strong {
  position: relative;
  color: var(--red);
  font-size: 58px;
  line-height: 1;
  font-weight: 900;
}

.experience-box span {
  position: relative;
  color: #35404a;
  font-size: 18px;
  font-weight: 900;
}

.experience-box small {
  position: relative;
  max-width: 210px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}

.about__content h2,
.services h2,
.process h2,
.testimonials h2,
.faq h2,
.whatsapp-cta h2 {
  margin: 14px 0 17px;
  color: var(--ink);
  font-size: 3.45rem;
  line-height: 1.04;
  font-weight: 800;
  text-transform: capitalize;
}

.about__content p,
.section-heading p,
.process__content p,
.faq__intro p,
.whatsapp-cta p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.about__points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 26px;
}

.about__points article {
  position: relative;
  min-height: 132px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #081b33, #0b3863);
  box-shadow: 0 18px 42px rgba(8, 27, 51, 0.16);
  overflow: hidden;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.about__points article::after {
  content: "";
  position: absolute;
  inset: -30% auto auto -65%;
  width: 46%;
  height: 170%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  transform: rotate(18deg);
  animation: cardSheen 4.8s ease-in-out infinite;
  pointer-events: none;
}

.about__points article:nth-child(2)::after {
  animation-delay: 0.9s;
}

.about__points article:nth-child(3)::after {
  animation-delay: 1.8s;
}

.about__points article:hover {
  transform: translateY(-7px);
  border-color: rgba(255, 234, 0, 0.34);
  box-shadow: 0 26px 56px rgba(8, 27, 51, 0.24);
}

.about__points strong {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 8px;
  color: var(--orange);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.about__points span {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  line-height: 1.6;
}

.ticker {
  position: relative;
  overflow: hidden;
  overflow-x: clip;
  max-width: 100%;
  contain: paint;
  height: 52px;
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.22), transparent 28%),
    linear-gradient(90deg, var(--red-dark), var(--red), #10aee5, var(--red-dark));
  color: var(--white);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28), inset 0 -1px 0 rgba(0, 0, 0, 0.08);
}

.ticker__track {
  position: absolute;
  inset: 0 auto auto 0;
  display: flex;
  width: max-content;
  height: 100%;
  align-items: center;
  gap: 32px;
  padding: 0;
  color: var(--white);
  font-size: 18px;
  font-weight: 800;
  white-space: nowrap;
  animation: ticker 34s linear infinite;
}

.ticker b {
  width: 12px;
  height: 19px;
  background: var(--white);
  clip-path: polygon(48% 0, 100% 0, 60% 40%, 95% 40%, 32% 100%, 48% 55%, 14% 55%);
}

.services {
  padding: 86px 0 78px;
  background:
    linear-gradient(180deg, #fff 0%, #f7fbfe 100%);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 620px) minmax(0, 560px);
  justify-content: space-between;
  align-items: center;
  gap: 38px;
  margin-bottom: 38px;
}

.section-heading__side {
  display: grid;
  justify-items: start;
  gap: 14px;
  padding-left: 28px;
  border-left: 5px solid var(--orange);
}

.section-heading__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.section-heading__pills span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--orange);
  color: var(--ink);
  box-shadow: inset 0 0 0 1px rgba(8, 27, 51, 0.16), 0 10px 24px rgba(255, 234, 0, 0.22);
  font-size: 12px;
  font-weight: 900;
}

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

.service-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid #dce2e8;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(12, 16, 20, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 70px rgba(12, 16, 20, 0.2);
}

.service-card img {
  width: 100%;
  height: 250px;
  min-height: 0;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.service-card:hover img {
  transform: scale(1.07);
}

.service-card::after {
  display: none;
}

.service-card__link {
  display: grid;
  grid-template-rows: 250px auto;
  color: inherit;
  outline: 0;
}

.service-card__link:focus-visible {
  box-shadow: inset 0 0 0 3px var(--orange);
}

.service-card__footer {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 17px 17px;
  background: linear-gradient(135deg, rgba(8, 27, 51, 0.98), rgba(16, 174, 229, 0.94));
  color: var(--white);
}

.service-card__footer > span {
  font-size: 19px;
  font-weight: 800;
}

.service-card h3 {
  margin: 0;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 800;
}

.service-card__arrow {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--red);
  transition: transform 0.25s ease;
}

.service-card__link:hover .service-card__arrow,
.service-card__link:focus-visible .service-card__arrow {
  transform: rotate(45deg) scale(1.08);
}

.service-card > p {
  margin: 0;
  padding: 17px 18px 22px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.stats-band {
  padding: 34px 0;
}

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

.stat-card {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 118px;
  padding: 18px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  text-align: center;
  overflow: hidden;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}

.stat-card:hover {
  transform: translateY(-8px);
  border-color: rgba(16, 174, 229, 0.35);
  box-shadow: 0 24px 52px rgba(11, 15, 20, 0.11);
}

.stat-card:hover span {
  transform: translateY(-2px) rotate(-8deg) scale(1.08);
}

.stats strong {
  margin-top: 9px;
  color: var(--ink);
  font-size: 31px;
  line-height: 1;
  font-weight: 800;
}

.stats p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.stat-card--google {
  background: var(--orange);
  color: var(--ink);
  box-shadow: 0 22px 52px rgba(255, 234, 0, 0.24);
}

.stat-card--google span {
  background: var(--ink);
  color: var(--orange);
}

.stat-card--google strong,
.stat-card--google p {
  color: var(--ink);
}

.process {
  padding: 80px 0;
}

.process__grid {
  display: grid;
  grid-template-columns: minmax(0, 390px) minmax(0, 610px);
  gap: 70px;
  align-items: center;
}

.process__steps {
  display: grid;
  gap: 14px;
}

.process__steps article {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 18px;
  padding: 22px;
  border: 1px solid #e2e6ea;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 40px rgba(12, 18, 28, 0.05);
}

.process__steps span {
  align-self: start;
  font-size: 12px;
  font-weight: 800;
}

.process__steps h3 {
  margin-bottom: 7px;
  font-size: 20px;
  line-height: 1.2;
}

.process__steps p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.testimonials {
  padding: 68px 0;
}

.section-heading--center {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 710px;
  margin: 0 auto 34px;
  text-align: center;
  justify-items: center;
}

.section-heading--compact {
  display: block;
  max-width: 520px;
  margin-bottom: 28px;
}

.section-heading--compact h2 {
  font-size: 2.75rem;
}

.google-highlight {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
  align-items: center;
  gap: 26px;
  margin-bottom: 24px;
  padding: 24px;
  border: 1px solid rgba(16, 174, 229, 0.28);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 85% 18%, rgba(255, 255, 255, 0.24), transparent 24%),
    linear-gradient(135deg, var(--red-dark), var(--red) 58%, #13b9ec);
  color: var(--white);
  box-shadow: 0 24px 56px rgba(16, 174, 229, 0.22);
  overflow: hidden;
}

.google-highlight::after {
  content: "";
  position: absolute;
  inset: -60% auto auto -20%;
  width: 42%;
  height: 220%;
  background: rgba(255, 255, 255, 0.12);
  transform: rotate(18deg);
  animation: sheen 5.2s ease-in-out infinite;
}

.google-highlight__score span {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 8px;
  color: var(--orange);
  font-size: 17px;
  letter-spacing: 0;
}

.google-highlight__score strong {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 8px;
  color: var(--white);
  font-size: 24px;
  line-height: 1.2;
  font-weight: 800;
}

.google-highlight__score p {
  position: relative;
  z-index: 1;
  max-width: 660px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.7;
}

.google-highlight__tags {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.google-highlight__tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28);
  font-size: 12px;
  font-weight: 800;
}

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

.testimonial-card {
  position: relative;
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 46px rgba(9, 15, 24, 0.06);
  overflow: hidden;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  border-color: rgba(16, 174, 229, 0.28);
  box-shadow: 0 26px 62px rgba(9, 15, 24, 0.12);
}

.stars {
  margin-bottom: 18px;
  color: var(--red);
  font-size: 17px;
  letter-spacing: 0;
}

.testimonial-card p {
  min-height: 100px;
  margin-bottom: 20px;
  color: #39434f;
  font-size: 14px;
  line-height: 1.75;
}

.testimonial-card strong {
  display: block;
  margin-bottom: 4px;
  font-size: 16px;
}

.testimonial-card span {
  color: var(--muted);
  font-size: 13px;
}

.testimonial-card__person {
  display: flex;
  align-items: center;
  gap: 13px;
}

.testimonial-card__person img {
  width: 54px;
  height: 54px;
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(11, 15, 20, 0.14);
}

.faq {
  padding: 72px 0;
}

.faq__grid {
  display: grid;
  grid-template-columns: minmax(0, 420px) minmax(0, 1fr);
  gap: 66px;
  align-items: start;
}

.faq__intro,
.faq__items {
  align-self: start;
}

.faq__note {
  display: grid;
  gap: 8px;
  margin-top: 24px;
  padding: 22px;
  border-radius: var(--radius);
  background: var(--orange);
  color: var(--ink);
  box-shadow: 0 20px 44px rgba(255, 234, 0, 0.22);
}

.faq__note strong {
  font-size: 17px;
  line-height: 1.3;
}

.faq__note span {
  color: rgba(8, 27, 51, 0.72);
  font-size: 13px;
  line-height: 1.65;
}

.faq__items {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid #e0e5ea;
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.faq-item:hover {
  transform: translateY(-3px);
  border-color: rgba(16, 174, 229, 0.28);
  box-shadow: 0 16px 34px rgba(9, 15, 24, 0.08);
}

.faq-item button {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
  width: 100%;
  min-height: 62px;
  padding: 16px 20px;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
}

.faq-item button span {
  position: relative;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--red);
  transition: transform 0.25s ease;
}

.faq-item button span::before,
.faq-item button span::after {
  content: "";
  position: absolute;
  left: 7px;
  right: 7px;
  top: 12px;
  height: 2px;
  background: var(--white);
}

.faq-item button span::after {
  transform: rotate(90deg);
  transition: transform 0.25s ease;
}

.faq-item.is-open button span {
  transform: rotate(180deg);
}

.faq-item.is-open button span::after {
  transform: rotate(0deg);
}

.faq-item__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s ease;
}

.faq-item__content p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.whatsapp-cta {
  position: relative;
  padding: 86px 0;
  background:
    linear-gradient(90deg, rgba(8, 27, 51, 0.96) 0%, rgba(8, 27, 51, 0.82) 38%, rgba(5, 101, 158, 0.46) 67%, rgba(8, 27, 51, 0.36) 100%),
    url("assets/cta-tecnico-am.png") center right/cover;
  color: var(--white);
  text-align: left;
  overflow: hidden;
  isolation: isolate;
}

.whatsapp-cta::before {
  display: none;
}

.whatsapp-cta::after {
  display: none;
}

.whatsapp-cta__inner {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  justify-items: start;
  gap: 24px;
  min-height: 390px;
}

.whatsapp-cta__inner > div {
  max-width: 690px;
}

.whatsapp-cta h2 {
  color: var(--white);
  margin-bottom: 13px;
  max-width: 740px;
}

.whatsapp-cta h2 span {
  display: block;
  color: var(--white);
}

.whatsapp-cta h2 span:last-child {
  color: var(--red);
}

.whatsapp-cta p {
  max-width: 620px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.trust-badge--cta {
  margin: 20px 0 0;
  border-color: rgba(16, 174, 229, 0.35);
}

.trust-badge--cta .trust-badge__stars {
  color: var(--red);
}

.whatsapp-cta .btn::before {
  animation: buttonSheen 3.4s ease-in-out infinite;
}

.footer {
  padding: 34px 0;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.74);
}

.footer__inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 56px;
}

.brand--footer .brand__mark,
.brand--footer .brand__text small {
  color: var(--white);
}

.brand--footer .brand__logo-frame {
  background: transparent;
  box-shadow: none;
  padding: 0;
  width: 214px;
  height: 72px;
}

.footer__content {
  display: grid;
  gap: 12px;
  justify-items: center;
  text-align: center;
}

.footer p {
  margin: 0;
  font-size: 13px;
}

.footer__contacts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 16px;
}

.footer__contacts a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
}

.footer__contacts svg {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  fill: var(--red);
}

.footer small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  font-weight: 600;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 18px 42px rgba(255, 234, 0, 0.36);
  animation: pulse 2.4s infinite;
}

.floating-whatsapp svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.chat-widget {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 70;
  display: grid;
  justify-items: end;
  gap: 12px;
  pointer-events: none;
}

.chat-panel {
  width: min(340px, calc(100vw - 28px));
  overflow: hidden;
  border: 1px solid rgba(16, 174, 229, 0.18);
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 24px 70px rgba(8, 27, 51, 0.24);
  pointer-events: auto;
  transform-origin: right bottom;
  animation: chatIn 0.28s ease both;
}

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

.chat-panel__header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  padding: 14px 14px 12px;
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  color: var(--white);
}

.chat-avatar {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  flex: 0 0 auto;
  overflow: hidden;
  border: 2px solid rgba(255, 234, 0, 0.85);
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 10px 24px rgba(8, 27, 51, 0.22);
}

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

.chat-panel__header strong,
.chat-panel__header span {
  display: block;
}

.chat-panel__header strong {
  font-size: 14px;
  font-weight: 900;
}

.chat-panel__header span {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 11px;
  font-weight: 700;
}

.chat-close {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  margin-left: auto;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}

.chat-messages {
  display: grid;
  max-height: 230px;
  gap: 9px;
  padding: 14px;
  overflow-y: auto;
  background: #f6fbfe;
}

.chat-message {
  width: fit-content;
  max-width: 88%;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 12px;
  line-height: 1.45;
}

.chat-message--bot {
  border-bottom-left-radius: 3px;
  background: var(--white);
  color: #27323d;
  box-shadow: 0 8px 22px rgba(8, 27, 51, 0.08);
}

.chat-message--user {
  justify-self: end;
  border-bottom-right-radius: 3px;
  background: var(--red);
  color: var(--white);
}

.chat-message a {
  display: inline-flex;
  margin-top: 8px;
  color: var(--red-dark);
  font-weight: 900;
}

.chat-suggestions {
  display: grid;
  grid-template-columns: minmax(108px, 1.24fr) minmax(88px, 1fr) minmax(84px, 0.96fr);
  gap: 7px;
  padding: 12px 14px 0;
  background: var(--white);
}

.chat-suggestions button {
  min-width: 0;
  min-height: 29px;
  padding: 0 8px;
  border: 1px solid rgba(16, 174, 229, 0.18);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.chat-suggestions button:hover {
  transform: translateY(-2px);
  background: var(--orange);
  color: var(--ink);
}

.chat-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 12px 14px 14px;
  background: var(--white);
}

.chat-form input {
  min-width: 0;
  height: 40px;
  padding: 0 12px;
  border: 1px solid #d7e5ef;
  border-radius: 999px;
  color: var(--ink);
  font-size: 12px;
  outline: none;
}

.chat-form input:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(16, 174, 229, 0.14);
}

.chat-form button,
.chat-toggle {
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.chat-form button {
  width: 40px;
  height: 40px;
  background: var(--red);
  color: var(--white);
}

.chat-form svg,
.chat-toggle svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.chat-toggle svg {
  width: 28px;
  height: 28px;
}

.chat-toggle {
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: var(--white);
  box-shadow: 0 18px 42px rgba(16, 174, 229, 0.34);
  animation: pulse 2.4s infinite;
  pointer-events: auto;
}

.reveal {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 0.7s ease;
  transition-delay: var(--delay, 0ms);
}

html.has-js .reveal {
  opacity: 0;
  transform: translate3d(0, 34px, 0);
  filter: blur(8px);
}

html.has-js .reveal--left {
  transform: translate3d(-44px, 0, 0);
}

html.has-js .reveal--right {
  transform: translate3d(44px, 0, 0);
}

html.has-js .reveal--zoom {
  transform: scale(0.94);
}

html.has-js .reveal--up {
  transform: translate3d(0, 42px, 0);
}

html.has-js .reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

html.has-js .reveal.is-visible :is(.about__large, .about__bottom img, .service-card img) {
  animation: imageSettle 0.9s ease both;
}

html.has-js .quote-card.reveal.is-visible:hover {
  transform: translateY(-8px);
}

html.has-js .mini-card.reveal.is-visible:hover,
html.has-js .stat-card.reveal.is-visible:hover,
html.has-js .testimonial-card.reveal.is-visible:hover {
  transform: translateY(-8px) scale(1.01);
}

html.has-js .service-card.reveal.is-visible:hover {
  transform: translateY(-8px);
}

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

@keyframes pulse {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-4px) scale(1.05);
  }
}

@keyframes softPulse {
  0%,
  100% {
    box-shadow: 0 18px 36px rgba(16, 174, 229, 0.32);
  }
  50% {
    box-shadow: 0 18px 48px rgba(16, 174, 229, 0.5);
  }
}

@keyframes imageSettle {
  from {
    transform: scale(1.035);
  }
  to {
    transform: scale(1);
  }
}

@keyframes sheen {
  0%,
  45% {
    transform: translateX(-25%) rotate(18deg);
  }
  100% {
    transform: translateX(340%) rotate(18deg);
  }
}

@keyframes cardSheen {
  0%,
  42% {
    transform: translateX(0) rotate(18deg);
  }
  100% {
    transform: translateX(420%) rotate(18deg);
  }
}

@keyframes ctaSweep {
  0%,
  50% {
    transform: translateX(0) rotate(18deg);
  }
  100% {
    transform: translateX(440%) rotate(18deg);
  }
}

@keyframes buttonSheen {
  0%,
  45% {
    transform: translateX(-120%);
  }
  100% {
    transform: translateX(120%);
  }
}

@keyframes chatIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 1280px) {
  .container {
    width: min(100% - 48px, 1180px);
  }

  .navbar__inner {
    gap: 24px;
  }

  .navbar__contact {
    justify-content: flex-start;
    gap: 16px;
  }

  .navbar__contact > a:nth-child(2) {
    display: none;
  }

  h1 {
    font-size: 4.3rem;
  }

  .hero__inner {
    grid-template-columns: minmax(0, 650px) 400px;
    gap: 34px;
  }

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

@media (max-width: 940px) {
  .container {
    width: min(100% - 30px, 720px);
  }

  .menu-toggle {
    display: grid;
  }

  .navbar__inner {
    grid-template-columns: 1fr auto;
    gap: 12px 18px;
    min-height: 74px;
    padding: 8px 0 10px;
  }

  .navbar__contact {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: nowrap;
    gap: 10px;
    padding-top: 7px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 12px;
  }

  .navbar__contact > a:nth-child(2) {
    display: none;
  }

  .navbar__contact > a:first-child {
    flex: 0 0 auto;
  }

  .navbar__social {
    display: inline-flex;
    min-width: 0;
  }

  .navbar__social a {
    min-height: auto;
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    color: rgba(255, 255, 255, 0.92);
    font-size: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .navbar__links {
    position: fixed;
    left: 15px;
    right: 15px;
    top: 111px;
    display: grid;
    gap: 0;
    padding: 10px;
    border-radius: 8px;
    background: var(--white);
    color: var(--ink);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-14px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .navbar__links.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .navbar__links > a:not(.btn) {
    padding: 16px 12px;
  }

  .navbar__links > a:not(.btn)::after {
    display: none;
  }

  .navbar__links .btn {
    margin: 10px 0 0;
  }

  .hero,
  .hero__inner {
    min-height: auto;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    padding: 78px 0 44px;
  }

  .hero__shade {
    background: linear-gradient(90deg, rgba(4, 7, 11, 0.92), rgba(4, 7, 11, 0.7));
  }

  .quote-card {
    margin: 0;
    max-width: none;
  }

  h1 {
    font-size: 3.6rem;
  }

  .about__content h2,
  .services h2,
  .process h2,
  .testimonials h2,
  .faq h2,
  .whatsapp-cta h2 {
    font-size: 2.7rem;
  }

  .benefits {
    padding-top: 44px;
  }

  .benefits__grid,
  .benefits__layout,
  .about__grid,
  .about__points,
  .section-heading,
  .service-grid,
  .stats,
  .testimonial-grid,
  .faq__grid,
  .whatsapp-cta__inner {
    grid-template-columns: 1fr;
  }

  .benefits__grid {
    width: 100%;
    margin: 0;
  }

  .benefits__intro,
  .benefits__grid,
  .procedure-panel {
    min-height: auto;
  }

  .benefits__grid {
    grid-template-rows: auto;
  }

  .section-heading {
    align-items: start;
  }

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

  .faq__grid {
    gap: 34px;
  }

  .whatsapp-cta__inner {
    justify-items: center;
  }

  .google-highlight {
    grid-template-columns: 1fr;
  }

  .google-highlight__tags {
    justify-content: flex-start;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

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

  .footer__contacts {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 24px, 100%);
  }

  html.has-js .reveal--left,
  html.has-js .reveal--right {
    transform: translate3d(0, 34px, 0);
  }

  .navbar__inner {
    min-height: 72px;
  }

  .navbar__contact {
    gap: 9px;
    font-size: 11px;
  }

  .navbar__contact svg,
  .navbar__social svg {
    width: 13px;
    height: 13px;
  }

  .navbar__social a {
    max-width: calc(100vw - 178px);
    font-size: 10px;
    gap: 5px;
  }

  .navbar__links {
    top: 108px;
  }

  .brand__mark {
    font-size: 29px;
  }

  .brand__logo-frame {
    width: 148px;
    height: 52px;
    padding: 6px 9px;
  }

  .brand__text strong {
    font-size: 13px;
  }

  .brand__text small {
    font-size: 9px;
  }

  .hero__inner {
    gap: 22px;
    padding: 42px 0 28px;
  }

  h1 {
    max-width: 100%;
    font-size: 2.18rem;
    line-height: 1.06;
  }

  .hero__content {
    width: 100%;
    padding-top: 0;
  }

  .hero__content p {
    max-width: 100%;
    margin-bottom: 20px;
    line-height: 1.65;
  }

  .about__content h2,
  .services h2,
  .process h2,
  .testimonials h2,
  .faq h2,
  .whatsapp-cta h2 {
    font-size: 2.15rem;
  }

  .hero__content p,
  .about__content p,
  .section-heading p,
  .process__content p,
  .faq__intro p,
  .whatsapp-cta p {
    font-size: 14px;
  }

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

  .btn {
    width: 100%;
  }

  .trust-badge {
    width: 100%;
    display: grid;
    grid-template-columns: auto 1fr;
    justify-content: stretch;
    justify-items: center;
    gap: 6px 8px;
    border-radius: 8px;
    text-align: center;
  }

  .trust-badge small {
    grid-column: 1 / -1;
  }

  .quote-card__badge {
    grid-template-columns: 1fr auto;
  }

  .quote-card__avatars {
    display: none;
  }

  .quote-card__badge strong {
    font-size: 29px;
  }

  .benefits__grid,
  .about__points,
  .about__bottom,
  .stats {
    grid-template-columns: 1fr;
  }

  .benefits {
    padding: 40px 0 26px;
  }

  .about,
  .services,
  .testimonials,
  .faq {
    padding: 56px 0;
  }

  .about {
    padding-top: 28px;
  }

  .about__large,
  .about__bottom img,
  .faq__intro img {
    height: 210px;
  }

  .ticker__track {
    position: absolute;
    inset: 0 auto auto 0;
    width: max-content;
    height: 100%;
    font-size: 16px;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 26px;
    padding: 0;
    animation: ticker 34s linear infinite;
    transform: translateX(0);
    overflow: hidden;
  }

  .ticker {
    height: 46px;
  }

  .service-card img {
    height: 220px;
  }

  .service-card__link {
    grid-template-rows: 220px auto;
  }

  .service-card__footer {
    grid-template-columns: auto 1fr;
  }

  .service-card__arrow {
    grid-column: 1 / -1;
    justify-self: end;
  }

  .testimonial-card p {
    min-height: auto;
  }

  .google-highlight {
    padding: 20px;
  }

  .google-highlight__score strong {
    font-size: 20px;
  }

  .faq-item button {
    font-size: 14px;
  }

  .floating-whatsapp,
  .chat-toggle {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }

  .chat-widget {
    right: 12px;
    bottom: 12px;
  }

  .chat-panel {
    width: min(330px, calc(100vw - 24px));
  }

  .chat-messages {
    max-height: 190px;
  }
}

@media (max-width: 370px) {
  h1 {
    font-size: 2.03rem;
  }

  .navbar__social a {
    max-width: calc(100vw - 166px);
    font-size: 9px;
  }
}

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