
:root {
  --bits-blue: #1d2c63;
  --bits-blue-light: #89a0c9;
  --bits-green: #167c4c;
  --bits-orange: #d38516;
  --bits-white: #ffffff;
  --bg: #f6f8fc;
  --bg-soft: #edf2f9;
  --text: #1e2740;
  --muted: #5f6c8e;
  --line: #d6dfef;
  --shadow: 0 16px 40px rgba(29, 44, 99, 0.10);
  --radius: 22px;
  --container: 1200px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(var(--container), calc(100% - 32px)); margin: 0 auto; }
.section { padding: 88px 0; }
.section-light { background: var(--bg-soft); }
.card {
  background: var(--bits-white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  background: rgba(137, 160, 201, 0.15);
  color: var(--bits-blue);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--bits-green);
}
h1, h2, h3, h4, p { margin-top: 0; }
h1 {
  font-size: clamp(2.5rem, 6vw, 4.8rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
  color: var(--bits-blue);
}
h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
  color: var(--bits-blue);
}
h3 { font-size: 1.3rem; margin-bottom: 12px; color: var(--bits-blue); }
p, li { color: var(--muted); }
.lead { font-size: 1.15rem; max-width: 760px; margin-bottom: 28px; }
.lead.small { font-size: 1.05rem; }
.button-row { display: flex; flex-wrap: wrap; gap: 14px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 14px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: 0.2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--bits-blue); color: var(--bits-white); }
.btn-secondary { background: var(--bits-white); border-color: var(--bits-blue-light); color: var(--bits-blue); }
.btn-remote { background: var(--bits-orange); color: var(--bits-white); }
.text-link { color: var(--bits-green); font-weight: 700; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.header-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand-logo { height: 64px; width: auto; }
.main-nav { display: flex; align-items: center; gap: 22px; }
.main-nav a { font-weight: 700; color: var(--bits-blue); }
.main-nav a.active, .main-nav a:hover { color: var(--bits-green); }
.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--bits-white);
  color: var(--bits-blue);
  border-radius: 12px;
  padding: 10px 12px;
  cursor: pointer;
}
.hero {
  padding: 80px 0 70px;
  background:
    radial-gradient(circle at top left, rgba(137,160,201,0.20), transparent 30%),
    radial-gradient(circle at right top, rgba(22,124,76,0.10), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f7f9fd 100%);
}
.hero-grid, .split-grid, .content-grid, .footer-grid, .contact-grid {
  display: grid; gap: 28px;
}
.hero-grid { grid-template-columns: 1.15fr 0.85fr; align-items: center; }
.split-grid, .contact-grid { grid-template-columns: repeat(2, 1fr); align-items: start; }
.content-grid { grid-template-columns: 0.9fr 1.1fr; }
.footer-grid { grid-template-columns: 1.2fr 0.8fr 0.8fr; }
.hero-panel, .quote-card, .cta-box, .info-card, .form-card, .legal-card { padding: 30px; }
.panel-badge {
  display: inline-block; padding: 7px 12px; border-radius: 999px;
  background: rgba(29,44,99,0.08); color: var(--bits-blue); font-weight: 800; margin-bottom: 16px;
}
.section-head {
  display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 26px;
}
.card-grid { display: grid; gap: 22px; }
.card-grid.three { grid-template-columns: repeat(3, 1fr); }
.card-grid.two { grid-template-columns: repeat(2, 1fr); }
.service-card, .info-card { padding: 26px; }
.icon-block {
  width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center;
  font-size: 24px; margin-bottom: 16px;
}
.icon-blue { background: rgba(137,160,201,0.22); }
.icon-green { background: rgba(22,124,76,0.12); }
.icon-orange { background: rgba(211,133,22,0.16); }
.service-card ul, .tick-list, .feature-list, .simple-list, .legal-list { margin: 0; padding-left: 20px; }
.feature-list.compact { display: grid; gap: 14px; padding-left: 0; list-style: none; }
.feature-list.compact div {
  display: grid; gap: 2px; padding: 14px; border-radius: 16px; background: var(--bg-soft);
}
.tick-list { list-style: none; padding-left: 0; }
.tick-list li { position: relative; padding-left: 30px; margin-bottom: 12px; }
.tick-list li::before {
  content: "✓"; position: absolute; left: 0; top: 0; color: var(--bits-green); font-weight: 800;
}
.partner-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.partner-tags span {
  padding: 9px 12px; border-radius: 999px; background: rgba(29,44,99,0.07); color: var(--bits-blue); font-weight: 700;
}
.page-hero {
  padding: 70px 0 50px;
  background: linear-gradient(180deg, rgba(137,160,201,0.12), rgba(255,255,255,0.95));
}
.breadcrumbs { font-size: 14px; color: var(--muted); margin-bottom: 14px; }
.cta-section { padding-top: 20px; }
.cta-box {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  background: linear-gradient(135deg, rgba(29,44,99,0.05), rgba(22,124,76,0.05));
  border: 1px solid var(--line); border-radius: 28px;
}
.contact-list, .footer-grid a { display: grid; gap: 10px; }
.contact-list a, .footer-grid a { color: var(--muted); }
.contact-list a:hover, .footer-grid a:hover { color: var(--bits-blue); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.form-grid .full { grid-column: 1 / -1; }
label {
  display: block; font-size: 14px; font-weight: 700; color: var(--bits-blue); margin-bottom: 6px;
}
input, textarea, select {
  width: 100%; border: 1px solid var(--line); border-radius: 14px; padding: 14px 15px;
  font: inherit; color: var(--text); background: var(--bits-white);
}
textarea { min-height: 150px; resize: vertical; }
input:focus, textarea:focus, select:focus {
  outline: none; border-color: var(--bits-blue-light); box-shadow: 0 0 0 4px rgba(137,160,201,0.18);
}
.notice {
  margin-top: 14px; padding: 14px 16px; border-radius: 14px;
  background: rgba(22,124,76,0.08); color: var(--bits-green); font-weight: 700; display: none;
}
.remote-box { padding: 28px; border-left: 6px solid var(--bits-orange); }
.remote-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 18px; }
.hours-list { list-style: none; padding-left: 0; margin: 16px 0 0; }
.hours-list li { margin-bottom: 6px; }
.site-footer {
  padding: 40px 0 50px; background: var(--bits-blue); color: rgba(255,255,255,0.86); margin-top: 40px;
}
.site-footer h4 { color: var(--bits-white); }
.site-footer a, .site-footer p { color: rgba(255,255,255,0.82); }
.site-footer a:hover { color: var(--bits-white); }
.footer-logo {
  max-width: 240px; background: white; padding: 8px 10px; border-radius: 12px;
}
.small-note { font-size: 0.95rem; }
@media (max-width: 980px) {
  .hero-grid, .split-grid, .content-grid, .footer-grid, .contact-grid, .card-grid.three, .card-grid.two, .cta-box {
    grid-template-columns: 1fr;
  }
  .cta-box { display: grid; }
  .main-nav {
    display: none; position: absolute; top: 88px; left: 0; right: 0; padding: 18px 16px;
    background: white; border-bottom: 1px solid var(--line); flex-direction: column; align-items: stretch;
  }
  .main-nav.open { display: flex; }
  .nav-toggle { display: block; }
}
@media (max-width: 640px) {
  .section { padding: 70px 0; }
  .hero { padding-top: 52px; }
  .brand-logo { height: 50px; }
  .form-grid { grid-template-columns: 1fr; }
  .btn { width: 100%; }
}


.map-frame {
  width: 100%;
  height: 320px;
  border: 0;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.quick-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.quick-contact a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 16px;
  border-radius: 12px;
  background: rgba(29,44,99,0.06);
  color: var(--bits-blue);
  font-weight: 700;
}

.quick-contact a:hover {
  background: rgba(29,44,99,0.12);
}

.seo-highlight {
  color: var(--bits-blue);
  font-weight: 700;
}
