:root {
  --blue-50: #eff6ff;
  --blue-100: #dbeafe;
  --blue-600: #2563eb;
  --blue-700: #1d4ed8;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-900: #111827;
  --white: #ffffff;
  --radius-md: 6px;
  --radius-lg: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  margin: 0;
  color: var(--gray-900);
  background: var(--white);
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-optical-sizing: auto;
  font-synthesis: none;
  font-kerning: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: geometricPrecision;
  line-height: 1.5;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
main { min-height: 60vh; }

.container {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
}
.narrow { max-width: 896px; }
.centered { text-align: center; }
.section { padding: 64px 0; }
.section-large { padding: 80px 0; }
.band { background: var(--gray-50); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
}
.nav-shell {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.brand-logo {
  width: 106px;
  height: auto;
}
.nav-links {
  display: none;
  align-items: center;
  gap: 32px;
}
.nav-links a,
.footer-links a {
  color: var(--gray-700);
  text-decoration: none;
  transition: color 150ms ease;
}
.nav-links a:hover,
.footer-links a:hover { color: var(--blue-600); }
.nav-toggle {
  display: inline-flex;
  width: 40px;
  height: 40px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 8px;
  color: var(--gray-700);
  background: var(--white);
  border: 0;
}
.nav-toggle-line {
  width: 24px;
  height: 2px;
  background: currentColor;
}

.hero,
.page-hero { background: linear-gradient(135deg, var(--blue-50), var(--white)); }
.hero-grid,
.split-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
.hero-copy { max-width: none; }
.hero-media { display: none; }
.hero-media img,
.image-panel img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

.eyebrow { display: none; }
h1,
h2,
h3,
p { margin-top: 0; }
h1 {
  margin-bottom: 24px;
  color: var(--gray-900);
  font-size: 2.25rem;
  font-weight: 680;
  line-height: 1.12;
  letter-spacing: 0;
}
h2 {
  margin-bottom: 16px;
  color: var(--gray-900);
  font-size: 1.875rem;
  font-weight: 680;
  line-height: 1.2;
  letter-spacing: 0;
}
h3 {
  margin-bottom: 12px;
  color: var(--gray-900);
  font-size: 1.25rem;
  font-weight: 620;
  line-height: 1.35;
}
p { color: var(--gray-600); }
.lead {
  margin-bottom: 32px;
  color: var(--gray-600);
  font-size: 1.125rem;
}
.section-heading {
  max-width: 768px;
  margin: 0 auto 48px;
}
.section-heading p { font-size: 1.125rem; }

.button-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  color: inherit;
  border-radius: var(--radius-md);
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  transition: background-color 150ms ease, color 150ms ease, border-color 150ms ease;
  cursor: pointer;
}
.button-primary {
  color: var(--white);
  background: var(--blue-600);
  border: 2px solid var(--blue-600);
}
.button-primary:hover {
  color: var(--white);
  background: var(--blue-700);
  border-color: var(--blue-700);
}
.button-secondary {
  color: var(--blue-600);
  background: var(--white);
  border: 2px solid var(--blue-600);
}
.button-secondary:hover { background: var(--blue-50); }
.button-light {
  display: inline-flex;
  color: var(--blue-600);
  background: var(--white);
  border: 2px solid var(--white);
  font-weight: 620;
}
.button-light:hover { background: var(--gray-100); }
.button-small {
  padding: 8px 24px;
  color: var(--white) !important;
  border-width: 0;
}
.full-width { width: 100%; }

.value-grid,
.card-grid,
.business-grid {
  display: grid;
  grid-template-columns: 1fr;
}
.value-grid { gap: 32px; }
.card-grid { gap: 32px; }
.business-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.value-item {
  text-align: center;
}
.value-item p { margin-bottom: 0; }
.card,
.contact-card {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
}
.card p { margin-bottom: 0; }
.centered-card {
  padding: 32px;
  text-align: center;
}
.icon-badge {
  display: inline-flex;
  width: 64px;
  height: 64px;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--blue-600);
  background-color: var(--blue-100);
  border-radius: 9999px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 32px 32px;
}
.icon-badge svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.icon-shield { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 24 24' fill='none' stroke='%232563eb' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 13c0 5-3.5 7.5-7.7 8.9a1 1 0 0 1-.6 0C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.2-2.5a1.3 1.3 0 0 1 1.6 0C14.5 3.8 17 5 19 5a1 1 0 0 1 1 1z'/%3E%3C/svg%3E"); }
.icon-bulb { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 24 24' fill='none' stroke='%232563eb' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M15 14c.2-1 .7-1.7 1.5-2.5A4.8 4.8 0 0 0 18 8a6 6 0 0 0-12 0c0 1.4.5 2.6 1.5 3.6.7.7 1.3 1.4 1.5 2.4'/%3E%3Cpath d='M9 18h6'/%3E%3Cpath d='M10 22h4'/%3E%3Cpath d='M10 14h4'/%3E%3C/svg%3E"); }
.icon-users { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 24 24' fill='none' stroke='%232563eb' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='9' cy='7' r='4'/%3E%3Cpath d='M22 21v-2a4 4 0 0 0-3-3.9'/%3E%3Cpath d='M16 3.1a4 4 0 0 1 0 7.8'/%3E%3C/svg%3E"); }
.icon-trend { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 24 24' fill='none' stroke='%232563eb' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m3 17 6-6 4 4 8-8'/%3E%3Cpath d='M14 7h7v7'/%3E%3C/svg%3E"); }

.business-grid > div {
  display: flex;
  min-height: 120px;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  padding: 16px;
  color: var(--gray-700);
  font-weight: 500;
  text-align: center;
}
.business-grid .icon-badge {
  width: 64px;
  height: 64px;
  margin-bottom: 12px;
  background-color: var(--blue-50);
}
.check-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.check-list li {
  position: relative;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--gray-700);
}
.check-list li::before {
  content: "";
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  margin-top: 2px;
  background-color: var(--blue-600);
  border-radius: 9999px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m20 6-11 11-5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.check-list li::after { display: none; }

.cta-section {
  padding: 64px 0;
  color: var(--white);
  background: var(--blue-600);
}
.cta-section h2 {
  margin-bottom: 16px;
  color: var(--white);
}
.cta-section p {
  margin-bottom: 32px;
  color: var(--blue-100);
  font-size: 1.25rem;
}

.contact-grid { align-items: start; }
.contact-card {
  padding: 32px;
  background: var(--gray-50);
}
.contact-list {
  display: grid;
  gap: 16px;
  margin: 0;
}
.contact-list div {
  display: grid;
  gap: 2px;
}
.contact-list dt {
  color: var(--gray-900);
  font-weight: 500;
}
.contact-list dd { margin: 0; }
.contact-list a {
  color: var(--blue-600);
  text-decoration: none;
}
.contact-list a:hover { color: var(--blue-700); }
.inquiry-form {
  display: grid;
  gap: 24px;
}
.form-field {
  display: grid;
  gap: 8px;
}
label {
  color: var(--gray-700);
  font-size: 0.875rem;
  font-weight: 500;
}
input,
textarea {
  width: 100%;
  padding: 8px 16px;
  color: var(--gray-900);
  font: inherit;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-md);
  background: var(--white);
}
input:focus,
textarea:focus {
  outline: 2px solid var(--blue-600);
  outline-offset: 0;
  border-color: transparent;
}
.form-note {
  margin-bottom: 0;
  font-size: 0.875rem;
}
.form-alert {
  padding: 12px 16px;
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
}
.form-alert:empty { display: none; }
.form-alert-success {
  color: #065f46;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
}
.form-alert-error {
  color: #991b1b;
  background: #fef2f2;
  border: 1px solid #fecaca;
}
.field-validation {
  color: #991b1b;
  font-size: 0.875rem;
}
.contact-hp {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.site-footer {
  padding: 48px 0 0;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-bottom: 32px;
}
.site-footer h2 {
  margin-bottom: 8px;
  color: #1e3a8a;
  font-size: 1.125rem;
  font-weight: 650;
}
.footer-logo {
  width: 128px;
  height: auto;
  margin-bottom: 12px;
}
.site-footer p { margin-bottom: 16px; }
.site-footer address,
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: var(--gray-600);
  font-style: normal;
}
.site-footer address a {
  color: var(--gray-600);
  text-decoration: none;
}
.footer-bottom {
  padding: 32px 0;
  color: var(--gray-600);
  text-align: center;
  border-top: 1px solid var(--gray-200);
}
.footer-bottom p {
  margin-bottom: 0;
  font-size: 0.875rem;
}
.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 (min-width: 640px) {
  .container { width: min(1280px, calc(100% - 48px)); }
  .button-row { flex-direction: row; }
}

@media (min-width: 768px) {
  .nav-toggle { display: none; }
  .nav-links { display: flex; }
  .value-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .business-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .nav-links.is-open { display: flex; }
}

@media (min-width: 1024px) {
  .container { width: min(1280px, calc(100% - 64px)); }
  .section-large { padding: 128px 0; }
  .hero-grid,
  .split-grid,
  .contact-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-media { display: block; }
  .value-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .card-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  h1 { font-size: 3rem; line-height: 1; }
}

@media (max-width: 767.98px) {
  .nav-links {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 16px;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
  }
  .nav-links.is-open { display: flex; }
  .nav-links .button { width: 100%; }
}
