
:root {
  --blue: #426eb2;
  --dark: #16324a;
  --accent: #f2b84b;
  --light: #f6f8fb;
  --text: #26333d;
  --white: #ffffff;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--white);
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  background: var(--white);
  border-bottom: 1px solid #e5e9ef;
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 20px;
}

.brand img {
  width: 185px;
  height: auto;
  display: block;
}

nav {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}

nav a {
  color: var(--dark);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
}

.btn-small {
  background: var(--blue);
  color: var(--white) !important;
  padding: 8px 12px;
  border-radius: 999px;
}

.hero {
  background: linear-gradient(135deg, var(--blue), var(--dark));
  color: var(--white);
  padding: 78px 0;
}

.hero-grid, .split {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 36px;
  align-items: center;
}

.eyebrow {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 800;
  font-size: 14px;
}

.hero h1, .page-title h1 {
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.1;
  margin: 0 0 18px;
}

.hero p, .lead, .page-title p {
  font-size: 18px;
  max-width: 760px;
}

.hero-logo-card {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  padding: 18px;
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(0,0,0,.18);
}

.hero-logo-card img {
  width: 100%;
  display: block;
  border-radius: 12px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.btn, .btn-outline, button {
  display: inline-block;
  text-decoration: none;
  border: none;
  cursor: pointer;
  padding: 13px 20px;
  border-radius: 8px;
  font-weight: 800;
}

.btn, button {
  background: var(--accent);
  color: var(--dark);
}

.btn-outline {
  border: 2px solid var(--white);
  color: var(--white);
}

.section { padding: 68px 0; }
.alt { background: var(--light); }

.page-title {
  background: var(--light);
  padding: 58px 0;
}

.cards, .service-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 28px;
}

.service-list { grid-template-columns: repeat(2, 1fr); }

.card, .highlight {
  background: var(--white);
  border: 1px solid #e2e8ee;
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(15, 42, 61, .08);
}

.card h3, .highlight h3 {
  margin-top: 0;
  color: var(--dark);
}

.checklist { padding-left: 20px; }
.checklist li { margin: 8px 0; }

.cta {
  background: var(--dark);
  color: var(--white);
  padding: 58px 0;
  text-align: center;
}

.contact-form {
  display: grid;
  gap: 14px;
  background: var(--white);
  border: 1px solid #e2e8ee;
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(15, 42, 61, .08);
}

label {
  display: grid;
  gap: 6px;
  font-weight: 700;
}

input, textarea, select {
  width: 100%;
  padding: 12px;
  border: 1px solid #cdd7df;
  border-radius: 8px;
  font-size: 15px;
}

textarea { min-height: 120px; }

.note {
  font-size: 13px;
  color: #66737d;
}

footer {
  background: #091b28;
  color: var(--white);
  padding: 24px 0;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

@media (max-width: 850px) {
  .nav, nav, .footer-grid {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-grid, .split, .cards, .service-list {
    grid-template-columns: 1fr;
  }

  .hero { padding: 54px 0; }
  .brand img { width: 160px; }
}
