
:root {
  --bg: #0b1320;
  --bg-soft: #101b2c;
  --surface: #ffffff;
  --surface-2: #f5f7fb;
  --text: #152033;
  --muted: #5c677a;
  --line: #dfe5ef;
  --brand: #1565d8;
  --brand-dark: #0f4fb0;
  --accent: #17b26a;
  --warning: #f79009;
  --shadow: 0 18px 55px rgba(10, 19, 37, 0.12);
  --radius: 22px;
  --radius-sm: 14px;
  --max: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #f8fbff 0%, #eef4fb 100%);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(calc(100% - 2rem), var(--max)); margin: 0 auto; }
.section { padding: 4.5rem 0; }
.section-tight { padding: 3rem 0; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem; padding: .45rem .8rem;
  background: rgba(21, 101, 216, .1); color: var(--brand);
  border-radius: 999px; font-size: .92rem; font-weight: 700;
}
.eyebrow::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--accent);
}
h1, h2, h3 { line-height: 1.1; margin: 0 0 1rem; letter-spacing: -0.03em; }
h1 { font-size: clamp(2.4rem, 5vw, 4.8rem); }
h2 { font-size: clamp(1.9rem, 3.2vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
p { margin: 0 0 1rem; color: var(--muted); }
.lead { font-size: 1.12rem; max-width: 60ch; }
.btn-row { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 1.4rem; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .95rem 1.35rem; border-radius: 999px; font-weight: 800; font-size: .98rem;
  border: 1px solid transparent; transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--brand); color: #fff; box-shadow: 0 10px 26px rgba(21, 101, 216, .28); }
.btn-primary:hover { background: var(--brand-dark); }
.btn-secondary { background: #fff; border-color: var(--line); }
.btn-secondary:hover { border-color: var(--brand); color: var(--brand); }
.btn-light { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.22); }
.tag-list, .stats, .check-list, .meta-list { list-style: none; padding: 0; margin: 0; }
.topbar {
  background: #08111d; color: #d8e3f2; font-size: .95rem;
}
.topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .7rem 0; }
.topbar .quick { display: flex; flex-wrap: wrap; gap: 1rem; }
.site-header {
  position: sticky; top: 0; z-index: 50; backdrop-filter: blur(14px);
  background: rgba(248, 251, 255, .84); border-bottom: 1px solid rgba(223,229,239,.85);
}
.navbar { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 78px; }
.logo { display: flex; align-items: center; gap: .85rem; font-weight: 900; letter-spacing: -0.03em; }
.logo-mark {
  width: 44px; height: 44px; border-radius: 14px; background: linear-gradient(135deg, var(--brand), #3aa0ff);
  display: grid; place-items: center; color: white; box-shadow: 0 8px 24px rgba(21, 101, 216, .25); font-size: 1.15rem;
}
.nav-links { display: flex; gap: 1.1rem; align-items: center; font-weight: 650; }
.nav-links a { color: #23324b; }
.nav-links a:hover { color: var(--brand); }
.mobile-toggle { display: none; background: white; border: 1px solid var(--line); border-radius: 12px; padding: .6rem .8rem; }
.hero {
  position: relative; overflow: hidden;
  background:
    linear-gradient(115deg, rgba(8,17,29,.88), rgba(8,17,29,.58)),
    url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&w=1600&q=80') center/cover;
  color: white;
}
.hero::after {
  content: ""; position: absolute; inset: auto 0 0 0; height: 110px;
  background: linear-gradient(180deg, rgba(11,19,32,0) 0%, rgba(11,19,32,.45) 100%);
}
.hero-inner {
  position: relative; z-index: 1; display: grid; grid-template-columns: 1.2fr .8fr; gap: 2rem; align-items: center;
  min-height: 690px; padding: 5rem 0 4rem;
}
.hero-card, .card {
  background: rgba(255,255,255,.96); border: 1px solid rgba(223,229,239,.9); border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-copy p, .hero-copy li { color: rgba(255,255,255,.85); }
.hero-card { color: var(--text); padding: 1.5rem; }
.hero-card h3 { margin-bottom: .4rem; }
.form-grid { display: grid; gap: .9rem; }
.fake-form {
  display: grid; gap: .85rem; margin-top: 1rem;
}
.input {
  border: 1px solid var(--line); border-radius: 14px; padding: .95rem 1rem; background: white; color: var(--text);
}
.note { font-size: .92rem; color: var(--muted); }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: .9rem; margin-top: 1.5rem; }
.stats li, .mini-stat {
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15); border-radius: 18px; padding: 1rem;
}
.stat-num { font-size: 1.4rem; font-weight: 900; display: block; color: white; }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }
.card { padding: 1.4rem; }
.card p:last-child { margin-bottom: 0; }
.service-card { display: flex; flex-direction: column; gap: .8rem; }
.service-card .icon, .feature-icon {
  width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(21,101,216,.14), rgba(23,178,106,.16));
  color: var(--brand); font-size: 1.35rem; font-weight: 900;
}
.check-list { display: grid; gap: .7rem; }
.check-list li {
  position: relative; padding-left: 1.9rem; color: var(--text);
}
.check-list li::before {
  content: "✓"; position: absolute; left: 0; top: 0; color: var(--accent); font-weight: 900;
}
.band {
  background: linear-gradient(135deg, #0c1627, #11233d); color: white;
}
.band p { color: rgba(255,255,255,.82); }
.process-step { position: relative; padding-top: 1rem; }
.process-step .num {
  width: 42px; height: 42px; border-radius: 50%; background: var(--brand); color: #fff;
  display: grid; place-items: center; font-weight: 900; margin-bottom: .9rem;
}
.city-list, .footer-links { list-style: none; padding: 0; margin: 0; }
.city-list { display: flex; flex-wrap: wrap; gap: .8rem; }
.city-list a {
  display: inline-flex; padding: .72rem 1rem; background: white; border: 1px solid var(--line); border-radius: 999px; font-weight: 700;
}
.city-list a:hover { border-color: var(--brand); color: var(--brand); }
.testimonial { padding: 1.5rem; background: white; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.testimonial strong { display: block; margin-top: 1rem; }
.faq details {
  background: white; border: 1px solid var(--line); border-radius: 18px; padding: 1rem 1.1rem;
}
.faq details + details { margin-top: .8rem; }
.faq summary { cursor: pointer; font-weight: 800; color: var(--text); }
.faq details p { margin: .85rem 0 0; }
.breadcrumbs { font-size: .96rem; color: var(--muted); margin-bottom: 1rem; }
.breadcrumbs a { color: var(--brand); }
.page-hero {
  background: linear-gradient(135deg, #0d1829, #15345f); color: white; padding: 7rem 0 3rem;
}
.page-hero p { color: rgba(255,255,255,.85); }
.cta-panel {
  background: linear-gradient(140deg, #1565d8, #17b26a); color: white; border-radius: var(--radius); padding: 2rem;
  box-shadow: 0 18px 55px rgba(14, 77, 167, .28);
}
.cta-panel p { color: rgba(255,255,255,.92); }
.footer {
  background: #08111d; color: #d5ddeb; padding: 3.5rem 0 2rem;
}
.footer p, .footer a { color: #c0c9d8; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .8fr .8fr; gap: 1.4rem; }
.footer-links { display: grid; gap: .55rem; }
.footer-bottom { padding-top: 1.4rem; margin-top: 1.4rem; border-top: 1px solid rgba(255,255,255,.08); font-size: .93rem; }
.sticky-call {
  position: fixed; right: 18px; bottom: 18px; z-index: 45;
}
.sticky-call .btn { box-shadow: 0 16px 36px rgba(21, 101, 216, .35); }
.map-card iframe {
  border: 0; width: 100%; min-height: 320px; border-radius: 18px;
}
@media (max-width: 980px) {
  .hero-inner, .grid-2, .grid-3, .grid-4, .footer-grid { grid-template-columns: 1fr; }
  .nav-links {
    position: absolute; left: 1rem; right: 1rem; top: calc(100% + .6rem); background: white; border: 1px solid var(--line);
    border-radius: 20px; padding: 1rem; display: none; flex-direction: column; align-items: flex-start; box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .mobile-toggle { display: inline-flex; }
  .desktop-cta { display: none; }
  .hero-inner { min-height: auto; padding: 4rem 0 3rem; }
  .stats { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .section { padding: 3.5rem 0; }
  .topbar-inner { flex-direction: column; align-items: flex-start; }
  .btn-row { flex-direction: column; align-items: stretch; }
  .sticky-call { left: 16px; right: 16px; bottom: 14px; }
  .sticky-call .btn { width: 100%; }
}
