* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #050505;
  color: #ffffff;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(5, 5, 5, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #1d1d1d;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 7%;
}

.nav-logo {
  width: 150px;
}

nav {
  display: flex;
  gap: 28px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

nav a {
  color: #d8d8d8;
}

.hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 7%;
  background:
    radial-gradient(circle at center, rgba(201,162,39,0.15), transparent 45%),
    linear-gradient(180deg, #080808, #030303);
}

.hero-logo {
  width: min(560px, 90%);
  margin-bottom: 35px;
}

.hero h1 {
  max-width: 900px;
  font-size: clamp(38px, 6vw, 76px);
  line-height: 1;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: -2px;
}

.hero p {
  max-width: 760px;
  color: #cfcfcf;
  font-size: 19px;
  line-height: 1.7;
  margin: 28px auto;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  display: inline-block;
  padding: 15px 28px;
  border-radius: 4px;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
}

.btn.gold {
  background: linear-gradient(135deg, #a9782b, #fff08a, #a9782b);
  color: #050505;
}

.btn.dark {
  border: 1px solid #9f7a2b;
  color: #f1d878;
}

.section {
  padding: 100px 7%;
  border-top: 1px solid #161616;
}

.eyebrow {
  color: #d6b45c;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 13px;
  font-weight: bold;
}

.section h2 {
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.05;
  margin: 10px 0 40px;
  text-transform: uppercase;
}

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

.card {
  background: #101010;
  border: 1px solid #242424;
  padding: 30px;
  min-height: 230px;
}

.card h3,
.steps h3 {
  color: #f2d677;
  text-transform: uppercase;
}

.card p,
.steps p,
.split p,
.contact p {
  color: #c8c8c8;
  line-height: 1.7;
}

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

.steps div {
  padding: 25px;
  border-left: 1px solid #9f7a2b;
}

.steps span {
  color: #d6b45c;
  font-size: 28px;
  font-weight: 900;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.contact {
  text-align: center;
  background: radial-gradient(circle at center, rgba(201,162,39,0.13), transparent 45%);
}

.license {
  margin-top: 35px;
  font-size: 14px;
  color: #b7b7b7;
}

footer {
  text-align: center;
  padding: 30px;
  color: #888;
  border-top: 1px solid #161616;
}

@media (max-width: 900px) {
  .site-header {
    flex-direction: column;
    gap: 18px;
  }

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

  nav {
    gap: 16px;
    font-size: 11px;
  }
}
.quick-contact{
    margin-top:35px;
    display:flex;
    gap:14px;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    color:#d7d7d7;
    font-size:15px;
}

.quick-contact a{
    color:#f2d677;
    transition:0.3s ease;
}

.quick-contact a:hover{
    color:white;
}
.trust-badge{
    width:180px;
    max-width:60%;
    margin-top:35px;
    filter:drop-shadow(0 0 20px rgba(214,180,92,0.25));
}
