.hero {
  position: relative;
  min-height: 100vh;
  background:
    linear-gradient(rgba(5, 18, 23, 0.45), rgba(5, 18, 23, 0.72)),
    url("https://images.unsplash.com/photo-1500375592092-40eb2168fd21?auto=format&fit=crop&w=1600&q=80")
    center/cover no-repeat;
  display: flex;
  flex-direction: column;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 22%, rgba(127, 191, 159, 0.16), transparent 26%),
    radial-gradient(circle at 80% 28%, rgba(199, 228, 213, 0.10), transparent 22%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-width);
  margin: auto;
  padding: 0 32px 100px;
}

.eyebrow,
.section-tag {
  color: var(--accent-light);
  text-transform: uppercase;
  letter-spacing: 1.8px;
  font-size: 0.8rem;
  margin-bottom: 14px;
  font-weight: 700;
}

.hero-content h1 {
  max-width: 760px;
  font-size: 3.6rem;
  line-height: 1.08;
  margin-bottom: 20px;
}

.lead {
  max-width: 700px;
  font-size: 1.15rem;
  color: var(--text-soft);
  margin-bottom: 32px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.section,
.page-content {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 90px 32px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-heading h2,
.page-header h1,
.content-card h2 {
  line-height: 1.15;
}

.section-heading h2 {
  font-size: 2.3rem;
}

.page-header {
  margin-bottom: 40px;
}

.page-header h1 {
  font-size: 3rem;
  margin-bottom: 14px;
}

.page-header p,
.card p,
.reason-card p,
.content-card p {
  color: var(--text-soft);
}

.card-grid,
.team-grid,
.reason-grid,
.contact-layout {
  display: grid;
  gap: 24px;
}

.card-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  align-items: stretch;
}

.reason-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.contact-layout {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.highlight-section {
  padding-top: 0;
}

.highlight-box {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
}

.highlight-box h2 {
  font-size: 2rem;
  max-width: 700px;
  margin-bottom: 14px;
}

footer {
  text-align: center;
  padding: 28px 20px 36px;
  color: var(--text-muted);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 30px;
}