:root {
  --bg: #07090b;
  --bg-2: #0b0d10;
  --panel: #111316;
  --panel-2: #0c0e11;
  --text: #f5f5f5;
  --muted: #d3d3d3;
  --dim: #8c8f94;
  --gold: #ffb900;
  --gold-soft: #d99b00;
  --line: rgba(255, 185, 0, 0.34);
  --white-line: rgba(255, 255, 255, 0.16);
  --max: 1292px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 4%, rgba(255, 185, 0, 0.05), transparent 22rem),
    linear-gradient(180deg, #050607 0%, var(--bg) 44%, #050607 100%);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.45;
}

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

.site-header {
  display: grid;
  grid-template-columns: minmax(360px, 1fr) auto auto;
  align-items: center;
  gap: 34px;
  height: 95px;
  padding: 0 max(28px, calc((100vw - var(--max)) / 2));
  background: rgba(6, 8, 10, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.logo-link {
  display: inline-flex;
  width: 424px;
  max-width: 100%;
}

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

.main-nav {
  display: flex;
  align-items: center;
  gap: 37px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.main-nav a {
  position: relative;
  padding: 38px 0 34px;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 24px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transform: translateX(-50%);
  transition: width 160ms ease;
}

.main-nav a:hover,
.main-nav .active {
  color: var(--gold);
}

.main-nav a:hover::after,
.main-nav .active::after {
  width: 52px;
}

.header-cta,
.primary-button,
.phone-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 5px;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.header-cta {
  min-width: 166px;
  height: 43px;
  color: var(--gold);
  border: 1px solid var(--gold);
  font-size: 13px;
}

.header-cta:hover,
.phone-button:hover {
  color: #07090b;
  background: var(--gold);
}

.icon,
.mini-icon,
.card-icon,
.contact-icon {
  position: relative;
  display: inline-block;
  color: currentColor;
  flex: 0 0 auto;
}

.icon {
  width: 19px;
  height: 19px;
}

.wa-svg {
  display: block;
  width: 18px;
  height: 18px;
  color: currentColor;
  fill: currentColor;
  flex: 0 0 auto;
}

.contact-icon.wa-svg {
  width: 39px;
  height: 39px;
}

.phone-svg {
  display: block;
  width: 19px;
  height: 19px;
  color: currentColor;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  flex: 0 0 auto;
}

.contact-icon.phone-svg {
  width: 39px;
  height: 39px;
  color: var(--gold);
}

.contact-icon.mail-svg {
  width: 39px;
  height: 39px;
  color: var(--gold);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.whatsapp-icon::before,
.whatsapp-line-icon::before {
  content: "";
  position: absolute;
  inset: 2px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.whatsapp-icon::after,
.whatsapp-line-icon::after {
  content: "";
  position: absolute;
  left: 11px;
  bottom: 2px;
  width: 6px;
  height: 7px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-24deg);
}

.phone-icon::before,
.phone-line-icon::before {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border: 2px solid currentColor;
  border-top-color: transparent;
  border-right-color: transparent;
  border-radius: 0 0 0 7px;
  transform: rotate(-46deg);
}

.phone-icon::after,
.phone-line-icon::after {
  content: "";
  position: absolute;
  right: 0;
  top: 2px;
  width: 5px;
  height: 5px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  border-radius: 1px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(440px, 0.75fr) minmax(620px, 1.25fr);
  min-height: 442px;
  padding-left: max(28px, calc((100vw - var(--max)) / 2));
  background:
    radial-gradient(circle at 36% 52%, rgba(255, 185, 0, 0.08), transparent 28rem),
    linear-gradient(90deg, #080a0c 0%, #0b0d10 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  overflow: visible;
}

.hero-copy {
  align-self: center;
  max-width: 506px;
  padding: 28px 30px 26px 0;
}

.eyebrow {
  margin: 0 0 11px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 470px;
  font-size: clamp(40px, 3.75vw, 46px);
  font-weight: 900;
  line-height: 1.03;
}

.hero h1 span {
  color: var(--gold);
}

.hero-copy > p:not(.eyebrow) {
  max-width: 430px;
  margin: 16px 0 18px;
  color: var(--muted);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 29px;
  margin-bottom: 22px;
}

.primary-button {
  min-width: 196px;
  height: 45px;
  color: #07090b;
  background: var(--gold);
  border: 1px solid var(--gold);
  box-shadow: 0 0 20px rgba(255, 185, 0, 0.12);
  font-size: 14px;
}

.primary-button:hover {
  background: #ffc93b;
}

.phone-button {
  min-width: 196px;
  height: 45px;
  color: #f2f2f2;
  border: 1px solid rgba(255, 255, 255, 0.74);
  font-size: 14px;
  letter-spacing: 0.2px;
}

.trust-row {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #fff;
  font-size: 12px;
  line-height: 1.25;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.mini-icon {
  width: 23px;
  height: 23px;
  color: var(--gold);
}

.mini-svg,
.card-svg {
  display: block;
  color: var(--gold);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.mini-svg {
  width: 24px;
  height: 24px;
  stroke-width: 2.1;
}

.shield-icon::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 1px;
  width: 16px;
  height: 18px;
  border: 2px solid currentColor;
  border-radius: 7px 7px 9px 9px;
  clip-path: polygon(50% 0, 100% 22%, 87% 100%, 50% 100%, 13% 100%, 0 22%);
}

.shield-icon::after {
  content: "";
  position: absolute;
  left: 10px;
  top: 6px;
  width: 4px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
}

.headset-icon::before {
  content: "";
  position: absolute;
  inset: 2px 3px 7px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 12px 12px 0 0;
}

.headset-icon::after {
  content: "";
  position: absolute;
  left: 2px;
  top: 10px;
  width: 5px;
  height: 8px;
  border: 2px solid currentColor;
  border-radius: 4px;
  box-shadow: 14px 0 0 -2px #07090b, 14px 0 0 0 currentColor;
}

.target-icon::before {
  content: "";
  position: absolute;
  inset: 1px;
  border: 2px solid currentColor;
  border-radius: 50%;
  box-shadow: inset 0 0 0 5px #07090b, inset 0 0 0 7px currentColor;
}

.target-icon::after {
  content: "";
  position: absolute;
  right: -3px;
  top: -3px;
  width: 10px;
  height: 10px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.hero-image {
  min-width: 0;
}

.hero-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.solutions {
  padding: 14px max(28px, calc((100vw - var(--max)) / 2)) 13px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 185, 0, 0.05), transparent 24rem),
    linear-gradient(180deg, #0c0f12, #080a0c);
}

.section-title {
  margin-bottom: 13px;
  text-align: center;
}

.section-title .eyebrow {
  margin-bottom: 2px;
  font-size: 12px;
}

.section-title h2 {
  margin: 0;
  font-size: 25px;
  line-height: 1.18;
}

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

.solution-card {
  height: 151px;
  padding: 15px 18px 14px;
  text-align: center;
  background:
    linear-gradient(145deg, rgba(22, 24, 28, 0.98), rgba(11, 13, 16, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 6px;
  box-shadow: inset 0 0 24px rgba(255, 255, 255, 0.015);
}

.card-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 8px;
  color: var(--gold);
}

.card-svg {
  width: 45px;
  height: 45px;
  margin: 0 auto 9px;
  stroke-width: 1.8;
}

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

.chart-screen-icon::before {
  inset: 5px 5px 13px;
  border: 3px solid currentColor;
}

.chart-screen-icon::after {
  left: 12px;
  right: 12px;
  bottom: 3px;
  height: 12px;
  border-top: 3px solid currentColor;
  border-left: 3px solid currentColor;
  border-right: 3px solid currentColor;
}

.chart-screen-icon {
  background:
    linear-gradient(135deg, transparent 40%, currentColor 41% 46%, transparent 47%) 14px 18px / 22px 12px no-repeat;
}

.money-icon::before {
  inset: 3px;
  border: 3px solid currentColor;
  border-radius: 50%;
}

.money-icon::after {
  content: "$";
  inset: 6px 0 auto;
  color: currentColor;
  font-size: 29px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
}

.doc-icon::before {
  inset: 4px 9px;
  border: 3px solid currentColor;
  border-radius: 2px;
}

.doc-icon::after {
  left: 16px;
  right: 14px;
  top: 16px;
  height: 17px;
  border-top: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
}

.growth-icon::before {
  left: 6px;
  right: 3px;
  top: 6px;
  height: 18px;
  border-left: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  transform: skewY(-25deg);
}

.growth-icon::after {
  left: 7px;
  right: 3px;
  bottom: 5px;
  height: 24px;
  background:
    linear-gradient(currentColor, currentColor) 4px 14px / 5px 10px no-repeat,
    linear-gradient(currentColor, currentColor) 17px 9px / 5px 15px no-repeat,
    linear-gradient(currentColor, currentColor) 30px 3px / 5px 21px no-repeat;
}

.users-icon::before {
  left: 9px;
  top: 4px;
  width: 15px;
  height: 15px;
  border: 3px solid currentColor;
  border-radius: 50%;
  box-shadow: 17px 5px 0 -3px #101216, 17px 5px 0 0 currentColor;
}

.users-icon::after {
  left: 3px;
  bottom: 5px;
  width: 25px;
  height: 14px;
  border: 3px solid currentColor;
  border-radius: 18px 18px 0 0;
  border-bottom: 0;
  box-shadow: 17px 3px 0 -3px #101216, 17px 3px 0 0 currentColor;
}

.solution-card h3 {
  margin: 0 0 6px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.solution-card p {
  max-width: 195px;
  margin: 0 auto;
  color: #d7d7d7;
  font-size: 13px;
}

.contact-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  gap: 0;
  min-height: 82px;
  margin: 0 max(28px, calc((100vw - var(--max)) / 2)) 14px;
  padding: 0 54px;
  background: rgba(11, 13, 16, 0.96);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: 60px;
  color: #fff;
}

.contact-item + .contact-item {
  border-left: 1px solid rgba(255, 255, 255, 0.42);
}

.contact-icon {
  width: 39px;
  height: 39px;
  color: var(--gold);
}

.contact-item strong {
  display: block;
  color: #a9a9a9;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.contact-item em {
  display: block;
  color: #f5f5f5;
  font-size: 16px;
  font-style: normal;
  word-break: break-word;
}

.contact-item:hover em {
  color: var(--gold);
}

.mail-icon::before {
  inset: 8px 3px;
  border: 3px solid currentColor;
  border-radius: 2px;
}

.mail-icon::after {
  left: 4px;
  right: 4px;
  top: 12px;
  height: 15px;
  border-left: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  transform: rotate(-45deg);
}

.phone-line-icon::before {
  width: 25px;
  height: 25px;
  left: 5px;
  top: 7px;
  border-width: 3px;
}

.phone-line-icon::after {
  right: 3px;
  top: 5px;
  width: 11px;
  height: 11px;
  border-width: 3px;
}

.phone-icon::before,
.phone-line-icon::before {
  content: "☎";
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 0;
  font-size: 20px;
  line-height: 1;
  transform: none;
}

.phone-line-icon::before {
  font-size: 38px;
}

.phone-icon::after,
.phone-line-icon::after {
  display: none;
}

.whatsapp-line-icon::before {
  inset: 3px;
  border-width: 3px;
}

.whatsapp-line-icon::after {
  left: 22px;
  bottom: 2px;
  width: 10px;
  height: 11px;
  border-width: 3px;
}

.site-footer {
  display: grid;
  grid-template-columns: 360px 1fr 360px;
  align-items: center;
  min-height: 68px;
  padding: 10px max(28px, calc((100vw - var(--max)) / 2));
  color: #8c8f94;
  background: #07090b;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer img {
  width: 250px;
  height: auto;
}

@media (min-width: 1500px) {
  .hero {
    min-height: 472px;
  }

  .hero-copy {
    padding-top: 42px;
    padding-bottom: 38px;
  }
}

.site-footer p {
  margin: 0;
  text-align: center;
  font-size: 14px;
}

@media (max-width: 1140px) {
  .site-header {
    grid-template-columns: 1fr;
    height: auto;
    gap: 12px;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .logo-link {
    justify-self: center;
    width: 390px;
  }

  .main-nav {
    justify-content: center;
    gap: clamp(18px, 5vw, 37px);
  }

  .main-nav a {
    padding: 8px 0 13px;
  }

  .main-nav a::after {
    bottom: 5px;
  }

  .header-cta {
    justify-self: center;
  }

  .hero {
    grid-template-columns: 1fr;
    height: auto;
    padding: 0;
  }

  .hero-copy {
    justify-self: center;
    max-width: 660px;
    padding: 48px 28px 34px;
    text-align: center;
  }

  .hero h1,
  .hero-copy > p:not(.eyebrow) {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-actions,
  .trust-row {
    justify-content: center;
  }

  .hero-image {
    height: 390px;
  }

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

  .solution-card {
    height: auto;
    min-height: 151px;
  }

  .contact-band {
    grid-template-columns: 1fr;
    padding: 12px 30px;
  }

  .contact-item {
    justify-content: flex-start;
  }

  .contact-item + .contact-item {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.28);
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 8px;
    padding-top: 12px;
    padding-bottom: 13px;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding-right: 18px;
    padding-left: 18px;
  }

  .logo-link {
    width: min(100%, 350px);
  }

  .main-nav {
    width: 100%;
    justify-content: flex-start;
    gap: 22px;
    overflow-x: auto;
    font-size: 12px;
  }

  .header-cta {
    width: 100%;
  }

  .hero-copy {
    padding: 39px 18px 30px;
  }

  .hero h1 {
    font-size: clamp(34px, 11vw, 44px);
  }

  .hero-copy > p:not(.eyebrow) {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }

  .primary-button,
  .phone-button {
    width: 100%;
    max-width: 300px;
  }

  .trust-row {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .hero-image {
    height: 270px;
  }

  .solutions {
    padding-right: 18px;
    padding-left: 18px;
  }

  .section-title h2 {
    font-size: 24px;
  }

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

  .contact-band {
    margin-right: 18px;
    margin-left: 18px;
    padding: 10px 20px;
  }

  .contact-item {
    gap: 15px;
    min-width: 0;
  }

  .contact-item em {
    font-size: 14px;
  }

  .site-footer img {
    width: min(100%, 250px);
  }
}
