:root {
  --bg: #0b0e14;
  --bg-2: #10141c;
  --panel: #151a24;
  --panel-2: #1b2130;
  --ink: #eef1f6;
  --muted: #9aa3b2;
  --blue: #2f6bff;
  --blue-2: #1e4fd1;
  --blue-soft: rgba(47, 107, 255, 0.14);
  --line: #242b3a;
  --ok: #3ccf8e;
  --err: #ff6b6b;
  --radius: 10px;
  --head: "Saira Condensed", "Arial Narrow", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img, svg { display: block; max-width: 100%; }
.wrap { max-width: 72rem; margin: 0 auto; padding: 0 1.25rem; }
.narrow { max-width: 46rem; }
.muted { color: var(--muted); }
.small { font-size: 0.875rem; }
.center { text-align: center; }

h1, h2, h3, h4 { font-family: var(--head); font-weight: 700; line-height: 1.1; letter-spacing: 0.01em; }
h1 { font-size: clamp(2.3rem, 5.2vw, 3.7rem); font-weight: 800; text-transform: uppercase; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); text-transform: uppercase; }
h3 { font-size: 1.35rem; }
.accent { color: var(--blue); }
.kicker {
  display: inline-block;
  font-family: var(--head);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.6rem;
}
.lead { font-size: 1.12rem; color: #c9d0dc; margin-top: 1rem; max-width: 40rem; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: var(--head); font-weight: 700; font-size: 1.05rem;
  letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none;
  padding: 0.7rem 1.4rem; border-radius: 6px;
  border: 1.5px solid var(--line); background: var(--panel-2); color: var(--ink);
  cursor: pointer; transition: background .15s, border-color .15s, transform .15s;
}
.btn:hover { border-color: var(--blue); }
.btn-primary { background: var(--blue); border-color: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue-2); border-color: var(--blue-2); }
.btn-sm { padding: 0.45rem 1rem; font-size: 0.95rem; }
.btn-lg { padding: 0.9rem 1.8rem; font-size: 1.2rem; }
.btn-block { width: 100%; }
.btn[disabled] { opacity: 0.6; cursor: wait; }

/* Top bar + header */
.topbar { background: #070a0f; border-bottom: 1px solid var(--line); font-size: 0.85rem; color: var(--muted); }
.topbar-inner { display: flex; justify-content: space-between; gap: 1rem; padding-top: 0.45rem; padding-bottom: 0.45rem; }
.topbar a { text-decoration: none; color: var(--ink); }
.topbar strong { color: var(--blue); }

.site-header { position: sticky; top: 0; z-index: 50; background: rgba(11, 14, 20, 0.94); backdrop-filter: blur(8px); border-bottom: 1px solid var(--line); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-top: 0.8rem; padding-bottom: 0.8rem; }
.site-nav { display: flex; align-items: center; gap: 1.6rem; }
.site-nav a:not(.btn) {
  font-family: var(--head); font-weight: 600; font-size: 1.02rem; letter-spacing: 0.12em;
  text-transform: uppercase; text-decoration: none; color: var(--muted); padding: 0.3rem 0;
  border-bottom: 2px solid transparent;
}
.site-nav a:not(.btn):hover, .site-nav a.active { color: var(--ink); border-bottom-color: var(--blue); }
.nav-toggle { display: none; }

/* Logo */
.logo { text-decoration: none; display: inline-block; }
.lg { display: inline-flex; align-items: flex-end; gap: 0.35rem; color: var(--ink); }
.lg-cam { width: 2.9rem; height: auto; margin-bottom: 0.55rem; color: #dfe4ec; }
.lg-text { display: flex; flex-direction: column; align-items: stretch; }
.lg-name {
  font-family: var(--head); font-weight: 800; font-size: 2rem; line-height: 0.95;
  letter-spacing: 0.02em; color: var(--blue); padding-bottom: 0.2rem; border-bottom: 2px solid var(--ink);
}
.lg-sub {
  font-family: var(--head); font-weight: 600; font-size: 0.58rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--ink); text-align: center; margin-top: 0.25rem; white-space: nowrap;
}

/* Hero */
.hero {
  position: relative; overflow: hidden; padding: 4rem 0 4.5rem;
  background:
    radial-gradient(900px 500px at 85% -10%, rgba(47,107,255,0.28), transparent 60%),
    radial-gradient(700px 400px at -10% 110%, rgba(47,107,255,0.12), transparent 60%),
    linear-gradient(180deg, #0d121b, var(--bg));
  border-bottom: 1px solid var(--line);
}
.hero::before {
  content: ""; position: absolute; inset: 0; opacity: 0.35; pointer-events: none;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.6), transparent 80%);
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1.15fr 1fr; gap: 3rem; align-items: center; }
.hero-call { margin-top: 1.8rem; }
.ticks { list-style: none; margin-top: 1.4rem; display: grid; gap: 0.55rem; }
.ticks li { position: relative; padding-left: 1.8rem; }
.ticks li::before {
  content: ""; position: absolute; left: 0; top: 0.3em; width: 1.1rem; height: 1.1rem; border-radius: 50%;
  background: var(--blue-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4 8.5l2.5 2.5L12 5.5' fill='none' stroke='%232f6bff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/80% no-repeat;
}

/* Cards */
.card { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem; }
.hero-form { box-shadow: 0 30px 80px rgba(0,0,0,0.45); border-top: 3px solid var(--blue); }
.form-title { font-size: 1.7rem; }

/* Quote form */
.quote-form { display: grid; gap: 0.9rem; margin-top: 1rem; }
.quote-form fieldset { border: 0; display: flex; flex-wrap: wrap; gap: 0.45rem; }
.quote-form legend { font-size: 0.85rem; font-weight: 600; margin-bottom: 0.45rem; color: var(--muted); }
.quote-form label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--muted); }
.quote-form .opt { font-weight: 400; }
.quote-form label > input, .quote-form label > textarea { display: block; margin-top: 0.3rem; }
.quote-form input[type=text], .quote-form input[type=tel], .quote-form input[type=email], .quote-form textarea {
  width: 100%; font: inherit; font-size: 1rem; color: var(--ink);
  background: var(--bg-2); border: 1px solid var(--line); border-radius: 6px; padding: 0.65rem 0.75rem;
}
.quote-form input:focus, .quote-form textarea:focus { outline: 2px solid var(--blue); outline-offset: 0; border-color: var(--blue); }
.quote-form .invalid { border-color: var(--err) !important; }
.qf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.chip, .seg { display: inline-flex !important; cursor: pointer; }
.chip input, .seg input { position: absolute; opacity: 0; pointer-events: none; }
.chip span, .seg span {
  display: inline-block; padding: 0.42rem 0.8rem; border: 1px solid var(--line); border-radius: 999px;
  background: var(--bg-2); color: var(--ink); font-weight: 500; font-size: 0.9rem; transition: all .12s;
}
.chip input:checked + span, .seg input:checked + span { background: var(--blue); border-color: var(--blue); color: #fff; }
.chip input:focus-visible + span, .seg input:focus-visible + span { outline: 2px solid var(--blue); outline-offset: 2px; }
.hp { position: absolute !important; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.qf-note { font-size: 0.78rem; color: var(--muted); }
.qf-status { font-size: 0.92rem; font-weight: 600; }
.qf-status.err { color: var(--err); }
.qf-status.ok { color: var(--ok); }

/* Trust bar */
.trust { background: var(--bg-2); border-bottom: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-grid div { padding: 1.3rem 1rem; border-left: 1px solid var(--line); display: grid; }
.trust-grid div:first-child { border-left: 0; }
.trust-grid strong { font-family: var(--head); font-size: 1.3rem; text-transform: uppercase; letter-spacing: 0.06em; }
.trust-grid span { color: var(--muted); font-size: 0.9rem; }

/* Sections */
.section { padding: 4.5rem 0; }
.section-alt { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-head { margin-bottom: 2.2rem; }
.split { display: grid; grid-template-columns: 1.2fr 1fr; gap: 3rem; align-items: start; }
.split p { margin-top: 1rem; color: #c9d0dc; }
.split .btn { margin-top: 1.5rem; }
.feature-list h3 { margin-top: 1.2rem; }
.feature-list h3:first-child { margin-top: 0; }
.feature-list p { margin-top: 0.3rem; }
.feature-list .btn { margin-top: 1.5rem; }

/* Services */
.svc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
.svc { text-decoration: none; display: flex; flex-direction: column; gap: 0.7rem; transition: border-color .15s, transform .15s; }
.svc:hover { border-color: var(--blue); transform: translateY(-3px); }
.svc-ico { width: 3rem; height: 3rem; color: var(--blue); padding: 0.55rem; background: var(--blue-soft); border-radius: 10px; }
.svc p { color: var(--muted); font-size: 0.95rem; flex: 1; }
.more { font-family: var(--head); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue); font-size: 0.95rem; text-decoration: none; }
.more::after { content: " \2192"; }

/* Steps */
.steps { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; counter-reset: s; }
.steps li { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem; }
.step-n {
  display: inline-grid; place-items: center; width: 2.4rem; height: 2.4rem; border-radius: 50%;
  background: var(--blue); color: #fff; font-family: var(--head); font-weight: 800; font-size: 1.3rem; margin-bottom: 0.9rem;
}
.steps p { color: var(--muted); font-size: 0.95rem; margin-top: 0.4rem; }

/* FAQ */
.faq { display: grid; gap: 0.6rem; }
.faq details { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); }
.faq summary {
  cursor: pointer; list-style: none; padding: 1rem 1.2rem; font-weight: 600;
  display: flex; justify-content: space-between; gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--blue); font-size: 1.4rem; line-height: 1; }
.faq details[open] summary::after { content: "\2212"; }
.faq details p { padding: 0 1.2rem 1.1rem; color: var(--muted); }

/* CTA band */
.cta-band { background: linear-gradient(120deg, var(--blue-2), var(--blue)); padding: 3rem 0; }
.cta-inner { display: flex; justify-content: space-between; align-items: center; gap: 2rem; flex-wrap: wrap; }
.cta-band p { color: rgba(255,255,255,0.85); margin-top: 0.4rem; }
.cta-actions { display: flex; gap: 0.8rem; flex-wrap: wrap; }
.cta-actions.center { justify-content: center; margin-top: 1.6rem; }
.cta-band .btn { background: #fff; color: var(--bg); border-color: #fff; }
.cta-band .btn-primary { background: var(--bg); color: #fff; border-color: var(--bg); }

/* Inner pages */
.page-hero {
  padding: 3.5rem 0 3rem; border-bottom: 1px solid var(--line);
  background: radial-gradient(800px 400px at 90% -20%, rgba(47,107,255,0.22), transparent 60%), linear-gradient(180deg, #0d121b, var(--bg));
}
.page-hero.center { text-align: center; padding: 5rem 0; }
.page-hero.center .lead { margin-left: auto; margin-right: auto; }
.page-hero.center .btn { margin-top: 1.6rem; }
.crumb { display: inline-block; font-family: var(--head); font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--blue); text-decoration: none; font-size: 0.85rem; margin-bottom: 0.6rem; }
.crumb::before { content: "\2190  "; }
.with-aside { display: grid; grid-template-columns: 1.4fr 1fr; gap: 2.5rem; align-items: start; }
.aside-form { position: sticky; top: 6rem; border-top: 3px solid var(--blue); }
.prose h2 { font-size: 1.7rem; margin: 2rem 0 0.6rem; }
.prose h2:first-child { margin-top: 0; }
.prose p { color: #c9d0dc; margin-top: 0.8rem; }
.prose ul:not(.ticks) { margin: 0.8rem 0 0 1.2rem; color: #c9d0dc; display: grid; gap: 0.4rem; }
.prose a { color: var(--blue); }
.contact-details { display: grid; gap: 1rem; }
.contact-card h3 { font-size: 1.1rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.3rem; }
.big-link { font-family: var(--head); font-weight: 800; font-size: 2rem; color: var(--blue); text-decoration: none; }
.contact-card p { margin-top: 0.3rem; }

/* Footer */
.site-footer { background: #070a0f; border-top: 1px solid var(--line); padding: 3.5rem 0 6rem; margin-top: 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2rem; }
.footer-grid h4 { font-size: 1rem; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 0.8rem; }
.footer-grid a:not(.logo), .footer-grid span { display: block; color: var(--muted); text-decoration: none; font-size: 0.92rem; margin-bottom: 0.45rem; }
.footer-grid a:not(.logo):hover { color: var(--ink); }
.footer-grid .small { margin-top: 1rem; max-width: 22rem; }
.footer-legal { margin-top: 2.5rem; font-size: 0.82rem; color: var(--muted); }
.footer-rule { height: 2px; background: linear-gradient(90deg, var(--blue) 0 22%, var(--line) 22%); margin-bottom: 1.2rem; }
.footer-legal nav { display: flex; gap: 1.4rem; margin-top: 0.6rem; flex-wrap: wrap; }
.footer-legal nav a { text-decoration: none; }
.footer-legal nav a:hover { color: var(--ink); }

.mobile-cta { display: none; }

/* Responsive */
@media (max-width: 980px) {
  .hero-grid, .split, .with-aside { grid-template-columns: 1fr; }
  .svc-grid, .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .aside-form { position: static; }
}
@media (max-width: 760px) {
  .nav-toggle {
    display: inline-flex; font-family: var(--head); font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
    background: var(--panel-2); color: var(--ink); border: 1px solid var(--line); border-radius: 6px; padding: 0.45rem 0.9rem; cursor: pointer;
  }
  .site-nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: stretch;
    gap: 0; background: var(--bg); border-bottom: 1px solid var(--line); padding: 0.5rem 1.25rem 1.25rem;
  }
  .site-nav.open { display: flex; }
  .site-nav a:not(.btn) { padding: 0.8rem 0; border-bottom: 1px solid var(--line); }
  .site-nav .btn { margin-top: 1rem; }
  .topbar-inner span { display: none; }
  .topbar-inner { justify-content: center; }
  .hero { padding: 2.5rem 0 3rem; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid div:nth-child(3) { border-left: 0; }
  .trust-grid div:nth-child(n+3) { border-top: 1px solid var(--line); }
  .svc-grid, .steps, .qf-row, .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 3rem 0; }
  .lg-name { font-size: 1.6rem; }
  .lg-cam { width: 2.3rem; }
  .mobile-cta {
    display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
    padding: 0.6rem 0.75rem calc(0.6rem + env(safe-area-inset-bottom)); background: rgba(7,10,15,0.96); border-top: 1px solid var(--line);
  }
  .mobile-cta .btn { padding: 0.7rem; }
}
