:root {
  --navy: #1f3b5a;
  --charcoal: #2c3640;
  --off-white: #f4f5f3;
  --white: #ffffff;
  --muted-green: #6f8d76;
  --muted-green-dark: #5e7864;
  --border: #d4dadd;
  --text-soft: #55606c;
  --max-width: 1120px;
  --shadow-soft: 0 8px 26px rgba(31, 59, 90, 0.07);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Helvetica Neue", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--charcoal);
  background: var(--off-white);
  line-height: 1.6;
}

.container {
  width: min(92%, var(--max-width));
  margin: 0 auto;
}

.narrow {
  max-width: 760px;
}

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

.header-inner {
  min-height: 5.7rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand-wrap {
  display: inline-flex;
  align-items: center;
  color: inherit;
  text-decoration: none;
  min-width: 0;
}

.brand-logo-shell {
  width: clamp(13rem, 24vw, 17rem);
  overflow: hidden;
  border-radius: 0.25rem;
  line-height: 0;
}

.brand-logo {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center;
  transform: scale(1.03);
}

.nav-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-list a {
  text-decoration: none;
  color: var(--charcoal);
  font-weight: 600;
  font-size: 0.94rem;
}

.nav-list a:hover,
.nav-list a:focus-visible {
  color: var(--navy);
}

.section p + p {
  margin-top: 0.95rem;
}

.eyebrow {
  margin: 0;
  color: var(--muted-green-dark);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.8rem;
}

h1,
h2,
h3 {
  margin: 0 0 0.85rem;
  line-height: 1.25;
  color: var(--navy);
}

h1 {
  font-size: clamp(1.95rem, 4vw, 3rem);
  max-width: 19ch;
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
}

h3 {
  font-size: 1.15rem;
}

p {
  margin: 0;
}

.section {
  padding: 4.6rem 0;
}

.section-light {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.hero {
  padding-top: 5.9rem;
  padding-bottom: 5.9rem;
  background: linear-gradient(180deg, #eaf0f4 0%, var(--off-white) 100%);
}

.intro {
  margin-top: 1rem;
  max-width: 64ch;
  color: var(--text-soft);
  font-size: 1.08rem;
}

.hero-actions {
  margin-top: 1.8rem;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.button {
  display: inline-block;
  text-decoration: none;
  border-radius: 0.4rem;
  padding: 0.8rem 1.15rem;
  font-weight: 600;
  border: 1px solid transparent;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.button-primary {
  background: var(--muted-green);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(95, 120, 100, 0.22);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--muted-green-dark);
  box-shadow: 0 6px 16px rgba(95, 120, 100, 0.26);
}

.button-secondary {
  background: var(--white);
  color: var(--navy);
  border-color: var(--navy);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: #eef3f7;
}

.grid-3 {
  margin-top: 1.8rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 0.6rem;
  padding: 1.35rem;
  box-shadow: var(--shadow-soft);
}

.card p {
  color: var(--text-soft);
}

.steps {
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.steps li {
  background: #fafbfa;
  border: 1px solid var(--border);
  border-radius: 0.6rem;
  padding: 1.35rem;
}

.steps p {
  color: var(--text-soft);
}

.markets-list {
  margin: 0.6rem 0 0.8rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.01em;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

.contact-intro {
  max-width: 58ch;
  color: var(--text-soft);
}

.contact-note {
  margin-top: 1rem;
  font-weight: 600;
  color: var(--navy);
}

.contact-direct {
  margin-top: 0.65rem;
  font-size: 0.95rem;
  color: var(--text-soft);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.contact-direct a {
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
}

.contact-direct a:hover,
.contact-direct a:focus-visible {
  text-decoration: underline;
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 0.6rem;
  box-shadow: var(--shadow-soft);
  padding: 1.2rem;
  display: grid;
  gap: 0.65rem;
}

.contact-form label {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--charcoal);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.7rem 0.75rem;
  border: 1px solid #c8d1d5;
  border-radius: 0.35rem;
  font: inherit;
  color: var(--charcoal);
  background: #fcfdfc;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid #c9d7df;
  outline-offset: 1px;
}

.contact-form button {
  margin-top: 0.35rem;
}

.site-footer {
  padding: 1.4rem 0 1.5rem;
  background: var(--navy);
  color: #dfe6ed;
}

.footer-content {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 0.4rem;
}

.footer-copy {
  color: var(--white);
  font-weight: 500;
  letter-spacing: 0.02em;
  font-size: 0.95rem;
}

.footer-tagline {
  font-size: 0.92rem;
  color: #d0d9e2;
}

.footer-social {
  margin-top: 0.15rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.social-link {
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(223, 230, 237, 0.35);
  color: #dfe6ed;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.03);
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.social-link svg {
  width: 1rem;
  height: 1rem;
  display: block;
  fill: currentColor;
}

.social-link:hover,
.social-link:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(223, 230, 237, 0.75);
  color: #ffffff;
}

@media (max-width: 900px) {
  .section {
    padding: 3.75rem 0;
  }

  .header-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0.8rem 0;
  }

  .grid-3,
  .steps,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .nav-list {
    flex-wrap: wrap;
    gap: 0.7rem 0.95rem;
  }

  .hero {
    padding-top: 4.25rem;
    padding-bottom: 4.25rem;
  }

  .brand-logo-shell {
    width: clamp(11.5rem, 52vw, 13.5rem);
  }

  .button {
    width: 100%;
    text-align: center;
  }
}
