:root {
  --navy-950: #020712;
  --navy-900: #031020;
  --navy-850: #05182e;
  --navy-800: #06234b;
  --blue-500: #0069ff;
  --blue-400: #0f8cff;
  --blue-300: #36b6ff;
  --orange-500: #ff5b1f;
  --green-500: #07b74e;
  --green-600: #049b41;
  --white: #ffffff;
  --muted: #cdd9ec;
  --ink: #071022;
  --line: rgba(255, 255, 255, 0.12);
  --shadow-blue: 0 20px 70px rgba(0, 102, 255, 0.28);
  --shadow-card: 0 18px 42px rgba(0, 0, 0, 0.28);
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at 50% 18%, rgba(0, 102, 255, 0.2), transparent 26rem),
    linear-gradient(180deg, #010813 0%, #000916 48%, #010813 100%);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button,
input,
select {
  font: inherit;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.container {
  width: min(calc(100% - 44px), var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(2, 7, 18, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(2, 7, 18, 0.98);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.32);
}

.header__inner {
  min-height: 88px;
  display: grid;
  grid-template-columns: 118px 1fr auto;
  align-items: center;
  gap: 30px;
}

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

.brand-logo {
  width: 78px;
  height: 78px;
  object-fit: contain;
  object-position: center;
  border-radius: 50%;
  filter: drop-shadow(0 0 14px rgba(0, 119, 255, 0.42));
}

.brand-title {
  display: none;
}

.brand-mark {
  position: relative;
  width: 170px;
  min-height: 58px;
  display: grid;
  align-content: center;
  padding: 5px 0 0 8px;
  isolation: isolate;
}

.brand-mark__symbol {
  position: absolute;
  right: 4px;
  top: 0;
  width: 45px;
  height: 45px;
  background:
    repeating-conic-gradient(from 7deg, #ff6b22 0 11deg, transparent 11deg 23deg),
    radial-gradient(circle, #ffc928 0 30%, #ff6b22 31% 54%, transparent 56%);
  border-radius: 50%;
  filter: drop-shadow(0 0 10px rgba(255, 91, 31, 0.5));
  z-index: -1;
}

.brand-mark__letters {
  position: relative;
  display: inline-block;
  color: transparent;
  font-size: 2.32rem;
  font-weight: 900;
  font-style: italic;
  line-height: 0.86;
  letter-spacing: 0;
  text-transform: uppercase;
  background: linear-gradient(100deg, #5fd4ff 0%, #ffffff 42%, #0b74ff 52%, #ff6429 68%, #f32a19 100%);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 0 3px 0 rgba(0, 0, 0, 0.28);
}

.brand-mark__letters::before {
  position: absolute;
  left: -7px;
  top: 50%;
  width: 32px;
  height: 32px;
  content: "";
  border: 3px solid #0da5ff;
  border-radius: 50%;
  transform: translateY(-50%);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.14), 0 0 10px rgba(0, 132, 255, 0.45);
  z-index: -1;
}

.brand-mark__tag {
  display: block;
  margin-top: 5px;
  color: #dce7f7;
  font-size: 0.43rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(18px, 2.7vw, 42px);
}

.main-nav a {
  position: relative;
  color: #fff;
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.main-nav a::after {
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 100%;
  height: 2px;
  content: "";
  background: var(--orange-500);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

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

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

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  color: #fff;
  font-size: 0.98rem;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  background: linear-gradient(180deg, #14cd62 0%, var(--green-500) 100%);
  border-radius: 7px;
  box-shadow: 0 10px 24px rgba(7, 183, 78, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.whatsapp-btn:hover,
.whatsapp-btn:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 16px 34px rgba(7, 183, 78, 0.38);
}

.whatsapp-btn svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
  border-radius: 99px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero {
  position: relative;
  min-height: 628px;
  padding: 72px 0 96px;
  overflow: hidden;
  background: #020814;
}

.hero::before,
.hero::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
}

.hero::before {
  z-index: 1;
  width: 64vw;
  left: 22%;
  background:
    linear-gradient(122deg, transparent 34%, rgba(0, 89, 255, 0.18) 35%, rgba(0, 186, 255, 0.78) 36%, transparent 37.4%),
    linear-gradient(122deg, transparent 41%, rgba(0, 91, 255, 0.7) 41.2%, rgba(51, 193, 255, 0.7) 41.7%, transparent 43%);
  filter: drop-shadow(0 0 20px rgba(0, 119, 255, 0.7));
}

.hero::after {
  z-index: 1;
  background:
    linear-gradient(90deg, #020814 0%, rgba(2, 8, 20, 0.94) 27%, rgba(2, 8, 20, 0.48) 47%, rgba(2, 8, 20, 0) 62%),
    linear-gradient(180deg, rgba(1, 8, 19, 0) 72%, #010813 100%),
    radial-gradient(circle at 17% 68%, rgba(0, 102, 255, 0.2), transparent 18rem);
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(430px, 0.92fr) minmax(420px, 0.9fr);
  align-items: center;
  gap: 28px;
  min-height: 460px;
}

.hero__copy {
  position: relative;
  z-index: 3;
  max-width: 680px;
  padding-top: 14px;
}

.hero h1 {
  margin: 0;
  max-width: 680px;
  color: #fff;
  font-size: clamp(2.75rem, 4.55vw, 4.6rem);
  font-weight: 900;
  line-height: 0.98;
  text-transform: uppercase;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.34);
}

.hero h1 .line {
  display: block;
  white-space: nowrap;
}

.hero h1 .text-inline {
  display: inline;
}

.text-blue {
  color: var(--blue-500);
}

.text-orange {
  color: var(--orange-500);
}

.hero__copy > p {
  width: min(100%, 410px);
  margin: 26px 0 42px;
  color: #fff;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  font-weight: 600;
  line-height: 1.55;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.5);
}

.hero-features {
  max-width: 610px;
  overflow: hidden;
}

.hero-features__track {
  display: grid;
  grid-template-columns: repeat(4, minmax(84px, 1fr));
  gap: 0;
  width: 100%;
}

.hero-features article {
  position: relative;
  min-height: 112px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  padding: 2px 14px 0;
  text-align: center;
}

.hero-features .feature-clone {
  display: none;
}

.hero-features article + article {
  border-left: 1px solid rgba(20, 87, 168, 0.48);
}

.hero-features svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: var(--blue-500);
  stroke-width: 1.7;
  filter: drop-shadow(0 0 12px rgba(0, 111, 255, 0.55));
}

.hero-features strong {
  max-width: 120px;
  color: #06142a;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1.35;
  text-transform: uppercase;
  text-shadow: none;
  -webkit-text-stroke: 0.22px #06142a;
}

.hero-features article:nth-child(n + 2) strong {
  color: #06142a !important;
  text-shadow: none;
  -webkit-text-stroke: 0.22px #06142a;
}

@keyframes feature-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.hero__media {
  position: absolute;
  inset: -72px -130px -96px -130px;
  z-index: 0;
  min-height: 0;
  pointer-events: none;
}

.hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(1.03) contrast(1.02);
}

.quote-section {
  position: relative;
  z-index: 3;
  margin-top: -86px;
}

.quote-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(255px, 0.92fr);
  align-items: stretch;
  box-shadow: var(--shadow-card);
}

.quote-card {
  min-width: 0;
  padding: clamp(26px, 4vw, 42px);
  color: var(--ink);
  background: #f8fbff;
  border-radius: var(--radius) 0 0 var(--radius);
}

.page-budget .quote-grid {
  border: 2px solid rgba(255, 91, 31, 0.72);
  border-radius: var(--radius);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.32), 0 0 0 6px rgba(255, 91, 31, 0.08);
}

.page-budget .quote-card {
  background:
    linear-gradient(180deg, rgba(255, 91, 31, 0.06), transparent 34%),
    #fff;
  border-right: 1px solid rgba(255, 91, 31, 0.22);
}

.quote-card h2,
.section-heading h2,
.about-copy h2,
.contact-banner h2 {
  margin: 0;
  font-size: clamp(1.65rem, 2.7vw, 2.35rem);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.quote-card h2 {
  color: #081227;
}

.page-budget .quote-card h2,
.page-budget .quote-card h2 span {
  color: #071225;
}

.page-budget .quote-card h2 span {
  text-shadow: none;
}

.quote-card h2 span,
.section-heading span,
.about-copy span,
.contact-banner h2 span {
  color: var(--orange-500);
}

.quote-card > p {
  margin: 14px 0 26px;
  color: #10203a;
  font-size: 0.99rem;
  font-weight: 600;
}

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

.field {
  min-height: 52px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  background: #fff;
  border: 1px solid #dce3ef;
  border-radius: 4px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.7);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field:focus-within {
  border-color: rgba(0, 105, 255, 0.65);
  box-shadow: 0 0 0 4px rgba(0, 105, 255, 0.12);
}

.field svg {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  fill: #05142a;
}

.field input,
.field select {
  width: 100%;
  min-width: 0;
  color: #0b1830;
  font-size: 0.86rem;
  font-weight: 700;
  border: 0;
  outline: 0;
  background: transparent;
}

.field select {
  appearance: auto;
  cursor: pointer;
}

.send-btn {
  width: 100%;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
  border: 0;
  border-radius: 5px;
  background: linear-gradient(180deg, #13c85f, var(--green-600));
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.send-btn:hover,
.send-btn:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.04);
  box-shadow: 0 16px 28px rgba(7, 183, 78, 0.28);
}

.send-btn svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.quote-card small {
  display: block;
  margin-top: 18px;
  color: #0d1527;
  font-size: 0.82rem;
  font-weight: 800;
  text-align: center;
}

.secure-card {
  min-height: 318px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 34px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 28%, rgba(0, 105, 255, 0.35), transparent 13rem),
    linear-gradient(145deg, #06255a 0%, #04183a 55%, #03152d 100%);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.secure-card svg {
  width: 58px;
  height: 58px;
  fill: none;
  stroke: var(--blue-500);
  stroke-width: 1.7;
  filter: drop-shadow(0 0 16px rgba(0, 111, 255, 0.65));
}

.secure-card h3 {
  max-width: 260px;
  margin: 22px 0 16px;
  color: #fff;
  font-size: 1.28rem;
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
}

.secure-card p {
  max-width: 260px;
  margin: 0;
  color: #e7f0ff;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.58;
}

.brands-section {
  padding: 40px 0 30px;
  text-align: center;
  background: linear-gradient(180deg, #010813 0%, #010a16 100%);
}

.brands-section h2 {
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(1rem, 1.65vw, 1.34rem);
  font-weight: 900;
  text-transform: uppercase;
}

.brands-section h2 span {
  color: var(--blue-500);
}

.brand-strip {
  width: min(100%, 620px);
  min-height: 74px;
  display: grid;
  grid-template-columns: minmax(150px, 0.9fr) minmax(140px, 0.78fr) minmax(150px, 1fr);
  align-items: center;
  gap: 24px;
  margin: 0 auto;
  padding: 6px 10px 0;
  border-radius: 5px;
}

.brand-name {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  font-size: clamp(1.15rem, 2vw, 1.85rem);
  font-weight: 900;
  line-height: 0.86;
  letter-spacing: 0;
  text-transform: none;
  text-shadow: 0 0 15px currentColor;
}

.brand-name--bahia {
  color: #1977ff;
  text-align: left;
}

.brand-name--bahia::first-line {
  color: #e6232f;
}

.brand-name--assai {
  color: #fff;
  min-height: 48px;
  padding: 0 12px;
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  text-transform: uppercase;
  background: linear-gradient(#f74425 0 58%, #173f8c 59% 100%);
  border-radius: 4px;
  text-shadow: none;
}

.brand-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  color: #dce7f7;
  font-size: clamp(1rem, 1.8vw, 1.32rem);
  font-weight: 400;
  line-height: 1.2;
  font-style: italic;
}

.section-pad {
  padding: 28px 0 58px;
}

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

.section-heading h2 {
  color: #fff;
}

.section-heading h2 span {
  color: var(--blue-500);
}

.advantages-section .section-heading h2 span {
  color: var(--orange-500);
}

.section-heading p {
  margin: 12px 0 0;
  color: #d8e4f5;
  font-size: 0.98rem;
  font-weight: 600;
}

.services-section {
  background:
    radial-gradient(circle at 50% 44%, rgba(0, 88, 255, 0.12), transparent 24rem),
    #010813;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
}

.service-card {
  position: relative;
  min-height: 408px;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  color: #081227;
  text-align: center;
  background:
    linear-gradient(180deg, #ffffff 0%, #f6f9ff 56%, #eef4fc 100%);
  border: 1px solid rgba(121, 155, 205, 0.28);
  border-radius: var(--radius);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.34);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.service-card:hover {
  transform: translateY(-7px);
  border-color: rgba(0, 105, 255, 0.48);
  box-shadow: 0 24px 46px rgba(0, 0, 0, 0.4);
}

.service-media {
  position: relative;
  width: 100%;
  height: 164px;
  overflow: hidden;
  background: #d9e4f2;
}

.service-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(1, 8, 19, 0) 48%, rgba(1, 8, 19, 0.28) 100%),
    radial-gradient(circle at 50% 15%, rgba(255, 255, 255, 0.18), transparent 58%);
  pointer-events: none;
}

.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.02) contrast(1.03);
  transition: transform 0.35s ease;
}

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

.service-visual {
  position: relative;
  width: 100%;
  height: 158px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.86), transparent 12rem),
    linear-gradient(135deg, #f8fbff 0%, #aeb8c8 100%);
}

.service-visual::before,
.service-visual::after {
  position: absolute;
  content: "";
}

.service-visual--ac::before {
  left: 24px;
  top: 36px;
  width: 122px;
  height: 48px;
  background: linear-gradient(180deg, #ffffff 0%, #d8dde6 100%);
  border-radius: 6px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.22);
  transform: perspective(160px) rotateY(-12deg);
}

.service-visual--ac::after {
  left: 40px;
  top: 76px;
  width: 86px;
  height: 10px;
  background: #1b2535;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 14px 28px rgba(0, 111, 255, 0.24);
}

.service-visual--cold {
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.22) 0 1px, transparent 1px 54px),
    linear-gradient(135deg, #ecf4ff 0%, #7a879b 100%);
}

.service-visual--cold::before {
  inset: 22px 28px 22px 38px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.78), rgba(229, 237, 249, 0.5)),
    linear-gradient(90deg, transparent 0 31%, rgba(3, 14, 37, 0.3) 32% 33%, transparent 34% 65%, rgba(3, 14, 37, 0.3) 66% 67%, transparent 68%);
  border: 2px solid rgba(255, 255, 255, 0.75);
  border-radius: 4px;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.28);
}

.service-visual--cold::after {
  right: 30px;
  top: 28px;
  width: 9px;
  height: 44px;
  background: #0b1730;
  border-radius: 999px;
}

.service-visual--freezer {
  background:
    linear-gradient(90deg, rgba(0, 105, 255, 0.2), transparent 34%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.38) 0 2px, transparent 2px 42px),
    linear-gradient(135deg, #f4f8ff 0%, #8793a4 100%);
}

.service-visual--freezer::before {
  inset: 20px 18px 18px;
  background:
    linear-gradient(90deg, transparent 0 24%, rgba(5, 21, 48, 0.25) 24.5% 25.5%, transparent 26% 50%, rgba(5, 21, 48, 0.25) 50.5% 51.5%, transparent 52% 76%, rgba(5, 21, 48, 0.25) 76.5% 77.5%, transparent 78%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(206, 221, 241, 0.64));
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 5px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.3);
}

.service-visual--freezer::after {
  left: 28px;
  right: 28px;
  bottom: 32px;
  height: 5px;
  background: rgba(0, 105, 255, 0.45);
  border-radius: 999px;
}

.service-visual--display {
  background:
    radial-gradient(circle at 60% 26%, rgba(255, 118, 31, 0.3), transparent 8rem),
    linear-gradient(135deg, #1a2434 0%, #8f9cac 100%);
}

.service-visual--display::before {
  left: 20px;
  right: 20px;
  top: 36px;
  height: 72px;
  background:
    repeating-linear-gradient(0deg, rgba(255, 102, 38, 0.88) 0 10px, rgba(255, 177, 78, 0.88) 10px 18px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.28), transparent);
  border: 7px solid #2a3344;
  border-radius: 8px 8px 14px 14px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.36);
  transform: perspective(180px) rotateX(7deg);
}

.service-visual--display::after {
  left: 30px;
  right: 30px;
  top: 44px;
  height: 18px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 4px;
}

.service-visual--hood {
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.55), transparent 9rem),
    linear-gradient(135deg, #e4e7ed 0%, #545d6b 100%);
}

.service-visual--hood::before {
  left: 35px;
  right: 35px;
  top: 24px;
  height: 72px;
  background: linear-gradient(180deg, #fcfdff, #777f8d 64%, #272d36);
  clip-path: polygon(16% 0, 84% 0, 100% 100%, 0 100%);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.34);
}

.service-visual--hood::after {
  left: 28px;
  right: 28px;
  top: 92px;
  height: 16px;
  background: #202834;
  border-radius: 999px;
}

.service-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin: 14px auto 0;
  color: var(--blue-300);
  background:
    radial-gradient(circle at 50% 40%, rgba(0, 118, 255, 0.32), rgba(3, 14, 37, 0.96) 68%),
    #031027;
  border: 2px solid rgba(0, 89, 255, 0.55);
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28), 0 0 0 5px rgba(255, 255, 255, 0.78);
}

.service-icon--orange {
  color: var(--orange-500);
  border-color: rgba(255, 91, 31, 0.66);
}

.service-icon svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.service-card h3 {
  position: relative;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 18px 18px 14px;
  color: #061a3d;
  font-size: clamp(0.82rem, 1vw, 0.96rem);
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.service-card h3::after {
  position: absolute;
  left: 50%;
  bottom: -6px;
  width: 42px;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--blue-500), var(--orange-500));
  border-radius: 999px;
  transform: translateX(-50%);
}

.service-card p {
  flex: 1;
  margin: 0 18px 20px;
  color: #334155;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.58;
}

.service-card a,
.outline-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 18px;
  color: #fff;
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
  background: #06132c;
  border-radius: 5px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.service-card a {
  margin-bottom: 22px;
  background: linear-gradient(180deg, var(--green-500), var(--green-600));
  box-shadow: 0 10px 22px rgba(4, 155, 65, 0.2);
}

.service-card a:hover,
.service-card a:focus-visible {
  transform: translateY(-2px);
  background: linear-gradient(180deg, #10c75a, #058c3c);
}

.outline-btn:hover,
.outline-btn:focus-visible {
  transform: translateY(-2px);
  background: linear-gradient(180deg, #10c75a, #058c3c);
}

.advantages-section {
  padding-top: 0;
  background:
    radial-gradient(circle at 50% 10%, rgba(0, 103, 255, 0.1), transparent 22rem),
    #010813;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  margin-top: 32px;
}

.advantage-card {
  min-height: 188px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.advantage-card svg {
  width: 54px;
  height: 54px;
  margin-bottom: 20px;
  fill: none;
  stroke: var(--blue-500);
  stroke-width: 1.6;
  filter: drop-shadow(0 0 16px rgba(0, 111, 255, 0.55));
}

.advantage-card h3 {
  width: min(100%, 190px);
  min-height: 44px;
  margin: 0 0 13px;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
}

.advantage-card p {
  max-width: 210px;
  margin: 0;
  color: #dce7f7;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.7;
}

.about-section {
  position: relative;
  padding: 54px 0 52px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(1, 8, 19, 0.98) 0 43%, rgba(2, 18, 45, 0.7) 69%, rgba(4, 12, 28, 0.56) 100%),
    radial-gradient(circle at 75% 50%, rgba(0, 105, 255, 0.2), transparent 24rem),
    #010813;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.74fr) minmax(420px, 1.04fr);
  gap: 28px;
  align-items: center;
}

.about-copy {
  position: relative;
  z-index: 2;
}

.about-copy h2 {
  color: #fff;
  margin-bottom: 22px;
}

.about-copy h2 span {
  color: var(--blue-500);
}

.about-copy p {
  margin: 0 0 18px;
  color: #fff;
  max-width: 560px;
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.7;
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 22px;
}

.about-highlights article {
  min-height: 86px;
  padding: 14px 12px;
  background:
    linear-gradient(145deg, rgba(0, 105, 255, 0.14), rgba(255, 91, 31, 0.08)),
    rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(42, 132, 255, 0.2);
  border-radius: 8px;
}

.about-highlights strong {
  display: block;
  color: #fff;
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 800;
  line-height: 1;
}

.about-highlights article > span {
  display: block;
  margin-top: 8px;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.35;
}

.about-copy ul {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 0 0 24px;
  list-style: none;
}

.about-copy li {
  position: relative;
  padding-left: 30px;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.45;
}

.about-copy li::before {
  position: absolute;
  left: 0;
  top: 0.15em;
  width: 19px;
  height: 19px;
  content: "";
  background: var(--blue-500);
  border-radius: 50%;
  box-shadow: 0 0 14px rgba(0, 105, 255, 0.55);
}

.about-copy li::after {
  position: absolute;
  left: 6px;
  top: 0.42em;
  width: 5px;
  height: 9px;
  content: "";
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.outline-btn {
  min-height: 40px;
  color: #fff;
  font-size: 0.86rem;
  font-weight: 600;
  text-transform: none;
  background: linear-gradient(180deg, var(--green-500), var(--green-600));
  border: 1px solid rgba(20, 205, 98, 0.45);
  box-shadow: 0 12px 26px rgba(4, 155, 65, 0.24);
}

.about-visual {
  position: relative;
  min-height: 325px;
  overflow: hidden;
  background: #020812;
}

.about-visual::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(1, 8, 19, 0.18), rgba(1, 8, 19, 0.02) 48%, rgba(1, 8, 19, 0.12)),
    linear-gradient(180deg, rgba(1, 8, 19, 0), rgba(1, 8, 19, 0.26) 92%);
  z-index: 2;
}

.about-visual::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  height: 32%;
  content: "";
  background:
    radial-gradient(circle at 50% 58%, rgba(0, 105, 255, 0.12), transparent 20rem),
    linear-gradient(180deg, transparent, rgba(1, 8, 19, 0.38));
  pointer-events: none;
}

.about-city {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
  filter: brightness(1.26) saturate(1.16) contrast(1.02);
}

.about-logo-img {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 4;
  width: min(32%, 220px);
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.2);
  filter: drop-shadow(0 16px 30px rgba(0, 0, 0, 0.64)) drop-shadow(0 0 24px rgba(0, 105, 255, 0.36));
}

.contact-banner {
  background: linear-gradient(90deg, #033e9c 0%, #0068ff 52%, #043c91 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.contact-banner__inner {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.contact-banner h2 {
  color: #fff;
}

.contact-banner p {
  margin: 7px 0 0;
  color: #e9f2ff;
  font-size: 0.94rem;
  font-weight: 600;
}

.whatsapp-btn--large {
  min-width: 355px;
  min-height: 66px;
  font-size: 1.78rem;
  border-radius: 7px;
}

.whatsapp-btn--large svg {
  width: 34px;
  height: 34px;
}

.site-footer {
  padding: 28px 0 30px;
  color: #fff;
  background: #010712;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(250px, 1.2fr) minmax(180px, 0.8fr) minmax(250px, 1fr);
  gap: 52px;
}

.brand-logo--footer {
  width: 104px;
  height: 104px;
  margin-bottom: 12px;
}

.footer-brand p {
  max-width: 320px;
  margin: 0 0 12px;
  color: #cdd9ec;
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.6;
}

.footer-brand strong,
.footer-col h3 {
  display: block;
  margin: 0 0 8px;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-brand a,
.footer-col a,
.footer-col span {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 24px;
  color: #dce7f7;
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.4;
  transition: color 0.2s ease;
}

.footer-col {
  display: grid;
  align-content: start;
  gap: 6px;
}

.footer-col a:hover,
.footer-brand a:hover,
.footer-col a:focus-visible,
.footer-brand a:focus-visible {
  color: var(--blue-300);
}

.footer-col svg,
.footer-brand svg {
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.footer-bottom {
  width: min(calc(100% - 44px), var(--container));
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-direction: column;
  margin: 24px auto 0;
  padding-top: 18px;
  color: #9fb0c9;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  margin: 0;
}

.rights-line {
  display: inline;
}

.footer-bottom strong {
  color: #fff;
}

.developer-credit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.webmax-link {
  display: inline-flex;
  align-items: center;
  width: 92px;
  line-height: 0;
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.webmax-logo {
  display: block;
  width: 100%;
  height: auto;
}

.webmax-link:hover,
.webmax-link:focus-visible {
  opacity: 0.82;
  transform: translateY(-1px);
}

.js-enabled .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

@media (max-width: 1180px) {
  .header__inner {
    grid-template-columns: 108px 1fr auto;
    gap: 18px;
  }

  .main-nav {
    gap: 18px;
  }

  .main-nav a {
    font-size: 0.68rem;
  }

  .hero {
    padding-top: 62px;
  }

  .hero__inner {
    grid-template-columns: minmax(390px, 0.92fr) minmax(360px, 0.9fr);
  }

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

  .service-card {
    min-height: 375px;
  }
}

@media (max-width: 980px) {
  .container {
    width: min(calc(100% - 34px), var(--container));
  }

  .site-header {
    position: sticky;
  }

  .header__inner {
    min-height: 76px;
    grid-template-columns: 160px auto auto;
  }

  .brand-logo {
    width: 68px;
    height: 68px;
  }

  .menu-toggle {
    display: block;
    grid-column: 3;
    justify-self: end;
  }

  .menu-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .header__cta {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    min-height: 42px;
    padding-inline: 15px;
    font-size: 0.84rem;
  }

  .header__cta svg {
    width: 20px;
    height: 20px;
  }

  .main-nav {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    display: grid;
    justify-content: stretch;
    gap: 0;
    padding: 14px 17px 26px;
    background: rgba(2, 7, 18, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transform: translateY(-120%);
    transition: transform 0.25s ease;
  }

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

  .main-nav a {
    padding: 18px 8px;
    font-size: 0.84rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

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

  .hero {
    min-height: 640px;
    padding: 62px 0 128px;
  }

  .hero::before {
    left: 0;
    width: 100vw;
    opacity: 0.55;
  }

  .hero__inner {
    grid-template-columns: minmax(340px, 0.92fr) minmax(300px, 0.9fr);
    gap: 24px;
    min-height: 440px;
  }

  .hero__copy {
    max-width: 640px;
    padding-top: 14px;
  }

  .hero h1 {
    font-size: clamp(2.25rem, 5.8vw, 3.75rem);
  }

  .hero__copy > p {
    width: min(100%, 420px);
    margin: 22px 0 34px;
  }

  .hero__media {
    position: absolute;
    inset: -72px -120px -96px -110px;
    z-index: 0;
    min-height: 0;
    margin: 0;
    opacity: 1;
    overflow: visible;
    pointer-events: none;
  }

  .hero__media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transform: none;
  }

  .quote-section {
    margin-top: -92px;
  }

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

  .quote-card {
    border-radius: var(--radius) var(--radius) 0 0;
  }

  .secure-card {
    min-height: 230px;
    border-radius: 0 0 var(--radius) var(--radius);
  }

  .brands-section {
    padding-top: 34px;
  }

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

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

  .about-section {
    background:
      linear-gradient(180deg, rgba(1, 8, 19, 0.98) 0 44%, rgba(3, 24, 58, 0.86) 100%),
      #010813;
  }

  .about-visual {
    min-height: 300px;
  }

  .contact-banner__inner {
    min-height: auto;
    padding: 24px 0;
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .header__inner {
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 8px;
  }

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

  .brand-title {
    display: block;
    max-width: 155px;
    color: #fff;
    font-size: 0.78rem;
    font-weight: 900;
    line-height: 1.02;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.55);
  }

  .brand-title small {
    display: block;
    margin-top: 3px;
    color: var(--blue-300);
    font-size: 0.56rem;
    font-weight: 800;
    letter-spacing: 0.03em;
  }

  .header__cta {
    min-height: 38px;
    padding-inline: 12px;
    font-size: 0.75rem;
  }

  .header__cta span {
    display: none;
  }

  .hero {
    padding: 0 0 86px;
    overflow: hidden;
    background:
      linear-gradient(180deg, transparent 0 min(100vw, 430px), #020814 min(100vw, 430px) 100%),
      #020814;
  }

  .hero__inner {
    display: block;
    min-height: 0;
    padding-top: 0;
    padding-bottom: 26px;
  }

  .hero__copy {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-rows: min(100vw, 430px) auto auto;
    max-width: 100%;
    padding-top: 0;
  }

  .hero__media {
    position: absolute;
    top: 0;
    left: calc((100vw - 100%) / -2);
    right: calc((100vw - 100%) / -2);
    bottom: auto;
    z-index: 0;
    height: min(100vw, 430px);
    min-height: auto;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    overflow: hidden;
  }

  .hero__media::after {
    position: absolute;
    inset: 0;
    content: "";
    background:
      linear-gradient(90deg, rgba(1, 8, 19, 0.95) 0%, rgba(1, 8, 19, 0.68) 45%, rgba(1, 8, 19, 0.06) 78%),
      linear-gradient(180deg, rgba(1, 8, 19, 0.08) 0%, rgba(1, 8, 19, 0.02) 56%, rgba(1, 8, 19, 0.92) 100%);
    pointer-events: none;
  }

  .hero__media img {
    height: 100%;
    object-position: 63% top;
  }

  .hero h1 {
    grid-row: 1;
    align-self: center;
    max-width: 86%;
    margin: 0;
    padding-top: 0;
    font-size: clamp(1.92rem, 9.6vw, 3rem);
    text-shadow: 0 5px 18px rgba(0, 0, 0, 0.58);
    transform: translateY(-4px);
  }

  .hero__copy > p {
    grid-row: 2;
    width: min(100%, 345px);
    margin: 16px auto;
    color: #fff;
    font-size: 0.94rem;
    text-align: center;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.62);
  }

  .hero-features {
    grid-row: 3;
    max-width: none;
    overflow: hidden;
    background: rgba(1, 10, 28, 0.94);
    border: 1px solid rgba(42, 132, 255, 0.38);
    border-radius: 9px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 14px 32px rgba(0, 0, 0, 0.24);
  }

  .hero-features__track {
    display: flex;
    width: max-content;
    animation: feature-marquee 18s linear infinite;
  }

  .hero-features article {
    flex: 0 0 156px;
    min-height: 86px;
    justify-content: center;
    gap: 8px;
    padding: 12px 10px;
  }

  .hero-features .feature-clone {
    display: flex;
  }

  .hero-features article + article {
    border-left: 1px solid rgba(255, 255, 255, 0.13);
  }

  .hero-features article:nth-child(2n) {
    border-left: 1px solid rgba(255, 255, 255, 0.13);
  }

  .hero-features article:nth-child(n + 3) {
    border-top: 0;
  }

  .hero-features svg {
    width: 31px;
    height: 31px;
  }

  .hero-features strong,
  .hero-features article:nth-child(n + 2) strong {
    max-width: 118px;
    color: #fff !important;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: none;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.58);
    -webkit-text-stroke: 0;
  }

  .form-grid,
  .services-grid,
  .advantages-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .quote-card {
    padding: 26px 18px;
  }

  .quote-card h2,
  .section-heading h2,
  .about-copy h2,
  .contact-banner h2 {
    font-size: 1.75rem;
  }

  .quote-card h2 {
    max-width: 310px;
    margin-inline: auto;
    text-align: center;
    line-height: 1.05;
  }

  .quote-card h2 span {
    display: block;
  }

  .secure-card {
    padding: 30px 20px;
  }

  .brand-strip {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 18px;
    min-height: auto;
  }

  .brand-more {
    grid-column: 1 / -1;
    min-height: 30px;
    font-size: 1rem;
  }

  .services-grid {
    max-width: 380px;
    margin-inline: auto;
  }

  .service-card {
    min-height: 372px;
  }

  .service-card h3 {
    font-size: 1rem;
  }

  .service-card p,
  .advantage-card p,
  .about-copy p,
  .about-copy li,
  .secure-card p,
  .section-heading p,
  .contact-banner p,
  .footer-brand p,
  .footer-brand a,
  .footer-col a,
  .footer-col span,
  .footer-bottom,
  .quote-card p,
  .quote-card small {
    font-size: 0.95rem;
  }

  .service-card a,
  .outline-btn,
  .field input,
  .field select {
    font-size: 0.92rem;
  }

  .advantages-grid {
    gap: 12px;
    margin-top: 24px;
    padding-left: 0;
  }

  .advantages-grid::before {
    display: none;
  }

  .advantage-card {
    position: relative;
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    grid-template-rows: auto auto;
    align-items: center;
    column-gap: 14px;
    min-height: 0;
    padding: 16px 14px;
    text-align: left;
    background:
      linear-gradient(135deg, rgba(4, 18, 43, 0.96), rgba(2, 10, 25, 0.96)),
      #020814;
    border: 1px solid rgba(42, 132, 255, 0.18);
    border-radius: 8px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  }

  .advantage-card + .advantage-card {
    padding-top: 16px;
    border-top: 1px solid rgba(42, 132, 255, 0.12);
  }

  .advantage-card svg {
    position: static;
    grid-column: 1;
    grid-row: 1 / 3;
    width: 48px;
    height: 48px;
    margin: 0;
    padding: 9px;
    background: rgba(0, 105, 255, 0.08);
    border: 1px solid rgba(0, 105, 255, 0.36);
    border-radius: 50%;
  }

  .advantage-card + .advantage-card svg {
    top: auto;
  }

  .advantage-card h3 {
    grid-column: 2;
    width: auto;
    min-height: auto;
    margin: 0 0 6px;
    font-size: 0.95rem;
  }

  .advantage-card p {
    grid-column: 2;
    max-width: none;
    margin: 0;
    line-height: 1.5;
  }

  .about-section {
    padding: 42px 0 38px;
  }

  .about-grid {
    gap: 22px;
  }

  .about-copy p {
    margin-bottom: 16px;
    font-size: 0.98rem;
  }

  .about-highlights {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .about-highlights article {
    position: relative;
    display: grid;
    grid-template-columns: 62px 1fr;
    align-items: center;
    overflow: hidden;
    min-height: 66px;
    padding: 12px 14px;
    animation: aboutMobileLift 4.8s ease-in-out infinite;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.22);
  }

  .about-highlights article:nth-child(2) {
    animation-delay: 0.35s;
  }

  .about-highlights article:nth-child(3) {
    animation-delay: 0.7s;
  }

  .about-highlights article::after {
    position: absolute;
    inset: 0 auto 0 0;
    width: 3px;
    content: "";
    background: linear-gradient(180deg, var(--blue-500), var(--orange-500));
    box-shadow: 0 0 18px rgba(0, 105, 255, 0.45);
  }

  .about-highlights strong {
    font-size: 1.45rem;
  }

  .about-highlights article > span {
    margin-top: 0;
    color: #fff;
    font-size: 0.88rem;
  }

  .outline-btn {
    min-height: 46px;
    padding-inline: 20px;
    font-size: 0.9rem;
  }

  .about-visual {
    min-height: 268px;
  }

  .about-city {
    object-position: 82% center;
  }

  .about-logo-img {
    left: 42%;
    top: 50%;
    width: min(38%, 150px);
  }

  .whatsapp-btn--large {
    width: 100%;
    min-width: 0;
    min-height: 58px;
    font-size: clamp(1.12rem, 7vw, 1.55rem);
  }

  .footer-grid {
    gap: 28px;
  }

  .footer-bottom {
    width: min(calc(100% - 28px), var(--container));
    gap: 6px;
    font-size: clamp(0.68rem, 3vw, 0.78rem);
  }

  .footer-bottom p {
    white-space: nowrap;
  }

  .rights-line {
    display: inline;
  }
}

@media (max-width: 430px) {
  .header__inner {
    grid-template-columns: minmax(0, 1fr) auto 42px;
    gap: 6px;
  }

  .brand-logo {
    width: 50px;
    height: 50px;
  }

  .brand-title {
    max-width: 132px;
    font-size: 0.72rem;
  }

  .brand-title small {
    font-size: 0.52rem;
  }

  .hero__inner {
    min-height: 0;
    padding-bottom: 22px;
  }

  .hero__copy {
    grid-template-rows: 100vw auto auto;
  }

  .hero__media {
    height: 100vw;
  }

  .hero h1 {
    max-width: 88%;
    padding-top: 0;
    font-size: clamp(1.72rem, 8.9vw, 2.35rem);
    transform: translateY(-2px);
  }

  .hero__copy > p {
    font-size: 0.9rem;
  }

  .hero-features article {
    flex-basis: 138px;
  }

  .hero-features svg {
    width: 29px;
    height: 29px;
  }

  .hero-features strong {
    font-size: 0.76rem;
  }

  .quote-section {
    margin-top: -78px;
  }

  .field {
    min-height: 50px;
    padding-inline: 12px;
  }

  .field input,
  .field select {
    font-size: 0.92rem;
  }

  .contact-banner p,
  .section-heading p {
    font-size: 0.95rem;
  }
}

.main-nav a,
.brand-title,
.brand-title small,
.hero__copy > p,
.quote-card p,
.quote-card small,
.secure-card p,
.section-heading p,
.service-card p,
.advantage-card p,
.about-copy p,
.about-copy li,
.contact-banner p,
.footer-brand p,
.footer-brand a,
.footer-col a,
.footer-col span,
.footer-bottom,
.field input,
.field select {
  font-weight: 400;
}

.whatsapp-btn,
.send-btn,
.service-card a,
.outline-btn,
.webmax-link {
  font-weight: 600;
}

/* Final navigation, floating CTA, internal pages and motion system */
.site-header .brand-logo {
  display: block;
  flex: 0 0 auto;
  width: clamp(48px, 5.3vw, 66px);
  height: clamp(48px, 5.3vw, 66px);
}

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

.brand-title {
  display: block;
  max-width: none;
  color: #fff;
  font-size: clamp(0.82rem, 1.1vw, 0.98rem);
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  text-transform: none;
  letter-spacing: 0;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.32);
}

.main-nav {
  justify-content: flex-end;
}

.header__cta {
  display: none;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  min-height: 54px;
  padding: 0;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
  background: linear-gradient(180deg, var(--green-500), var(--green-600));
  border-radius: 999px;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.3), 0 0 0 0 rgba(7, 183, 78, 0.42);
  animation: whatsappPulse 2.7s ease-in-out infinite;
}

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

.floating-whatsapp span {
  display: none;
}

.hero h1 .line {
  animation: heroTextIn 0.75s ease both;
}

.hero h1 .line:nth-child(2) {
  animation-delay: 0.06s;
}

.hero h1 .line:nth-child(3) {
  animation-delay: 0.12s;
}

.hero h1 .line:nth-child(4) {
  animation-delay: 0.18s;
}

.hero h1 .line:nth-child(5) {
  animation-delay: 0.24s;
}

.hero__media img {
  animation: heroImageIn 1s ease both;
}

.service-card,
.advantage-card,
.page-card,
.service-detail,
.contact-method {
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.service-card:hover,
.advantage-card:hover,
.page-card:hover,
.service-detail:hover,
.contact-method:hover {
  transform: translateY(-4px);
}

.page-main {
  background:
    radial-gradient(circle at 24% 12%, rgba(0, 105, 255, 0.16), transparent 28rem),
    radial-gradient(circle at 82% 28%, rgba(255, 91, 31, 0.1), transparent 24rem),
    #010813;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 58px;
  background:
    linear-gradient(110deg, rgba(1, 8, 19, 0.98) 0 46%, rgba(2, 21, 52, 0.78) 100%),
    #010813;
}

.page-hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(0, 105, 255, 0.64), rgba(255, 91, 31, 0.42), transparent);
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  display: block;
  max-width: 980px;
}

.page-kicker {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--blue-300);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.page-hero h1 {
  max-width: 760px;
  margin: 0;
  color: #fff;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  font-weight: 900;
  line-height: 0.98;
  text-transform: uppercase;
}

.page-hero h1 span,
.page-section h2 span {
  color: var(--blue-500);
}

.page-hero p {
  max-width: 620px;
  margin: 22px 0 0;
  color: #dce7f7;
  font-size: 1.05rem;
  line-height: 1.7;
}

.page-hero__actions,
.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.page-section {
  padding: 58px 0;
}

.page-section h2 {
  margin: 0 0 16px;
  color: #fff;
  font-size: clamp(1.9rem, 3.4vw, 3rem);
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
}

.page-section__lead {
  max-width: 720px;
  margin: 0 0 30px;
  color: #dce7f7;
  font-size: 1rem;
  line-height: 1.7;
}

.page-grid,
.service-detail-grid,
.contact-grid,
.process-grid {
  display: grid;
  gap: 18px;
}

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

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

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

.page-card,
.service-detail,
.contact-method,
.process-step {
  position: relative;
  overflow: hidden;
  padding: 24px;
  color: #dce7f7;
  background: linear-gradient(145deg, rgba(4, 18, 43, 0.94), rgba(2, 10, 25, 0.96));
  border: 1px solid rgba(42, 132, 255, 0.16);
  border-radius: 8px;
}

.page-card::before,
.service-detail::before,
.contact-method::before,
.process-step::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  content: "";
  background: linear-gradient(180deg, var(--blue-500), var(--orange-500));
  box-shadow: 0 0 18px rgba(0, 105, 255, 0.32);
}

.page-card h3,
.service-detail h3,
.contact-method h3,
.process-step h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 1.02rem;
  font-weight: 900;
  text-transform: uppercase;
}

.page-card p,
.service-detail p,
.contact-method p,
.process-step p {
  margin: 0;
  line-height: 1.65;
}

.service-detail {
  display: grid;
  grid-template-columns: 108px 1fr;
  align-items: center;
  gap: 18px;
}

.service-badge {
  position: relative;
  width: 76px;
  height: 68px;
  display: grid;
  place-items: center;
  color: #fff;
  transition: transform 0.24s ease;
}

.service-badge--orange {
  color: var(--orange-500);
}

.service-badge svg {
  width: 42px;
  height: 42px;
  fill: currentColor;
  filter: drop-shadow(0 0 14px rgba(0, 105, 255, 0.32));
}

.service-badge::after {
  position: absolute;
  inset: auto 12px 0;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--blue-500), var(--orange-500));
  border-radius: 999px;
}

.service-detail:hover .service-badge {
  transform: translateY(-2px);
}

.service-quote-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  margin-top: 16px;
  padding: 0 16px;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  background: linear-gradient(180deg, var(--green-500), var(--green-600));
  border-radius: 6px;
  box-shadow: 0 12px 26px rgba(4, 155, 65, 0.22);
  transition: transform 0.22s ease, filter 0.22s ease, box-shadow 0.22s ease;
}

.service-quote-btn:hover,
.service-quote-btn:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 16px 30px rgba(4, 155, 65, 0.28);
}

.page-cta-band {
  margin: 18px 0 0;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(255, 91, 31, 0.9), rgba(0, 105, 255, 0.88)),
    linear-gradient(145deg, #04183a, #010813);
  border: 1px solid rgba(255, 91, 31, 0.28);
  border-radius: 8px;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.28);
}

.page-cta-band h2 {
  margin: 0;
  font-size: clamp(1rem, 1.4vw, 1.24rem);
  line-height: 1.05;
  white-space: nowrap;
}

.page-cta-band p {
  margin: 6px 0 0;
  color: #e9f2ff;
  font-size: 0.82rem;
  line-height: 1.45;
}

.page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  text-transform: none;
  background: linear-gradient(180deg, var(--green-500), var(--green-600));
  border-radius: 6px;
  box-shadow: 0 12px 26px rgba(4, 155, 65, 0.22);
  transition: transform 0.22s ease, filter 0.22s ease, box-shadow 0.22s ease;
}

.page-btn:hover,
.page-btn:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 16px 30px rgba(4, 155, 65, 0.3);
}

.page-btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: none;
}

@keyframes heroTextIn {
  from {
    transform: translateY(16px);
  }

  to {
    transform: translateY(0);
  }
}

@keyframes heroImageIn {
  from {
    transform: scale(1.03) translateX(18px);
  }

  to {
    transform: scale(1) translateX(0);
  }
}

@keyframes whatsappPulse {
  0%,
  100% {
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.3), 0 0 0 0 rgba(7, 183, 78, 0.34);
  }

  55% {
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.3), 0 0 0 12px rgba(7, 183, 78, 0);
  }
}

@keyframes aboutMobileLift {
  0%,
  100% {
    transform: translateY(0);
    border-color: rgba(42, 132, 255, 0.2);
  }

  45% {
    transform: translateY(-3px);
    border-color: rgba(255, 91, 31, 0.28);
  }
}

@media (max-width: 980px) {
  .header__inner {
    grid-template-columns: minmax(0, 1fr) 44px;
    min-height: 76px;
    gap: 14px;
  }

  .menu-toggle {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    border-color: rgba(255, 91, 31, 0.72);
    box-shadow: 0 0 0 1px rgba(255, 91, 31, 0.12), 0 0 18px rgba(255, 91, 31, 0.18);
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
    min-width: 0;
    gap: 8px;
  }

  .main-nav {
    text-align: left;
  }

  .site-header .brand-logo {
    width: 50px;
    height: 50px;
  }

  .brand-title {
    max-width: calc(100vw - 132px);
    font-size: clamp(0.72rem, 3vw, 0.88rem);
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .main-nav {
    top: 76px;
    display: grid;
    justify-content: stretch;
    justify-items: stretch;
    align-items: stretch;
    padding: 18px 18px 24px;
    gap: 8px;
    background:
      linear-gradient(135deg, rgba(0, 105, 255, 0.13), transparent 34%),
      linear-gradient(315deg, rgba(255, 91, 31, 0.12), transparent 32%),
      rgba(2, 7, 18, 0.985);
    border: 1px solid rgba(255, 91, 31, 0.42);
    border-left: 0;
    border-right: 0;
    box-shadow: 0 22px 44px rgba(0, 0, 0, 0.34);
  }

  .main-nav a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    min-height: 54px;
    padding: 0 18px;
    text-align: left;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    text-transform: none;
    border: 1px solid rgba(255, 91, 31, 0.32);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.035);
  }

  .main-nav a::before {
    width: 5px;
    height: 22px;
    margin-right: 12px;
    content: "";
    border-radius: 999px;
    background: linear-gradient(180deg, var(--blue-500), var(--orange-500));
    box-shadow: 0 0 16px rgba(0, 105, 255, 0.32);
  }

  .page-hero__inner,
  .page-grid,
  .service-detail-grid,
  .contact-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 720px) {
  .brand-title {
    display: block;
    max-width: calc(100vw - 128px);
    font-size: clamp(0.68rem, 3.25vw, 0.8rem);
    color: #fff;
    font-weight: 500;
    white-space: nowrap;
    text-transform: none;
    letter-spacing: 0;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    width: 52px;
    height: 52px;
    min-height: 52px;
    padding: 0;
    font-size: 0.82rem;
  }

  .page-hero {
    padding: 54px 0 38px;
  }

  .page-hero h1 {
    font-size: clamp(2rem, 10vw, 3.05rem);
  }

  .page-hero p,
  .page-section__lead {
    font-size: 0.98rem;
  }

  .page-section {
    padding: 42px 0;
  }

  .service-detail {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 16px;
    text-align: center;
  }

  .service-badge {
    justify-self: center;
    width: 58px;
    height: 52px;
  }

  .service-badge svg {
    width: 34px;
    height: 34px;
  }

  .page-cta-band {
    padding: 18px;
    gap: 12px;
    flex-direction: column;
    align-items: stretch;
  }

  .page-cta-band h2 {
    font-size: clamp(1rem, 5vw, 1.2rem);
    white-space: nowrap;
  }

  .page-cta-band p {
    font-size: 0.84rem;
  }

  .page-btn,
  .service-quote-btn {
    width: 100%;
    min-height: 43px;
    padding-inline: 12px;
    font-size: clamp(0.78rem, 3.7vw, 0.88rem);
    white-space: nowrap;
  }

  .advantages-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-left: 0;
  }

  .advantages-grid::before {
    display: none;
  }

  .advantage-card {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    grid-template-rows: auto auto;
    align-items: center;
    column-gap: 14px;
    padding: 16px 14px;
    text-align: left;
    background: linear-gradient(145deg, rgba(4, 18, 43, 0.96), rgba(2, 10, 25, 0.96));
    border: 1px solid rgba(42, 132, 255, 0.18);
    border-radius: 8px;
  }

  .advantage-card svg {
    position: static;
    grid-column: 1;
    grid-row: 1 / 3;
    width: 48px;
    height: 48px;
    margin: 0;
    padding: 9px;
    background: rgba(0, 105, 255, 0.08);
    border: 1px solid rgba(0, 105, 255, 0.36);
    border-radius: 50%;
  }

  .advantage-card h3,
  .advantage-card p {
    grid-column: 2;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero-features__track {
    animation: none !important;
  }
}
