:root {
  --ink: #18212f;
  --muted: #5c6677;
  --line: #dde4ee;
  --paper: #f7f4ec;
  --surface: #ffffff;
  --saffron: #c86722;
  --green: #27765f;
  --blue: #284f7a;
}

* {
  box-sizing: border-box;
}

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

header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: linear-gradient(135deg, var(--saffron), var(--blue));
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.nav {
  max-width: 1120px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
  text-decoration: none;
  font-weight: 800;
}

.brand img {
  width: 74px;
  height: 74px;
  object-fit: contain;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

nav a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  padding: 8px 10px;
  border-radius: 6px;
}

nav a:hover,
nav a.active {
  background: rgba(255, 255, 255, 0.16);
}

.hero {
  min-height: 72vh;
  display: grid;
  align-items: end;
  background:
    linear-gradient(90deg, rgba(24, 33, 47, 0.94), rgba(24, 33, 47, 0.58)),
    url("images/Logo-transparent.png");
  background-size: cover, min(58vw, 560px);
  background-position: center, right 8% center;
  background-repeat: no-repeat;
  color: white;
}

.hero-inner,
.page-hero-inner,
main {
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
}

.hero-inner {
  padding: 72px 24px 92px;
}

.page-hero {
  color: white;
  background:
    linear-gradient(90deg, rgba(24, 33, 47, 0.94), rgba(40, 79, 122, 0.76)),
    url("images/Logo-transparent.png");
  background-size: cover, min(38vw, 360px);
  background-position: center, right 8% center;
  background-repeat: no-repeat;
}

.page-hero-inner {
  padding: 74px 24px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.12);
}

h1,
h2,
h3 {
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(42px, 7vw, 78px);
  line-height: 1.02;
}

h2 {
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
}

h3 {
  margin: 0 0 10px;
  font-size: 21px;
}

.hero p,
.page-hero p {
  max-width: 700px;
  margin: 22px 0 0;
  font-size: 19px;
  color: rgba(255, 255, 255, 0.9);
}

main {
  padding: 76px 24px;
}

.section-title {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-title p,
.card p,
.detail-list,
.form-note {
  color: var(--muted);
  margin: 0;
}

.grid-2,
.grid-3 {
  display: grid;
  gap: 18px;
}

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

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.card,
.contact-panel,
.form-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 12px 30px rgba(24, 33, 47, 0.06);
}

.stat strong {
  display: block;
  font-size: clamp(24px, 3vw, 34px);
  color: var(--blue);
  line-height: 1;
  margin-bottom: 8px;
  overflow-wrap: anywhere;
}

.icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 8px;
  color: white;
  font-weight: 900;
  background: var(--green);
}

.band {
  max-width: none;
  margin: 76px calc(50% - 50vw) 0;
  background: var(--ink);
  color: white;
}

.band-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 64px 24px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: center;
}

.band p {
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
  font-size: 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
}

.primary {
  color: white;
  background: var(--saffron);
}

.secondary {
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.48);
}

.detail-list {
  padding-left: 20px;
}

.detail-list li {
  margin: 7px 0;
}

.contact-panel a {
  color: var(--blue);
  font-weight: 700;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: start;
}

form {
  display: grid;
  gap: 16px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 10px 12px;
  color: var(--ink);
  background: white;
  font: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-weight: 400;
}

.consent input {
  width: auto;
  min-height: auto;
  margin-top: 6px;
}

.captcha-wrap {
  min-height: 78px;
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.response-panel {
  max-width: 760px;
  margin: 0 auto;
}

.response-panel h1 {
  color: var(--ink);
  font-size: clamp(32px, 5vw, 48px);
}

button {
  border: 0;
  cursor: pointer;
  font: inherit;
}

footer {
  padding: 28px 24px;
  text-align: center;
  color: var(--muted);
  background: white;
  border-top: 1px solid var(--line);
}

footer a {
  color: var(--blue);
  font-weight: 700;
}

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

  nav {
    justify-content: flex-start;
  }

  .grid-2,
  .grid-3,
  .band-inner,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  main {
    padding: 54px 20px;
  }

  .hero {
    min-height: 66vh;
  }

  .hero-inner,
  .page-hero-inner,
  .band-inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
