:root {
  color-scheme: light;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: #18212f;
  background: #f6f8fb;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

.topbar {
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid #dbe2ea;
  display: flex;
  justify-content: space-between;
  padding: 18px clamp(20px, 5vw, 72px);
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand {
  align-items: center;
  display: flex;
  font-weight: 800;
  gap: 10px;
}

.brand-mark {
  align-items: center;
  background: #0f766e;
  border-radius: 8px;
  color: white;
  display: inline-flex;
  height: 34px;
  justify-content: center;
  letter-spacing: 0;
  width: 42px;
}

.nav-cta,
.primary,
.secondary,
button {
  align-items: center;
  border-radius: 8px;
  display: inline-flex;
  font-weight: 800;
  min-height: 44px;
  padding: 0 18px;
}

.nav-cta,
.primary,
button {
  background: #0f766e;
  border: 0;
  color: white;
}

.secondary {
  background: white;
  border: 1px solid #c9d5e1;
}

.hero {
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  min-height: calc(100vh - 76px);
  padding: clamp(48px, 7vw, 96px) clamp(20px, 5vw, 72px);
}

.hero-copy {
  align-self: center;
  max-width: 820px;
}

.eyebrow {
  color: #0f766e;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  margin: 0 0 14px;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.98;
  margin: 0;
  max-width: 950px;
}

.lead {
  color: #526173;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.65;
  margin: 24px 0 0;
  max-width: 760px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-panel {
  align-self: center;
  background:
    linear-gradient(145deg, rgba(15, 118, 110, 0.92), rgba(24, 33, 47, 0.94)),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.24), transparent 34%);
  border-radius: 8px;
  color: white;
  padding: clamp(22px, 4vw, 40px);
}

.metric span {
  color: rgba(255, 255, 255, 0.72);
  display: block;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.metric strong {
  display: block;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.15;
}

.category-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 34px;
}

.category-grid span {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 14px;
}

.process {
  background: #fff;
  border-block: 1px solid #dbe2ea;
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.process article {
  padding: 32px clamp(20px, 4vw, 48px);
}

.process span {
  color: #0f766e;
  font-weight: 900;
}

.process h2,
.inquiry h2 {
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.12;
  margin: 10px 0 12px;
}

.process p,
.inquiry p {
  color: #526173;
  line-height: 1.65;
}

.inquiry {
  display: grid;
  gap: 36px;
  grid-template-columns: minmax(260px, 0.75fr) minmax(320px, 1.25fr);
  padding: clamp(48px, 7vw, 88px) clamp(20px, 5vw, 72px);
}

form {
  background: #fff;
  border: 1px solid #dbe2ea;
  border-radius: 8px;
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: clamp(20px, 4vw, 32px);
}

label {
  color: #344256;
  display: grid;
  font-size: 14px;
  font-weight: 800;
  gap: 8px;
}

input,
select,
textarea {
  border: 1px solid #c9d5e1;
  border-radius: 8px;
  color: #18212f;
  font: inherit;
  min-height: 46px;
  padding: 12px 13px;
  width: 100%;
}

textarea,
button,
.form-note {
  grid-column: 1 / -1;
}

button {
  cursor: pointer;
  font: inherit;
  justify-content: center;
}

.form-note {
  font-size: 14px;
  margin: 0;
}

@media (max-width: 820px) {
  .hero,
  .inquiry,
  .process,
  form {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  h1 {
    font-size: 42px;
  }
}
