﻿:root {
  --blue: #164aa5;
  --blue-dark: #0b2f75;
  --ink: #171a22;
  --muted: #626a76;
  --line: #dfe4ec;
  --paper: #ffffff;
  --soft: #f4f7fb;
  --success: #0f766e;
  --shadow: 0 18px 50px rgba(18, 30, 56, 0.14);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(223, 228, 236, 0.8);
  backdrop-filter: blur(14px);
}

.nav {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand img {
  width: 210px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.96rem;
}

.nav-links a {
  text-decoration: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
  background: var(--blue-dark);
  box-shadow: 0 12px 24px rgba(22, 74, 165, 0.2);
}

.button.secondary {
  background: #fff;
  border-color: var(--line);
  color: var(--ink);
}

.button.secondary:hover {
  background: var(--soft);
  box-shadow: none;
}

.hero {
  min-height: clamp(620px, 84vh, 820px);
  display: grid;
  align-items: end;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: #0f172a;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(9, 20, 48, 0.82), rgba(9, 20, 48, 0.36) 42%, rgba(9, 20, 48, 0.04) 70%), url("teamfoto.jpeg");
  background-size: cover;
  background-position: center top;
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 160px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), #fff);
  z-index: -1;
}

.hero-content {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 120px 0 84px;
  color: #fff;
}

.eyebrow {
  margin: 0 0 14px;
  color: #d6e5ff;
  font-size: 0.92rem;
  font-weight: 800;
  text-transform: uppercase;
}

.team-copy .eyebrow,
.contact-card .eyebrow {
  color: var(--blue);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.55rem, 6vw, 5.5rem);
}

.hero-text {
  max-width: 620px;
  margin: 22px 0 0;
  font-size: clamp(1.08rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.92);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

main {
  background: #fff;
}

section {
  padding: 84px 0;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.section-head {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-head p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

h2 {
  color: var(--ink);
  font-size: clamp(2rem, 3.5vw, 3.25rem);
}

h3 {
  font-size: 1.2rem;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 42px;
  align-items: start;
}

.lead {
  font-size: 1.22rem;
  color: #303744;
  margin: 0;
}

.feature-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.feature {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.feature-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: var(--blue);
  color: #fff;
  font-weight: 900;
}

.notice {
  border: 1px solid var(--line);
  border-left: 5px solid var(--blue);
  border-radius: 8px;
  padding: 24px;
  background: var(--soft);
  box-shadow: var(--shadow);
}

.notice strong {
  display: block;
  margin-bottom: 8px;
}

.notice p {
  margin: 0;
  color: var(--muted);
}

.team-band {
  background: var(--soft);
}

.team-panel {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 46px;
  align-items: center;
}

.team-photo {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
  background: #dfe4ec;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.team-copy p {
  color: var(--muted);
  margin: 18px 0 0;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.stat {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.stat b {
  display: block;
  color: var(--blue);
  font-size: 1.55rem;
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 40px;
  align-items: start;
}

.contact-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  background: var(--soft);
}

.contact-card dl {
  margin: 22px 0 0;
  display: grid;
  gap: 16px;
}

.contact-card dt {
  color: var(--muted);
  font-size: 0.88rem;
}

.contact-card dd {
  margin: 3px 0 0;
  font-weight: 700;
}

.download-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

form {
  display: grid;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  background: #fff;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

label {
  display: grid;
  gap: 7px;
  color: #273041;
  font-weight: 700;
  font-size: 0.94rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cbd4e1;
  border-radius: 6px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

textarea {
  min-height: 132px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(22, 74, 165, 0.18);
  border-color: var(--blue);
}

.conditional {
  display: none;
  gap: 18px;
  padding-top: 2px;
}

.conditional.is-visible {
  display: grid;
}

.fieldset-title {
  margin: 10px 0 -2px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--blue-dark);
  font-size: 1.05rem;
  font-weight: 900;
}

.help-text {
  margin: -7px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-weight: 500;
}

.checkbox input {
  width: auto;
  margin-top: 5px;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-footer {
  padding: 36px 0;
  background: #111827;
  color: #fff;
}

.footer-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: #cbd5e1;
}

.footer-links a {
  text-decoration: none;
}

@media (max-width: 880px) {
  .nav {
    min-height: auto;
    padding: 14px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
    overflow-x: auto;
  }

  .hero {
    min-height: 720px;
    align-items: end;
  }

  .hero::before {
    background-image: linear-gradient(180deg, rgba(9, 20, 48, 0.2), rgba(9, 20, 48, 0.88) 64%), url("teamfoto.jpeg");
    background-position: 57% top;
  }

  .hero-content {
    padding: 160px 0 70px;
  }

  .intro-grid,
  .team-panel,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .team-panel {
    gap: 28px;
  }

  .stats,
  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  section {
    padding: 62px 0;
  }

  .brand img {
    width: 185px;
  }

  .nav-links {
    font-size: 0.9rem;
  }

    .hero-actions .button,
    .download-links .button,
    form .button {
      width: 100%;
    }

  .hero-actions,
  .download-links {
    flex-direction: column;
  }

  form,
  .contact-card,
  .notice {
    padding: 20px;
  }
}

