
:root {
  --bg: #050608;
  --panel: #0b0f16;
  --panel-2: #111827;
  --blue: #0057ff;
  --blue-2: #0b75ff;
  --white: #f4f7fb;
  --muted: #b5c0d0;
  --line: rgba(0, 103, 255, 0.55);
  --shadow: 0 22px 70px rgba(0,0,0,.45);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top right, rgba(0, 92, 255, .13), transparent 28%), var(--bg);
  color: var(--white);
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.topbar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(5,6,8,.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0, 103, 255, .22);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 12px 0;
}
.brand { display: flex; align-items: center; gap: 12px; min-width: 0; }
.brand img { width: 74px; height: 56px; object-fit: contain; }
.brand strong { display: block; font-size: 1.05rem; letter-spacing: .03em; text-transform: uppercase; }
.brand span { color: var(--muted); font-size: .85rem; }
.nav-actions { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; justify-content: flex-end; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 18px; border-radius: 999px;
  font-weight: 800; text-transform: uppercase; letter-spacing: .04em;
  background: linear-gradient(135deg, #0053d6, #0b78ff);
  border: 1px solid rgba(255,255,255,.35);
  box-shadow: 0 8px 30px rgba(0, 95, 255, .22);
}
.btn.secondary { background: transparent; border-color: rgba(255,255,255,.22); color: var(--white); box-shadow: none; }
.hero-wrap { padding: 28px 0 16px; }
.hero-image {
  width: 100%; border-radius: 18px; overflow: hidden; border: 1px solid rgba(0, 103, 255, .35);
  box-shadow: var(--shadow);
  background: #000;
}
.hero-image img { width: 100%; height: auto; }
.quick-cta {
  margin: -18px auto 0; position: relative; z-index: 3;
  width: min(980px, calc(100% - 22px));
  display: grid; grid-template-columns: 1fr auto auto; gap: 12px; align-items: center;
  padding: 14px; border: 1px solid rgba(0,103,255,.4); border-radius: 18px;
  background: linear-gradient(135deg, rgba(7,12,22,.96), rgba(4,32,78,.92));
  box-shadow: 0 18px 45px rgba(0,0,0,.35);
}
.quick-cta p { margin: 0; color: var(--muted); }
.quick-cta strong { color: var(--white); }
.section { padding: 58px 0; }
.section-title { margin: 0 0 10px; font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1; letter-spacing: -.03em; text-transform: uppercase; }
.section-kicker { color: var(--blue-2); text-transform: uppercase; font-weight: 900; letter-spacing: .14em; font-size: .85rem; margin-bottom: 10px; }
.lead { color: var(--muted); font-size: 1.1rem; max-width: 780px; margin: 0 auto 0; }
.center { text-align: center; }
.grid { display: grid; gap: 18px; }
.grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card {
  background: linear-gradient(180deg, rgba(17,24,39,.95), rgba(5,9,16,.94));
  border: 1px solid rgba(0,103,255,.28);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 18px 55px rgba(0,0,0,.25);
}
.card h3 { margin: 0 0 8px; font-size: 1.25rem; text-transform: uppercase; letter-spacing: .03em; }
.card p { margin: 0; color: var(--muted); }
.icon {
  width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center;
  background: rgba(0, 96, 255, .16); border: 1px solid rgba(0, 103, 255, .45);
  color: #fff; font-size: 1.35rem; margin-bottom: 14px;
}
.service-list { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 12px; }
.service-list li {
  display: flex; align-items: center; gap: 12px; padding: 14px 16px; border-radius: 14px;
  background: rgba(255,255,255,.035); border: 1px solid rgba(255,255,255,.08);
  color: var(--white); font-weight: 700;
}
.service-list .mark { color: var(--blue-2); font-weight: 900; }
.split {
  display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 28px; align-items: center;
}
.about-panel {
  position: relative; overflow: hidden;
}
.about-panel::after {
  content: ""; position: absolute; inset: auto -60px -80px auto; width: 220px; height: 220px;
  border-radius: 50%; background: rgba(0,103,255,.18); filter: blur(30px);
}
.steps { counter-reset: step; display: grid; gap: 14px; margin-top: 22px; }
.step { display: grid; grid-template-columns: 52px 1fr; gap: 14px; align-items: start; }
.step::before {
  counter-increment: step; content: counter(step);
  width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center;
  font-weight: 900; background: linear-gradient(135deg, #004bc2, #0b78ff); border: 1px solid rgba(255,255,255,.32);
}
.step h3 { margin: 0 0 2px; font-size: 1.05rem; }
.step p { margin: 0; color: var(--muted); }
.cta-band {
  padding: 46px 0;
  background: linear-gradient(135deg, rgba(0,50,130,.75), rgba(0,0,0,.65)), url('assets/groveline-footer.png') center/cover no-repeat;
  border-top: 1px solid rgba(0,103,255,.35);
  border-bottom: 1px solid rgba(0,103,255,.35);
}
.cta-box {
  width: min(850px, 100%); margin: 0 auto; text-align: center;
  background: rgba(2,5,10,.72); border: 1px solid rgba(0,103,255,.35); border-radius: 24px;
  padding: 32px; backdrop-filter: blur(5px);
}
.cta-box h2 { margin: 0 0 8px; font-size: clamp(2rem, 4vw, 3.4rem); text-transform: uppercase; line-height: 1; }
.cta-box p { margin: 0 auto 20px; color: var(--muted); max-width: 620px; }
.contact-grid { grid-template-columns: 1.2fr .8fr; align-items: stretch; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; padding: 16px; border: 1px solid rgba(255,255,255,.08); border-radius: 16px; background: rgba(255,255,255,.035); }
.contact-item b { display: block; }
.contact-item span { color: var(--muted); }
.footer-graphic { border-top: 1px solid rgba(0,103,255,.28); background: #000; }
.footer-graphic img { width: 100%; height: auto; }
.site-footer { padding: 22px 0; color: var(--muted); text-align: center; font-size: .9rem; background: #020306; }
.site-footer a { color: var(--white); font-weight: 700; }
@media (max-width: 860px) {
  .quick-cta { grid-template-columns: 1fr; text-align: center; margin-top: 12px; }
  .grid.two, .grid.three, .split, .contact-grid { grid-template-columns: 1fr; }
  .nav { align-items: flex-start; }
  .nav-actions { display: none; }
  .brand img { width: 64px; }
  .section { padding: 42px 0; }
}
