:root {
  --bg: #070a0f;
  --dark: #090d13;
  --panel: #10151e;
  --text: #ffffff;
  --muted: #cfd3da;
  --gold: #d4a324;
  --gold-soft: #f3c85b;
  --blue: #015a85;
  --line: rgba(255,255,255,0.18);
  --shadow: 0 24px 60px rgba(0,0,0,0.45);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
}
img { display: block; max-width: 100%; }
a { color: inherit; }

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  padding: 28px clamp(20px, 4vw, 64px);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.brand img {
  width: clamp(180px, 22vw, 320px);
  height: auto;
}

.nav-menu {
  display: flex;
  gap: clamp(1.4rem, 3vw, 3.5rem);
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.9rem;
  font-weight: 700;
}

.nav-menu a {
  text-decoration: none;
  color: white;
  padding-bottom: 0.55rem;
}

.nav-menu a.active,
.nav-menu a:hover {
  color: var(--gold-soft);
  border-bottom: 2px solid var(--gold);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  background: rgba(0,0,0,0.45);
  border-radius: 8px;
  padding: 10px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: #fff;
}

.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: stretch;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 0;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.52) 0%, rgba(0,0,0,0.24) 42%, rgba(0,0,0,0.05) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.06) 0%, rgba(0,0,0,0.18) 55%, rgba(0,0,0,0.72) 100%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(720px, 48vw);
  margin-left: clamp(24px, 4.3vw, 70px);
  padding-top: clamp(185px, 20vh, 250px);
  padding-bottom: 150px;
}

.hero-label {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: clamp(0.82rem, 1.35vw, 1.15rem);
  font-weight: 700;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
  margin: 0 0 1.15rem;
}

.hero-label span {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

h1 {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.035em;
  line-height: 0.98;
  font-size: clamp(3.1rem, 6.5vw, 7rem);
  font-weight: 900;
}

h1 strong,
h1 em {
  display: block;
  font-style: normal;
}

h1 em {
  color: var(--gold);
}

.hero-copy {
  max-width: 540px;
  color: #f2f2f2;
  font-size: clamp(1rem, 1.5vw, 1.28rem);
  margin: 1.6rem 0 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  min-height: 56px;
  padding: 0.95rem 2rem;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.07em;
  border-radius: 0;
  transition: transform 160ms ease, background 160ms ease;
}

.btn:hover { transform: translateY(-1px); }
.btn-outline {
  border: 2px solid var(--gold);
  color: var(--gold-soft);
  background: rgba(0,0,0,0.28);
}
.btn-dark { background: #070707; color: var(--gold-soft); }
.btn-blue { background: linear-gradient(135deg, #014867, #026898); color: #fff; }

.trust-bar {
  position: absolute;
  z-index: 3;
  left: clamp(24px, 5vw, 80px);
  right: clamp(24px, 5vw, 80px);
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(6,8,12,0.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.trust-bar article {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 1.1rem;
  padding: 1.5rem 1.4rem;
  border-right: 1px solid var(--line);
}
.trust-bar article:last-child { border-right: none; }
.trust-bar .icon {
  color: var(--gold);
  font-size: 2rem;
  line-height: 1;
}
.trust-bar strong {
  display: block;
  text-transform: uppercase;
  font-size: 0.86rem;
  letter-spacing: 0.05em;
}
.trust-bar p {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.services-action {
  min-height: 720px;
  position: relative;
  overflow: hidden;
  display: grid;
  align-items: center;
  background: #05070a;
}
.services-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.services-action-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.98) 0%, rgba(0,0,0,0.86) 31%, rgba(0,0,0,0.45) 62%, rgba(0,0,0,0.16) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.18), rgba(0,0,0,0.48));
}
.services-action-content {
  position: relative;
  z-index: 2;
  padding: clamp(3rem, 6vw, 6rem) clamp(24px, 5vw, 72px);
}
.services-list-panel {
  max-width: 650px;
}
.services-list-panel h2 {
  margin: 0;
  text-transform: uppercase;
  font-size: clamp(3rem, 5.8vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: 0.04em;
}
.services-list-panel h2 span { color: #fff; }
.services-list-panel h2 { color: var(--gold); }
.services-star-line {
  width: 100%;
  max-width: 560px;
  height: 2px;
  margin: 1.55rem 0 1.8rem;
  background: linear-gradient(90deg, var(--gold), rgba(212,163,36,0.15), transparent);
  position: relative;
}
.services-star-line::before {
  content: '✦';
  color: var(--gold-soft);
  position: absolute;
  left: 0;
  top: -18px;
  font-size: 1.4rem;
  text-shadow: 0 0 18px rgba(243,200,91,0.9);
}
.services-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.services-list li {
  display: grid;
  grid-template-columns: 72px 1fr;
  align-items: center;
  gap: 1.2rem;
  min-height: 74px;
  border-bottom: 1px solid rgba(255,255,255,0.18);
  font-size: clamp(1.3rem, 2.1vw, 2.05rem);
  letter-spacing: 0.02em;
  color: #fff;
}
.services-list li span {
  color: var(--gold);
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  line-height: 1;
  text-align: center;
}

.solutions {
  padding: clamp(2.8rem, 5vw, 5rem) clamp(24px, 6vw, 96px);
  background: #f5f5f3;
  color: #111;
}
.solutions-copy { max-width: 850px; margin: 0 auto; }
.solutions h2,
.why h2,
.gallery h2,
.contact h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: 0.02em;
}
.solutions p {
  max-width: 760px;
  font-size: 1.04rem;
}
.gold-line {
  width: min(380px, 70%);
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 1rem 0 1.2rem;
  position: relative;
}
.gold-line::before {
  content: '✦';
  position: absolute;
  left: -4px;
  top: -14px;
  color: var(--gold);
}
.gold-line.center { margin-inline: auto; }

.check-list { list-style: none; padding: 0; margin: 1rem 0 1.5rem; }
.check-list li::before { content: '✓'; color: var(--gold); font-weight: 900; margin-right: 0.65rem; }

.why {
  background: #080b10;
  padding: clamp(3rem, 5vw, 5rem) clamp(20px, 4vw, 64px);
  text-align: center;
}
.why h2 { text-transform: uppercase; }
.why h2 span { color: var(--gold); }
.why-grid {
  margin-top: 2.3rem;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0;
}
.why-grid article {
  padding: 0 1.2rem;
  border-right: 1px solid var(--line);
}
.why-grid article:last-child { border-right: none; }
.why-grid span {
  color: var(--gold);
  font-size: 2.5rem;
  display: block;
  margin-bottom: 1rem;
}
.why-grid h3 {
  text-transform: uppercase;
  text-decoration: underline;
  font-size: 1rem;
  line-height: 1.25;
}
.why-grid p { color: var(--muted); font-size: 0.95rem; }

.gallery {
  padding: clamp(3rem, 5vw, 5rem) clamp(20px, 4vw, 64px);
  background: #f7f7f4;
  color: #111;
  text-align: center;
}
.gallery-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.gallery-grid figure {
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,0.16);
  background: #111;
}
.gallery-grid img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.real-gallery { grid-template-columns: 1.4fr 1fr 1fr; }
.real-gallery .wide img { aspect-ratio: 16 / 9; }
.logo-tile { display: grid; place-items: center; background: #05070a !important; padding: 1.5rem; }
.logo-tile img { object-fit: contain; aspect-ratio: 16 / 10; }

.contact {
  padding: clamp(3rem, 5vw, 5rem) clamp(20px, 4vw, 64px);
  background: #f5f5f3;
  color: #111;
  text-align: center;
}
.contact-logo {
  width: min(420px, 86vw);
  margin: 0 auto 1.5rem;
  background: #05070a;
  padding: 1rem;
  border-radius: 8px;
}
.contact p { max-width: 680px; margin: 1rem auto 1.8rem; }

.site-footer {
  background: #06080c;
  color: var(--muted);
  text-align: center;
  padding: 2rem 1rem;
}
.site-footer strong { color: #fff; }
.site-footer a { color: var(--gold-soft); text-decoration: none; }
.copyright { color: #7f8795; font-size: 0.85rem; }

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

@media (max-width: 1100px) {
  .hero-inner { width: min(650px, 60vw); }
  .trust-bar { grid-template-columns: repeat(2, 1fr); }
  .trust-bar article { border-bottom: 1px solid var(--line); }
  .why-grid { grid-template-columns: repeat(3, 1fr); row-gap: 2rem; }
  .why-grid article { border-right: none; }
  .real-gallery { grid-template-columns: 1fr 1fr; }
  .real-gallery .wide { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .site-header { position: absolute; padding: 18px 18px; }
  .brand img { width: 190px; }
  .nav-toggle { display: flex; }
  .nav-menu {
    position: absolute;
    top: 72px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(4,6,10,0.96);
    border: 1px solid var(--line);
  }
  .nav-menu.open { display: flex; }
  .hero { min-height: 96vh; }
  .hero-bg { object-position: 68% top; }
  .hero-shade { background: linear-gradient(90deg, rgba(0,0,0,0.76), rgba(0,0,0,0.25)), linear-gradient(180deg, rgba(0,0,0,0.08), rgba(0,0,0,0.72)); }
  .hero-inner { width: auto; margin: 0 18px; padding-top: 138px; padding-bottom: 285px; }
  h1 { font-size: clamp(2.65rem, 14vw, 4.4rem); }
  .hero-copy { font-size: 1rem; max-width: 92%; }
  .trust-bar { left: 0; right: 0; grid-template-columns: 1fr; max-height: 285px; overflow: auto; }
  .trust-bar article { padding: 1rem 1.2rem; border-right: none; }
  .services-action { min-height: 820px; align-items: end; }
  .services-bg { object-position: 72% center; }
  .services-action-shade { background: linear-gradient(90deg, rgba(0,0,0,0.92), rgba(0,0,0,0.32)), linear-gradient(180deg, rgba(0,0,0,0.15), rgba(0,0,0,0.92)); }
  .services-action-content { padding: 5rem 20px 2.5rem; }
  .services-list-panel h2 { font-size: clamp(2.6rem, 16vw, 4.4rem); }
  .services-list li { grid-template-columns: 46px 1fr; min-height: 58px; font-size: 1.05rem; gap: 0.8rem; }
  .services-list li span { font-size: 1.75rem; }
  .why-grid { grid-template-columns: 1fr; }
  .why-grid article { border-bottom: 1px solid var(--line); padding: 1.4rem 0; }
  .gallery-grid, .real-gallery { grid-template-columns: 1fr; }
  .real-gallery .wide { grid-column: auto; }
}
