:root {
  --bg: #f5f7fb;
  --surface: #ffffff;
  --text: #1b2430;
  --muted: #536179;
  --brand: #1456d9;
  --brand-dark: #0b3ca0;
  --border: #dbe3f1;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
}

a {
  color: var(--brand);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(1080px, 92%);
  margin: 0 auto;
}

.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}

.brand {
  color: var(--text);
  font-weight: 700;
  font-size: 1.2rem;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1rem;
}

.nav-list a[aria-current="page"] {
  color: var(--brand-dark);
  font-weight: 700;
}

.hero {
  padding: 3.5rem 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  align-items: start;
}

.eyebrow {
  margin: 0 0 0.25rem;
  color: var(--brand-dark);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.85rem;
}

h1,
h2,
h3 {
  line-height: 1.2;
  margin-top: 0;
}

.lead {
  color: var(--muted);
  max-width: 70ch;
}

.hero-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem 1.25rem;
}

.hero-panel ul {
  padding-left: 1.1rem;
  margin: 0;
}

.button-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  border-radius: 8px;
  border: 1px solid var(--brand);
  padding: 0.65rem 1rem;
  font-weight: 700;
}

.btn:hover {
  text-decoration: none;
}

.btn-primary {
  background: var(--brand);
  color: #fff;
}

.btn-primary:hover {
  background: var(--brand-dark);
}

.btn-outline {
  color: var(--brand);
  background: transparent;
}

.section {
  padding: 2rem 0 3rem;
}

.section-tight {
  padding-bottom: 0.5rem;
}

.cards,
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.card,
.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem;
}

.price {
  font-size: 1.15rem;
  font-weight: 700;
}

.quote-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 1.25rem;
}

.quote-form {
  display: grid;
  gap: 0.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #b8c5df;
  border-radius: 6px;
  font: inherit;
  padding: 0.6rem 0.7rem;
}

.note {
  color: var(--muted);
  font-size: 0.95rem;
}

.form-feedback {
  margin: 0.25rem 0 0;
  color: var(--brand-dark);
  font-weight: 700;
  min-height: 1.3rem;
}

.site-footer {
  border-top: 1px solid var(--border);
  background: var(--surface);
}

.footer-wrap {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.back-link {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--brand);
  font-weight: 700;
}

.back-link:hover {
  text-decoration: underline;
}

.product-detail {
  max-width: 70ch;
}

.product-detail h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.product-detail ul {
  padding-left: 1.25rem;
}

.product-detail li {
  margin-bottom: 0.5rem;
}
@media (max-width: 820px) {
  .hero-grid,
  .quote-grid {
    grid-template-columns: 1fr;
  }

  .header-wrap {
    flex-direction: column;
    justify-content: center;
    padding: 0.7rem 0;
  }
}


.brand-block {
  margin-bottom: 2rem;
}

.brand-heading {
  margin: 0 0 0.75rem;
  font-size: 1.35rem;
  color: var(--brand-dark);
}
