:root {
  --bg: #070b14;
  --bg-2: #0c1322;
  --bg-3: #121b2e;
  --navy: #0b1220;
  --gold: #e89a12;
  --gold-2: #f3b84a;
  --gold-dim: rgba(232, 154, 18, 0.14);
  --text: #f4f1ea;
  --muted: #b7c0d1;
  --line: rgba(243, 184, 74, 0.16);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  --radius: 18px;
  --max: 1120px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.skip {
  position: absolute; left: -999px; top: 0;
}
.skip:focus { left: 16px; background: var(--gold); color: #111; padding: 8px 12px; z-index: 99; }

.container { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }

.nav {
  position: sticky; top: 0; z-index: 40;
  background: rgba(7, 11, 20, 0.82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex; align-items: center; gap: 20px;
  min-height: 72px;
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand-mark { width: 36px; height: 36px; }
.brand-mark svg { width: 100%; height: 100%; }
.brand-word {
  font-weight: 800; font-size: 1.25rem; letter-spacing: -0.03em;
}
.brand-word span { color: var(--gold); }
.nav-links { display: flex; gap: 22px; margin-left: auto; }
.nav-links a {
  text-decoration: none; color: var(--muted); font-size: 0.92rem; font-weight: 500;
}
.nav-links a:hover { color: var(--text); }
.nav-cta { margin-left: 8px; }
.menu-btn {
  display: none; margin-left: auto;
  width: 42px; height: 42px;
  border: 1px solid var(--line); background: transparent; border-radius: 10px;
  cursor: pointer;
}
.menu-btn span {
  display: block; height: 2px; width: 18px; background: var(--text);
  margin: 5px auto; border-radius: 2px;
}

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  text-decoration: none; font-weight: 700; border-radius: 999px;
  padding: 10px 18px; border: 1px solid transparent;
  transition: transform .15s ease, background .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-gold { background: var(--gold); color: #1a1204; }
.btn-gold:hover { background: var(--gold-2); }
.btn-ghost { border-color: var(--line); color: var(--text); background: rgba(255,255,255,0.03); }
.btn-lg { padding: 14px 22px; }
.btn-block { width: 100%; }

.hero {
  position: relative; min-height: min(88vh, 820px);
  display: grid; align-items: end;
  overflow: hidden;
}
.hero-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: 30% center;
}
.hero-shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(7,11,20,0.25) 0%, rgba(7,11,20,0.55) 45%, rgba(7,11,20,0.96) 100%),
    linear-gradient(90deg, rgba(7,11,20,0.55) 0%, rgba(7,11,20,0.15) 55%);
}
.hero-copy { position: relative; z-index: 1; padding: 120px 0 64px; }
.eyebrow {
  display: inline-block;
  color: var(--gold-2);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.72rem;
  margin-bottom: 14px;
}
h1 {
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  max-width: 16ch;
  margin-bottom: 18px;
}
.lead {
  max-width: 58ch;
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 28px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }
.trust-row {
  display: flex; flex-wrap: wrap; gap: 10px 18px;
  list-style: none; color: #d5dbe8; font-size: 0.88rem;
}
.trust-row li { position: relative; padding-left: 14px; }
.trust-row li::before {
  content: ""; position: absolute; left: 0; top: 0.55em;
  width: 6px; height: 6px; border-radius: 50%; background: var(--gold);
}

.section { padding: 88px 0; }
.section-alt { background: var(--bg-2); }
.section-head { max-width: 640px; margin-bottom: 40px; }
.section-head h2, .split h2, .contact-box h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 12px;
}
.section-head p, .prose { color: var(--muted); }
.prose { margin-bottom: 14px; }

.service-grid, .b2b-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.b2b-grid { grid-template-columns: repeat(4, 1fr); }
.card {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 20px 24px;
}
.card .icon { font-size: 1.5rem; margin-bottom: 12px; }
.card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 0.92rem; }

.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.steps li {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 22px;
}
.step-num {
  display: block;
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.steps h3 { margin-bottom: 8px; }
.steps p { color: var(--muted); font-size: 0.94rem; }

.split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
  align-items: start;
}
.pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.pills span {
  border: 1px solid var(--line);
  background: var(--gold-dim);
  color: var(--gold-2);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.85rem;
  font-weight: 600;
}
.panel {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
}
.panel h3 { margin-bottom: 8px; }
.status {
  color: var(--gold-2);
  font-weight: 800;
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.panel-photo img {
  border-radius: 14px;
  margin-bottom: 14px;
  object-fit: cover;
  height: 210px;
  width: 100%;
}
.center-note { text-align: center; color: var(--muted); margin-top: 28px; }

.section-cta { padding-bottom: 100px; }
.contact-box {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  background: linear-gradient(180deg, var(--bg-3), #101827);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 40px;
}
.details { margin: 22px 0; }
.details div { margin-bottom: 14px; }
.details dt { font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold-2); }
.details dd a { color: var(--text); }
.socials { display: flex; gap: 16px; }
.socials a { color: var(--muted); font-weight: 600; text-decoration: none; }
.socials a:hover { color: var(--gold-2); }
.cta-card {
  background: rgba(232, 154, 18, 0.08);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px;
}
.cta-card h3 { margin-bottom: 10px; }
.cta-card p { color: var(--muted); margin-bottom: 18px; }
.fine { font-size: 0.8rem; opacity: 0.8; margin-top: 12px; }

.footer {
  border-top: 1px solid var(--line);
  padding: 28px 0 40px;
  color: var(--muted);
  font-size: 0.9rem;
}
.footer-inner { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }

.float-wa {
  position: fixed; right: 18px; bottom: 18px;
  width: 56px; height: 56px;
  background: #25D366; color: #fff;
  border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35);
  z-index: 50;
}
.float-wa svg { width: 28px; height: 28px; }

@media (max-width: 980px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .b2b-grid, .steps { grid-template-columns: repeat(2, 1fr); }
  .split, .contact-box { grid-template-columns: 1fr; }
  .nav-links, .nav-cta { display: none; }
  .menu-btn { display: block; }
  .nav.open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute; left: 0; right: 0; top: 72px;
    background: #0a1220;
    border-bottom: 1px solid var(--line);
    padding: 16px 20px 20px;
  }
  .nav.open .nav-cta {
    display: inline-flex;
    position: absolute; top: 280px; left: 20px;
  }
}

@media (max-width: 560px) {
  .service-grid, .b2b-grid, .steps { grid-template-columns: 1fr; }
  .hero-copy { padding-top: 96px; }
  .contact-box { padding: 24px; }
}
