:root {
  --ink: #17202a;
  --muted: #5d6c7a;
  --line: #d8e0e8;
  --brand: #0d6b64;
  --accent: #c54623;
  --soft: #f4f7f8;
  --dark: #101820;
  --paper: #ffffff;
  --shadow: 0 18px 48px rgba(16, 24, 32, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  background: var(--paper);
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
.wrap { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.topbar { background: var(--dark); color: #dfe8ef; font-size: 13px; }
.topbar .wrap, header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.topbar .wrap { min-height: 38px; }
.topbar strong { color: #fff; }
header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid rgba(216, 224, 232, .85);
  backdrop-filter: blur(12px);
}
header .wrap { min-height: 74px; }
.logo { display: flex; align-items: center; gap: 12px; font-weight: 800; }
.logo-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), #1fa18d);
  border-radius: 8px;
  font-weight: 900;
}
.logo span:last-child { display: block; color: var(--muted); font-size: 12px; font-weight: 600; }
nav { display: flex; align-items: center; gap: 24px; color: #263645; font-size: 14px; font-weight: 700; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  color: #fff;
  background: var(--accent);
  border-radius: 6px;
  box-shadow: 0 10px 24px rgba(197, 70, 35, .22);
  font-weight: 800;
}
.subhero {
  color: #fff;
  background: linear-gradient(120deg, #0c151d 0%, #10262a 55%, #332014 100%);
}
.subhero .wrap {
  display: grid;
  grid-template-columns: 1fr .78fr;
  gap: 48px;
  min-height: 430px;
  align-items: center;
  padding: 70px 0;
}
.eyebrow {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 18px;
  padding: 6px 10px;
  color: #bfeee7;
  background: rgba(13, 107, 100, .28);
  border: 1px solid rgba(191, 238, 231, .26);
  border-radius: 5px;
  font-size: 13px;
  font-weight: 800;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.06;
}
.subhero p { max-width: 700px; color: #dce7ed; font-size: 18px; }
.hero-img {
  height: 300px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, .34);
}
section { padding: 76px 0; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 32px; margin-bottom: 30px; }
.section-head h2 { max-width: 690px; margin-bottom: 0; font-size: clamp(28px, 4vw, 42px); line-height: 1.18; }
.section-head p { max-width: 450px; margin-bottom: 0; color: var(--muted); }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.grid.two { grid-template-columns: repeat(2, 1fr); }
.card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(23, 32, 42, .06);
}
.card-media { height: 180px; background: #e9f0f2; }
.card-body { padding: 24px; }
.card h3 { margin-bottom: 10px; font-size: 22px; line-height: 1.25; }
.card p { color: var(--muted); font-size: 15px; }
.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.tag { padding: 5px 8px; color: #37515d; background: #eef4f5; border-radius: 4px; font-size: 12px; font-weight: 700; }
.band { background: var(--soft); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 42px; align-items: center; }
.panel {
  padding: 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.list { display: grid; gap: 12px; margin: 20px 0 0; padding: 0; list-style: none; }
.list li { display: grid; grid-template-columns: 26px 1fr; gap: 12px; color: #344453; }
.list li::before {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  color: #fff;
  background: var(--brand);
  border-radius: 50%;
  content: "✓";
  font-size: 13px;
  font-weight: 800;
}
.cta { color: #fff; background: linear-gradient(120deg, #0f2e30, #14202a 62%, #2c221c); }
.cta .wrap { display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.cta p { color: #d3dde3; margin-bottom: 0; }
footer { padding: 26px 0; color: #647386; background: #0f151b; font-size: 13px; }
footer .wrap { display: flex; justify-content: space-between; gap: 20px; }

@media (max-width: 920px) {
  nav { display: none; }
  .subhero .wrap, .grid, .grid.two, .split { grid-template-columns: 1fr 1fr; }
  .section-head { display: block; }
  .section-head p { margin-top: 12px; }
}
@media (max-width: 640px) {
  .wrap { width: min(100% - 28px, 1180px); }
  .topbar .wrap, footer .wrap, .cta .wrap { display: block; }
  .topbar .wrap { padding: 9px 0; }
  header .wrap { min-height: 66px; }
  .subhero .wrap, .grid, .grid.two, .split { grid-template-columns: 1fr; }
  .hero-img { height: 240px; }
  section { padding: 58px 0; }
}
