
:root {
  --bg: #ffffff;
  --text: #1f2937;
  --muted: #4b5563;
  --brand: #111827;
  --accent: #0ea5e9;
  --surface: #f8fafc;
  --ring: #bae6fd;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 1rem; }
.narrow { max-width: 800px; }

.skip-link { position: absolute; left: -999px; top: auto; width: 1px; height: 1px; overflow: hidden; }
.skip-link:focus { position: static; width: auto; height: auto; background: var(--ring); padding: .5rem; }

.site-header { background: var(--surface); border-bottom: 1px solid #e5e7eb; }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .75rem 0; }
.brand { display: flex; align-items: center; gap: .75rem; text-decoration: none; color: var(--brand); }
.brand-text { font-weight: 700; letter-spacing: .2px; }

.nav ul { list-style: none; display: flex; gap: 1rem; padding: 0; margin: 0; }
.nav a { text-decoration: none; color: var(--text); padding: .5rem .75rem; border-radius: .5rem; }
.nav a[aria-current="page"], .nav a:hover { background: #e5f3ff; color: #0b6aa3; }

.hero { background: linear-gradient(180deg, #f0f9ff, #ffffff); padding: 4rem 0 3rem; }
.hero-inner h1 { font-size: clamp(2rem, 3.8vw, 3rem); margin: 0 0 .75rem 0; }
.cta-row { display: flex; gap: .75rem; flex-wrap: wrap; }

.btn {
  display: inline-block; padding: .75rem 1rem; border-radius: .75rem;
  background: var(--accent); color: white; text-decoration: none; font-weight: 600;
  border: 2px solid transparent;
}
.btn:hover { filter: brightness(0.95); }
.btn:focus { outline: none; box-shadow: 0 0 0 4px var(--ring); }
.btn-secondary { background: #0b6aa3; }

.usps { padding: 2rem 0; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.card { background: var(--surface); border: 1px solid #e5e7eb; border-radius: 1rem; padding: 1rem; }

.feature-card { background: #06131d; color: #e6f3ff; border-radius: 1rem; padding: 1.25rem; }
.feature-card h3 { margin-top: 0; }

.highlight { padding: 2rem 0; }

.checklist { padding-left: 1.2rem; }
.checklist li { margin: .4rem 0; }

.page-hero { background: #f8fafc; padding: 2.25rem 0; border-bottom: 1px solid #eef2f7; }
.page-hero h1 { margin: 0 0 .5rem 0; }

.services-list { padding: 1.5rem 0; display: grid; gap: 1rem; }
.service { background: var(--surface); border: 1px solid #e5e7eb; border-radius: 1rem; padding: 1rem; }

.pricing { padding: 1.5rem 0; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.price-card { background: var(--surface); border: 1px solid #e5e7eb; border-radius: 1rem; padding: 1rem; }
.price { font-size: 1.5rem; font-weight: 700; margin-top: .25rem; }
.fine-print { color: var(--muted); font-size: .95rem; }

.center { text-align: center; margin-top: 1rem; }

.cta-banner { background: linear-gradient(180deg, #eef6ff, #ffffff); padding: 2rem 0; text-align: center; }
.cta-banner h2 { margin: 0 0 .5rem 0; }

.contact-grid { display: grid; grid-template-columns: 1.4fr .8fr; gap: 1rem; padding: 1.5rem 0; }
.contact-form .form-row { display: grid; gap: .4rem; margin-bottom: .9rem; }
input, select, textarea {
  padding: .65rem .75rem; border: 1px solid #d1d5db; border-radius: .6rem; font-size: 1rem; width: 100%;
}
input:focus, select:focus, textarea:focus { outline: none; box-shadow: 0 0 0 4px var(--ring); border-color: #7dd3fc; }
.error { color: #b91c1c; font-size: .9rem; min-height: 1.2em; }

.site-footer { margin-top: 2rem; border-top: 1px solid #e5e7eb; background: #0b1220; color: #c7d2fe; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1rem 0; }
.subfooter { background: #060b17; color: #93c5fd; }
.subfooter .container { padding: .6rem 0; }

@media (max-width: 900px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .nav ul { gap: .25rem; flex-wrap: wrap; }
}


/* pricing table */
.responsive-table { overflow-x: auto; }
.price-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #e5e7eb;
  background: #fff;
  border-radius: .75rem;
  overflow: hidden;
}
.price-table th, .price-table td {
  padding: .75rem;
  border-bottom: 1px solid #eef2f7;
  vertical-align: top;
}
.price-table thead th { background: #f1f5f9; text-align: left; }
.price-table .num { text-align: right; white-space: nowrap; }
.price-table .qty { text-align: center; white-space: nowrap; }
.muted { color: #6b7280; }
.price-table tbody tr:last-child td { border-bottom: 0; }

/* Rate card tables */
.rate-card { padding: 1rem 0 2rem; }
.rate-card .sub { color: var(--muted); margin-top: -.25rem; }
.price-table { width: 100%; border-collapse: collapse; margin: 1rem 0 2rem; background: var(--surface); border: 1px solid #e5e7eb; border-radius: .75rem; overflow: hidden; }
.price-table th, .price-table td { padding: .8rem .75rem; border-bottom: 1px solid #e5e7eb; vertical-align: top; }
.price-table thead th { background: #eff6ff; text-align: left; font-weight: 700; }
.price-table .num { text-align: right; white-space: nowrap; }
.price-table .qty { width: 70px; text-align: center; white-space: nowrap; }
.price-table tr:last-child td { border-bottom: 0; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

@media (max-width: 700px) {
  .price-table thead { display: none; }
  .price-table, .price-table tbody, .price-table tr, .price-table td { display: block; width: 100%; }
  .price-table tr { border-bottom: 1px solid #e5e7eb; }
  .price-table td { display: grid; grid-template-columns: 9ch auto; gap: .5rem; text-align: left; }
  .price-table td::before { content: attr(data-label); font-weight: 600; color: var(--muted); }
  .price-table .num, .price-table .qty { text-align: left; }
}
