:root {
  --bg:#13253f; --surface:rgba(255,255,255,0.05); --surface-2:rgba(255,255,255,0.085);
  --border:rgba(255,255,255,0.12); --border-2:rgba(255,255,255,0.20);
  --navy:#0a3a5e; --gold:#d4b066; --gold-2:#e7cd90; --blue:#3b9eff; --blue-2:#1f6db5;
  --text:#eaf1f8; --mute:#9fb2c5; --ink:#11202e;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; padding: 0 0 84px; background: var(--bg); color: var(--text);
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  -webkit-font-smoothing: antialiased; line-height: 1.6; overflow-x: hidden; }
a { color: inherit; }
.wrap { position: relative; z-index: 1; }
body::before { content:""; position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(760px 480px at 82% -6%, rgba(212,176,102,0.16), transparent 60%),
    radial-gradient(680px 520px at 6% 10%, rgba(59,158,255,0.13), transparent 58%); }
.grid-bg { position: fixed; inset: 0; z-index: 0; pointer-events: none; opacity: 0.5;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(1000px 620px at 50% 0%, #000 30%, transparent 78%);
  -webkit-mask-image: radial-gradient(1000px 620px at 50% 0%, #000 30%, transparent 78%); }

/* Header */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(19,37,63,0.82); border-bottom: 1px solid var(--border); }
.hwrap { max-width: 1160px; margin: 0 auto; padding: 14px 32px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand img { height: 38px; width: auto; display: block; filter: drop-shadow(0 1px 6px rgba(0,0,0,0.4)); }
nav.mainnav { display: flex; align-items: center; gap: 4px; }
nav.mainnav a { font-size: 14px; font-weight: 600; color: #cdd9e4; text-decoration: none; padding: 9px 14px; border-radius: 8px; transition: background .15s, color .15s; }
nav.mainnav a:hover { background: var(--surface-2); color: #fff; }
.cta { font-size: 14px; font-weight: 700; color: var(--ink); text-decoration: none; padding: 10px 18px; border-radius: 9px; white-space: nowrap;
  background: linear-gradient(135deg, var(--gold-2), var(--gold)); box-shadow: 0 4px 16px rgba(212,176,102,0.25); transition: transform .12s, box-shadow .12s; }
.cta:hover { transform: translateY(-1px); box-shadow: 0 8px 22px rgba(212,176,102,0.35); }

/* Service hero */
.svc-hero { max-width: 860px; margin: 0 auto; padding: 54px 32px 20px; }
.back { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 600; color: var(--mute); text-decoration: none; margin-bottom: 26px; }
.back:hover { color: #fff; }
.svc-hero .eyebrow { font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.4px; color: var(--blue); margin-bottom: 14px; }
.svc-hero h1 { font-weight: 800; font-size: 46px; line-height: 1.06; letter-spacing: -1.4px; margin: 0 0 20px; color: #fff; }
.svc-hero .lead { font-size: 18px; line-height: 1.7; color: #c4d2df; margin: 0; }

main { max-width: 860px; margin: 0 auto; padding: 0 32px; }
.block { padding: 46px 0; border-top: 1px solid var(--border); }
.block:first-child { border-top: none; }
.block h2 { font-weight: 800; font-size: 26px; color: #fff; margin: 0 0 8px; letter-spacing: -0.5px; }
.block .sub { color: var(--mute); font-size: 15.5px; margin: 0 0 26px; line-height: 1.7; }
.block > p { color: #c4d2df; font-size: 16px; line-height: 1.75; }

.feature-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.feature { display: flex; gap: 14px; background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 18px 20px; }
.feature .ic { flex-shrink: 0; width: 28px; height: 28px; border-radius: 8px; display:flex; align-items:center; justify-content:center;
  background: linear-gradient(135deg, var(--gold-2), var(--gold)); color: var(--bg); }
.feature .ic svg { width: 16px; height: 16px; }
.feature strong { color: #fff; font-weight: 700; display: block; font-size: 15px; margin-bottom: 3px; }
.feature span { color: var(--mute); font-size: 13.5px; line-height: 1.55; }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.step { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 24px 20px; }
.step .n { width: 32px; height: 32px; border-radius: 9px; display:flex; align-items:center; justify-content:center;
  font-weight: 800; color: var(--bg); background: linear-gradient(135deg, var(--gold-2), var(--gold)); margin-bottom: 14px; }
.step h4 { font-weight: 800; font-size: 15px; color: #fff; margin: 0 0 7px; }
.step p { font-size: 13.5px; color: var(--mute); line-height: 1.55; margin: 0; }

.svc-cta { border-radius: 20px; padding: 40px 34px; text-align: center; position: relative; overflow: hidden;
  background: linear-gradient(135deg, #123049, #0f4a74); border: 1px solid var(--border-2); }
.svc-cta h2 { font-weight: 800; font-size: 26px; color: #fff; margin: 0 0 10px; letter-spacing: -0.4px; }
.svc-cta p { color: #c4d2df; font-size: 15.5px; margin: 0 auto 22px; max-width: 520px; }
.btn-primary { display: inline-block; font-size: 15px; font-weight: 700; color: #fff; text-decoration: none; padding: 14px 28px; border-radius: 10px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue-2) 60%, var(--blue) 100%); box-shadow: 0 8px 22px rgba(31,109,181,0.35); transition: filter .15s; }
.btn-primary:hover { filter: brightness(1.08); }

/* Footer (locked) */
footer { position: fixed; bottom: 0; left: 0; right: 0; z-index: 40; border-top: 1px solid var(--border); background: #0e1d31; }
.fwrap { max-width: 1160px; margin: 0 auto; padding: 30px 32px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px; }
.fwrap .fcopy { font-size: 12.5px; color: var(--mute); line-height: 1.6; }
.fwrap .flinks a { color: #b9c6d2; margin-left: 18px; text-decoration: none; font-size: 13.5px; font-weight: 600; }
.fwrap .flinks a:hover { color: #fff; }

#to-top { position: fixed; right: 20px; bottom: 96px; z-index: 200; width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--gold); background: var(--navy); color: #fff; font-size: 22px; line-height: 1; cursor: pointer;
  display: none; align-items: center; justify-content: center; box-shadow: 0 6px 18px rgba(0,0,0,0.45); }
#to-top:hover { filter: brightness(1.15); }
#to-top.show { display: flex; }

@media (max-width: 820px) {
  .feature-list { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  nav.mainnav { display: none; }
  .svc-hero h1 { font-size: 34px; }
  .hwrap { padding: 13px 20px; } main, .svc-hero { padding-left: 20px; padding-right: 20px; }
  body { padding-bottom: 152px; }
  #to-top { bottom: 164px; }
}
