
:root {
  --green: #0f6a2c;
  --green-dark: #0b4f20;
  --green-soft: #dfe9e1;
  --text: #1f2937;
  --muted: #5b6470;
  --white: #ffffff;
  --shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
  --radius: 24px;
  --max: 1180px;
  --sand: #f7f1e3;
  --box-bg: #f7f1e3;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: #f5f7f6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(var(--max), calc(100% - 32px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(247,241,227,0.97);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(15,106,44,0.10);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 8px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand img {
  width: 78px;
  height: auto;
  object-fit: contain;
}
.brand-text h1 {
  margin: 0;
  font-size: 1rem;
  color: var(--green-dark);
  line-height: 1.1;
}
.brand-text p {
  margin: 3px 0 0;
  font-size: 0.8rem;
  color: var(--green-dark);
  line-height: 1.2;
}
.nav-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--green-dark);
  font-weight: 700;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 900px;
  background: url('../images/saluting-bg.png') center top / cover no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.75);
}
.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px 0 130px;
}
.hero-logo {
  width: min(240px, 36vw);
  margin: 0 auto 22px;
}
.hero h1 {
  margin: 0;
  font-size: clamp(2.7rem, 5.6vw, 5.2rem);
  line-height: 1.03;
  color: var(--green);
  font-weight: 800;
}
.subheadline {
  margin: 22px auto 0;
  max-width: 720px;
  color: #4f5661;
  font-size: clamp(1.2rem, 2.3vw, 1.75rem);
  line-height: 1.3;
}
.mini-divider {
  margin: 24px auto;
  width: 330px;
  max-width: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--green);
}
.mini-divider::before,
.mini-divider::after {
  content: "";
  display: block;
  height: 2px;
  background: rgba(15,106,44,0.25);
  flex: 1;
}
.mini-divider span { font-size: 1.2rem; letter-spacing: 6px; }
.lead {
  margin: 0 auto;
  max-width: 760px;
  font-size: clamp(1.45rem, 2.8vw, 1.95rem);
  line-height: 1.35;
  font-weight: 800;
  color: #1f1f1f;
}
.accent { color: var(--green); }
.body-copy {
  margin: 18px auto 0;
  max-width: 720px;
  color: #505863;
  font-size: 1.1rem;
  line-height: 1.55;
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  padding: 15px 24px;
  border-radius: 12px;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12); }
.btn-primary { background: var(--green); color: var(--white); border: 2px solid var(--green); }
.btn-secondary { background: var(--green); color: var(--white); border: 2px solid var(--green); }
.btn-nav { min-width: 170px; padding: 9px 16px; font-size: 0.95rem; }

.cards-section {
  margin-top: -88px;
  position: relative;
  z-index: 4;
}
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card,
.content-card,
.info-box,
.form-box,
.cta-box {
  background: var(--box-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.card { padding: 30px 24px; text-align: center; }
.icon-circle {
  width: 86px;
  height: 86px;
  margin: 0 auto 18px;
  border-radius: 999px;
  background: #e3efe5;
  display: grid;
  place-items: center;
  color: var(--green);
  font-size: 2rem;
}
.card h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
  line-height: 1.25;
  color: var(--green);
}
.card p { margin: 0; color: var(--muted); font-size: 1rem; line-height: 1.45; }

.section { padding: 84px 0; }
.section-soft { background: #eef4ef; }
.section-light {
  position: relative;
  background: url('../images/intake-bg.jpg') center center / cover no-repeat;
}
.section-light::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.75);
}
.section-light > .container {
  position: relative;
  z-index: 1;
}
.section-title {
  text-align: center;
  margin: 0 0 14px;
  color: var(--green-dark);
  font-size: clamp(2rem, 4vw, 3rem);
}
.section-copy {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
}
.two-col, .three-col, .four-col { display: grid; gap: 22px; }
.two-col { grid-template-columns: repeat(2, 1fr); }
.three-col { grid-template-columns: repeat(3, 1fr); }
.four-col { grid-template-columns: repeat(4, 1fr); }
.content-card, .info-box, .form-box { padding: 28px; }
.content-card h4, .info-box h4, .form-box h4 {
  margin: 0 0 10px;
  color: var(--green-dark);
  font-size: 1.2rem;
}
.content-card p, .info-box p { margin: 0; color: var(--muted); line-height: 1.6; }
.step-number {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: var(--green);
  color: white;
  display: grid;
  place-items: center;
  font-weight: 800;
  margin-bottom: 14px;
}
.form-wrap { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 24px; align-items: start; }
.info-box ul { margin: 16px 0 0; padding-left: 18px; color: var(--muted); line-height: 1.8; }
.military-logos {
  display: grid;
  grid-template-columns: repeat(6, 84px);
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin: 0 0 18px;
  padding: 0;
  background: transparent;
}
.military-logos img {
  width: 84px;
  height: 84px;
  object-fit: contain;
  display: block;
  background: transparent;
  justify-self: center;
}
.panel-logo { width: 160px; margin-bottom: 18px; }
.panel-logo-sm { width: 120px; margin: 0 auto 18px; }
.site-form { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
input, select, textarea {
  width: 100%;
  padding: 14px 15px;
  border-radius: 14px;
  border: 1px solid #d6dfd9;
  font: inherit;
  background: #fbfcfb;
}
textarea { grid-column: 1 / -1; min-height: 120px; resize: vertical; }
.full { grid-column: 1 / -1; }
.cta-box { padding: 34px; text-align: center; max-width: 900px; margin: 0 auto; }
.cta-actions { margin-top: 0; }
footer { background: var(--green); color: rgba(255,255,255,0.92); padding: 30px 0; text-align: center; }
.footer-inner { display: flex; flex-direction: column; align-items: center; }
.footer-logo { width: 70px; margin: 0 auto 14px; }
.footer-sub { margin-top: 8px; }

@media (max-width: 1024px) {
  .trust-grid, .three-col, .four-col, .two-col, .form-wrap { grid-template-columns: 1fr 1fr; }
  .four-col { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 780px) {
  .nav { flex-direction: column; align-items: flex-start; }
  .nav-links { gap: 12px; }
  .hero { min-height: auto; background-position: center; }
  .hero-content { padding-bottom: 110px; }
  .trust-grid, .three-col, .four-col, .two-col, .form-wrap { grid-template-columns: 1fr; }
  .site-form { grid-template-columns: 1fr; }
  .full { grid-column: auto; }
  .section { padding: 64px 0; }
  .cards-section { margin-top: -48px; }
  .brand img { width: 64px; }
  .brand-text h1 { font-size: 0.95rem; }
  .brand-text p { font-size: 0.74rem; }
  .military-logos img {
  width: 84px;
  height: 84px;
  object-fit: contain;
  display: block;
  background: transparent;
  justify-self: center;
}
}
