:root {
  --navy: #132d69;
  --teal: #22c7d6;
  --text: #1d2433;
  --muted: #5d6678;
  --bg: #f5f7fb;
  --white: #ffffff;
  --border: #dde3ee;
  --shadow: 0 18px 50px rgba(10, 28, 61, 0.08);
  --radius: 18px;
  --max-width: 1100px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: var(--navy);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  display: block;
}

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

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

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand img {
  width: 58px;
  height: auto;
  border-radius: 8px;
}

.brand span {
  color: var(--navy);
}

.site-nav {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  flex-wrap: wrap;
}

.site-nav a {
  font-weight: 600;
}

.button,
button,
input[type="submit"] {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  border: 0;
  border-radius: 999px;
  padding: 0.9rem 1.35rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
}

.button.secondary {
  background: transparent;
  border: 2px solid var(--navy);
  color: var(--navy);
}

.button:hover,
button:hover,
input[type="submit"]:hover {
  text-decoration: none;
  opacity: 0.95;
}

.hero {
  padding: 4.5rem 0 3rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  font-size: 0.82rem;
}

h1,
h2,
h3 {
  color: var(--navy);
  line-height: 1.15;
  margin-top: 0;
}

h1 {
  font-size: clamp(2.3rem, 5vw, 4.1rem);
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  margin-bottom: 0.8rem;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 62ch;
}

.hero-card,
.card,
.highlight,
.contact-box,
.form-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 1.4rem;
}

.hero-card img {
  border-radius: 12px;
}

.actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.section {
  padding: 2.5rem 0;
}

.grid-3,
.grid-2 {
  display: grid;
  gap: 1.4rem;
}

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

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

.card {
  padding: 1.4rem;
}

.card p,
.highlight p,
.contact-box p {
  color: var(--muted);
}

.highlight {
  padding: 2rem;
}

.bullet-list {
  padding-left: 1.1rem;
  color: var(--muted);
}

.bullet-list li + li {
  margin-top: 0.55rem;
}

.page-hero {
  padding: 3rem 0 1.5rem;
}

.page-hero p {
  max-width: 70ch;
  color: var(--muted);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.5rem;
}

.contact-box,
.form-panel {
  padding: 1.5rem;
}

label {
  display: block;
  font-weight: 700;
  margin-bottom: 0.45rem;
  color: var(--navy);
}

input,
textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  border: 1px solid #cdd6e6;
  font: inherit;
  margin-bottom: 1rem;
}

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

.notice {
  font-size: 0.95rem;
  color: var(--muted);
}

.site-footer {
  margin-top: 3rem;
  border-top: 1px solid var(--border);
  background: var(--white);
}

.footer-inner {
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: var(--muted);
}

.footer-nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.small {
  font-size: 0.95rem;
}

@media (max-width: 860px) {
  .hero-grid,
  .grid-3,
  .grid-2,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    width: 100%;
  }

  .hero {
    padding-top: 3rem;
  }
}


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