:root {
  --bg: #06152f;
  --bg-soft: #0d234b;
  --blue: #0d69f2;
  --blue-deep: #0058d8;
  --text: #081224;
  --muted: #4f5b72;
  --line: #d5dced;
  --surface: #ffffff;
  --surface-alt: #f4f7fb;
  --green: #0fce6f;
  --yellow: #f2ba23;
  --shadow: 0 24px 60px rgba(2, 13, 33, 0.18);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Arial Narrow", Arial, sans-serif;
  color: var(--text);
  background: #e9eef7;
  overflow-x: hidden;
}

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

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

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

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

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 30%, rgba(24, 111, 255, 0.35), transparent 28%),
    linear-gradient(120deg, #021126 0%, #061939 38%, #09162a 100%);
  color: #fff;
}

.hero__backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 11, 30, 0.94) 0%, rgba(2, 11, 30, 0.76) 40%, rgba(2, 11, 30, 0.2) 100%),
    radial-gradient(circle at 65% 55%, rgba(255, 197, 77, 0.18), transparent 18%);
}

.hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(560px, 1fr);
  gap: 0;
  align-items: center;
  min-height: 760px;
  padding: 28px 0 24px;
}

.brand {
  display: flex;
  align-items: flex-end;
  gap: 18px;
  margin-bottom: 18px;
}

.brand__logo {
  width: 140px;
  height: 140px;
  object-fit: contain;
  flex: 0 0 auto;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.35));
}

.brand__name {
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #d4a34a;
  text-shadow: 0 3px 18px rgba(212, 163, 74, 0.18);
}

.hero__title {
  margin: 0;
  font-size: clamp(2.5rem, 4vw, 5rem);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-weight: 900;
}

.hero__title span {
  display: inline-block;
  margin: 12px 0;
  padding: 6px 12px 8px;
  background: linear-gradient(180deg, #2696ff 0%, #0d69f2 100%);
  border-radius: 8px;
}

.hero__facts {
  display: flex;
  gap: 28px;
  margin: 34px 0 30px;
}

.fact {
  display: flex;
  align-items: center;
  gap: 14px;
}

.fact + .fact {
  padding-left: 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.34);
}

.fact strong,
.fact span {
  display: block;
}

.fact strong {
  font-size: 1.05rem;
}

.fact span {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.45rem;
  font-weight: 700;
}

.fact__icon {
  position: relative;
  width: 42px;
  height: 42px;
  border: 2px solid var(--blue);
  border-radius: 10px;
}

.calendar::before,
.calendar::after,
.shield-icon::before,
.shield-icon::after {
  content: "";
  position: absolute;
}

.calendar::before {
  left: 7px;
  right: 7px;
  top: 12px;
  bottom: 8px;
  border-top: 2px solid var(--blue);
}

.calendar::after {
  left: 9px;
  top: 4px;
  width: 24px;
  height: 8px;
  border-top: 4px solid var(--blue);
  border-bottom: 2px solid var(--blue);
}

.shield-icon {
  border: none;
}

.shield-icon::before {
  inset: 2px 6px 4px;
  border: 2px solid var(--blue);
  clip-path: polygon(50% 0, 94% 20%, 82% 74%, 50% 100%, 18% 74%, 6% 20%);
}

.shield-icon::after {
  left: 16px;
  top: 12px;
  width: 11px;
  height: 18px;
  border-right: 3px solid var(--blue);
  border-bottom: 3px solid var(--blue);
  transform: rotate(45deg);
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0.04em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
}

.cta--primary {
  padding: 22px 30px;
  min-width: min(100%, 430px);
  background: linear-gradient(180deg, #1e8eff 0%, #085bdc 100%);
  color: #fff;
  box-shadow: 0 16px 36px rgba(9, 93, 222, 0.35);
  font-size: 1.45rem;
}

.cta--primary::after {
  content: "→";
  margin-left: 12px;
}

.benefits {
  background: #fff;
}

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

.benefit {
  padding: 28px 22px;
  border-right: 1px solid var(--line);
}

.benefit:last-child {
  border-right: none;
}

.benefit h2 {
  margin: 14px 0 8px;
  font-size: 1.6rem;
  text-transform: uppercase;
  line-height: 1.02;
}

.benefit p {
  margin: 0;
  color: var(--muted);
  font-size: 1.22rem;
}

.benefit__icon {
  position: relative;
  width: 52px;
  height: 52px;
  color: var(--blue);
}

.towers::before,
.towers::after,
.mobile::before,
.mobile::after,
.wallet::before,
.wallet::after,
.speed::before,
.speed::after {
  content: "";
  position: absolute;
}

.towers::before {
  left: 6px;
  bottom: 5px;
  width: 12px;
  height: 36px;
  border: 3px solid var(--blue);
  border-bottom-width: 5px;
}

.towers::after {
  left: 24px;
  bottom: 5px;
  width: 18px;
  height: 46px;
  border: 3px solid var(--blue);
  border-bottom-width: 5px;
}

.mobile::before {
  inset: 2px 12px;
  border: 3px solid var(--blue);
  border-radius: 10px;
}

.mobile::after {
  left: 23px;
  bottom: 8px;
  width: 6px;
  height: 6px;
  background: var(--blue);
  border-radius: 50%;
}

.wallet::before {
  inset: 10px 2px 12px 8px;
  border: 3px solid var(--blue);
  border-radius: 10px;
}

.wallet::after {
  right: 5px;
  top: 17px;
  width: 14px;
  height: 12px;
  border: 3px solid var(--blue);
  border-left: none;
  border-radius: 0 6px 6px 0;
}

.speed::before {
  inset: 6px;
  border: 3px solid var(--blue);
  border-bottom-color: transparent;
  border-radius: 50%;
}

.speed::after {
  left: 23px;
  top: 17px;
  width: 16px;
  height: 3px;
  background: var(--blue);
  transform: rotate(-30deg);
  transform-origin: left center;
}

.hero__visual {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.hero__visual-image {
  display: block;
  width: min(100%, 1650px);
  height: auto;
  margin-right: 90px;
  margin-bottom: 44px;
  filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.32));
}

.section {
  padding: 46px 0 54px;
  background: #fff;
}

.services-banner-section {
  padding-top: 26px;
  padding-bottom: 26px;
}

.services-banner-card {
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(2, 13, 33, 0.1);
}

.services-banner-card__image {
  display: block;
  width: 100%;
  height: auto;
}

.section__heading {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 18px;
  align-items: center;
  margin-bottom: 30px;
}

.section__heading span {
  height: 2px;
  background: var(--line);
}

.section__heading h2 {
  margin: 0;
  text-transform: uppercase;
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1;
}

.cta:focus-visible,
.contact__whatsapp:focus-visible,
.floating-whatsapp:focus-visible,
.contact__phone a:focus-visible,
.site-footer__block a:focus-visible {
  outline: 3px solid #5fb3ff;
  outline-offset: 4px;
}

.brands__row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  align-items: center;
  text-align: center;
  font-size: clamp(1.6rem, 2.5vw, 3rem);
  font-weight: 900;
}

.brands__row span {
  overflow-wrap: anywhere;
}

.brands__row span:nth-child(1) { color: #de001f; }
.brands__row span:nth-child(2) { color: #d71226; font-style: italic; }
.brands__row span:nth-child(3) { color: #7b7c80; }
.brands__row span:nth-child(4) { color: #61656d; }
.brands__row span:nth-child(5) { color: #29b64a; }
.brands__row span:nth-child(6) { color: #1660bf; }

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

.step {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border-radius: 16px;
  background: var(--surface-alt);
}

.step__num {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--bg);
  color: #fff;
  font-size: 1.55rem;
  font-weight: 900;
}

.step h3 {
  margin: 0 0 6px;
  text-transform: uppercase;
  font-size: 1.6rem;
}

.step p {
  margin: 0;
  color: var(--muted);
  font-size: 1.2rem;
}

.contact {
  padding: 34px 0;
  background:
    radial-gradient(circle at 30% 50%, rgba(21, 115, 255, 0.3), transparent 22%),
    linear-gradient(135deg, #031126 0%, #071932 100%);
  color: #fff;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 24px;
  align-items: center;
}

.contact__copy h2 {
  margin: 0 0 10px;
  text-transform: uppercase;
  font-size: clamp(2rem, 2.8vw, 3.1rem);
  line-height: 1;
}

.contact__copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.4rem;
  max-width: 420px;
}

.contact__phone {
  display: grid;
  justify-items: center;
}

.contact__phone a {
  color: #fff;
  text-decoration: none;
  font-size: clamp(2.5rem, 4vw, 5rem);
  font-weight: 900;
  text-align: center;
  line-height: 1;
}

.contact__phone span {
  margin-top: 8px;
  font-size: 2rem;
  font-weight: 700;
}

.contact__whatsapp {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-self: end;
  color: #fff;
  text-decoration: none;
  text-align: center;
  font-size: 1.2rem;
}

.site-footer {
  padding: 28px 0 110px;
  background: #050f1f;
  color: rgba(255, 255, 255, 0.92);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 28px;
}

.site-footer__block {
  padding: 4px 0;
}

.site-footer__block h2 {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.site-footer__block p {
  margin: 0 0 10px;
  font-size: 1.15rem;
  line-height: 1.45;
}

.site-footer__block a {
  color: #fff;
  text-decoration: none;
}

.site-footer__block a:hover {
  text-decoration: underline;
}

.qr {
  display: block;
  width: 112px;
  height: 112px;
  margin: 0 auto 10px;
  object-fit: cover;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 999px;
  background: #18c65b;
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  box-shadow: 0 16px 36px rgba(24, 198, 91, 0.32);
}

.floating-whatsapp::before {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
}

@media (max-width: 1100px) {
  .hero__content,
  .contact__grid,
  .workflow__grid,
  .brands__row,
  .site-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .contact__grid {
    justify-items: start;
  }

  .contact__whatsapp {
    justify-self: start;
  }
}

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

  .hero__content,
  .workflow__grid,
  .contact__grid,
  .brands__row,
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .hero__content {
    min-height: auto;
    gap: 18px;
    padding: 18px 0 20px;
  }

  .brand {
    gap: 12px;
    margin-bottom: 14px;
  }

  .brand__logo {
    width: 88px;
    height: 88px;
  }

  .brand__name {
    font-size: 1.9rem;
  }

  .hero__title {
    font-size: 2.35rem;
  }

  .hero__title span {
    margin: 10px 0;
    padding-inline: 10px;
  }

  .hero__facts {
    flex-direction: column;
    gap: 14px;
    margin: 24px 0;
  }

  .fact + .fact {
    padding-left: 0;
    border-left: none;
  }

  .hero__visual {
    min-height: 460px;
    margin-top: 0;
  }

  .hero__visual-image {
    width: min(100%, 520px);
    margin-right: 0;
  }

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

  .benefit {
    padding: 18px 14px;
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .benefit:last-child {
    border-bottom: none;
  }

  .benefit h2 {
    font-size: 1.35rem;
  }

  .benefit p {
    font-size: 1rem;
  }

  .step {
    border-right: none;
    padding-inline: 14px;
  }

  .section {
    padding: 26px 0 30px;
  }

  .services-banner-section {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .services-banner-card {
    border-radius: 12px;
  }

  .section__heading {
    gap: 12px;
  }

  .section__heading h2 {
    font-size: 1.45rem;
    text-align: center;
  }

  .brands__row {
    gap: 14px;
    font-size: 1.5rem;
  }

  .step {
    gap: 12px;
    padding: 14px;
  }

  .step h3 {
    font-size: 1.25rem;
  }

  .step p,
  .contact__copy p {
    font-size: 1rem;
  }

  .contact {
    padding: 24px 0;
  }

  .contact__grid {
    gap: 18px;
    justify-items: center;
    text-align: center;
  }

  .contact__copy h2 {
    font-size: 1.7rem;
  }

  .contact__copy p {
    max-width: 100%;
  }

  .contact__phone a {
    font-size: clamp(2rem, 9vw, 2.7rem);
    word-break: break-word;
  }

  .contact__phone span {
    font-size: 1.45rem;
  }

  .contact__whatsapp {
    justify-self: center;
    font-size: 1rem;
  }

  .qr {
    width: 96px;
    height: 96px;
    margin-bottom: 8px;
  }

  .site-footer {
    padding: 22px 0 92px;
  }

  .site-footer__grid {
    gap: 14px;
  }

  .site-footer__block h2 {
    margin-bottom: 10px;
    font-size: 0.92rem;
  }

  .site-footer__block p {
    margin-bottom: 8px;
    font-size: 1rem;
  }

  .floating-whatsapp {
    left: 12px;
    right: 12px;
    bottom: 12px;
    justify-content: center;
    padding: 13px 16px;
    font-size: 1rem;
  }
}

@media (max-width: 560px) {
  .hero__title {
    font-size: 1.95rem;
  }

  .cta--primary {
    width: 100%;
    min-width: 0;
    padding: 16px 18px;
    font-size: 1.05rem;
  }

  .brands__row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    font-size: 1.25rem;
  }

  .step__num {
    width: 42px;
    height: 42px;
    font-size: 1.2rem;
  }

  .contact__copy h2 {
    font-size: 1.45rem;
  }

  .contact__phone a {
    font-size: 1.85rem;
  }

  .contact__phone span {
    margin-top: 6px;
    font-size: 1.2rem;
  }

  .qr {
    width: 88px;
    height: 88px;
  }
}
