* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --gold: #d6a04e;
  --white: #ffffff;
  --soft-white: rgba(255,255,255,.86);
  --dark: #020812;
}

html,
body {
  min-height: 100%;
}

body {
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  color: var(--white);
  background: var(--dark);
  overflow-x: hidden;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(1, 7, 16, .94) 0%, rgba(1, 7, 16, .80) 35%, rgba(1, 7, 16, .18) 72%, rgba(1, 7, 16, .05) 100%),
    linear-gradient(0deg, rgba(1, 7, 16, .60), rgba(1, 7, 16, .16)),
    url("assets/BackGround.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  isolation: isolate;
}

.technical-lines {
  position: absolute;
  inset: 0 auto 0 0;
  width: 42%;
  opacity: .42;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0 20%, rgba(214,160,78,.28) 20.2%, transparent 20.5%),
    linear-gradient(130deg, transparent 0 32%, rgba(255,255,255,.14) 32.2%, transparent 32.4%),
    linear-gradient(95deg, transparent 0 52%, rgba(214,160,78,.22) 52.1%, transparent 52.3%),
    repeating-linear-gradient(90deg, rgba(255,255,255,.10) 0 1px, transparent 1px 72px),
    repeating-linear-gradient(0deg, rgba(255,255,255,.06) 0 1px, transparent 1px 78px);
  mask-image: linear-gradient(90deg, black 0%, transparent 100%);
}

.content {
  position: relative;
  z-index: 1;
  width: min(930px, 62vw);
  padding: 52px 0 46px 7vw;
  text-align: center;
}

.logo {
  width: clamp(170px, 15vw, 270px);
  height: auto;
  margin-bottom: clamp(36px, 5vh, 70px);
  filter: drop-shadow(0 12px 28px rgba(0,0,0,.70));
}

.eyebrow {
  color: rgba(255,255,255,.88);
  font-size: clamp(14px, 1.35vw, 21px);
  letter-spacing: clamp(4px, .65vw, 10px);
  font-weight: 300;
  margin-bottom: 24px;
}

.eyebrow span {
  color: var(--gold);
  font-weight: 700;
}

h1 {
  font-size: clamp(54px, 8.6vw, 126px);
  line-height: .9;
  font-weight: 900;
  letter-spacing: 2px;
  text-shadow: 0 12px 34px rgba(0,0,0,.72);
  margin-bottom: 30px;
}

.gold-line {
  width: 92px;
  height: 3px;
  background: var(--gold);
  margin: 0 auto 34px;
  box-shadow: 0 0 18px rgba(214,160,78,.40);
}

h2 {
  font-size: clamp(22px, 2.05vw, 34px);
  font-weight: 400;
  margin-bottom: 22px;
  text-shadow: 0 6px 20px rgba(0,0,0,.65);
}

.description {
  max-width: 700px;
  margin: 0 auto 44px;
  color: var(--soft-white);
  font-size: clamp(16px, 1.45vw, 23px);
  line-height: 1.62;
  text-shadow: 0 5px 18px rgba(0,0,0,.70);
}

.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 820px;
  margin: 0 auto 42px;
}

.service {
  padding: 16px 26px 8px;
  min-height: 145px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(214,160,78,.48);
}

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

.icon {
  color: var(--gold);
  font-size: clamp(36px, 3.2vw, 52px);
  line-height: 1;
  margin-bottom: 18px;
  text-shadow: 0 0 18px rgba(214,160,78,.22);
}

.service h3 {
  font-size: clamp(15px, 1.25vw, 21px);
  font-weight: 400;
  letter-spacing: 1.8px;
  line-height: 1.35;
}

footer {
  color: rgba(255,255,255,.88);
}

footer p {
  font-size: clamp(13px, 1.1vw, 18px);
  letter-spacing: clamp(3px, .43vw, 7px);
  margin-bottom: 20px;
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  color: var(--gold);
}

.social {
  font-size: clamp(26px, 2.5vw, 42px);
  font-weight: 700;
  line-height: 1;
}

.separator {
  width: 1px;
  height: 42px;
  background: var(--gold);
  opacity: .8;
}

a {
  color: var(--gold);
  text-decoration: none;
  font-size: clamp(20px, 2vw, 34px);
  letter-spacing: 1px;
}

@media (max-width: 980px) {
  .hero {
    align-items: flex-start;
    background:
      linear-gradient(180deg, rgba(1, 7, 16, .88) 0%, rgba(1, 7, 16, .62) 45%, rgba(1, 7, 16, .22) 100%),
      url("assets/BackGround.png");
    background-size: cover;
    background-position: 62% center;
  }

  .technical-lines {
    width: 100%;
    opacity: .24;
  }

  .content {
    width: 100%;
    padding: 42px 24px 34px;
  }

  .services {
    grid-template-columns: 1fr;
    max-width: 390px;
    gap: 0;
    background: rgba(0,0,0,.32);
    border: 1px solid rgba(214,160,78,.22);
    border-radius: 18px;
    overflow: hidden;
    backdrop-filter: blur(6px);
  }

  .service {
    border-right: none;
    border-bottom: 1px solid rgba(214,160,78,.35);
  }

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

  .footer-row {
    gap: 20px;
    flex-wrap: wrap;
  }
}

@media (max-width: 520px) {
  .hero {
    background-position: 68% center;
  }

  h1 {
    font-size: clamp(46px, 15vw, 72px);
  }

  .eyebrow {
    line-height: 1.8;
  }

  .description {
    line-height: 1.5;
  }

  .footer-row {
    flex-direction: row;
  }

  .separator {
    display: none;
  }

  a {
    width: 100%;
  }
}
