.page-hero {
  position: relative;
  color: var(--color-white);
  min-height: 50vh;
  padding: 6rem 1rem 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(5, 24, 47, 0.88), rgba(5, 24, 47, 0.35)) !important;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 2rem 0;
  text-align: left;
}

.eyebrow {
  color: #f29f05;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  margin-bottom: 0.8rem;
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.1;
  margin-bottom: 0.5rem;
  color: var(--color-white);
}

.page-hero p {
  max-width: 630px;
  font-size: 1.15rem;
  color: #e8f0ff;
  margin: 0 0 2rem;
}

.btn-light {
  background: #f29f05;
  color: #061b34;
}

.btn-light:hover {
  background: #ffc04a;
  color: #061b34;
}

.services-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  padding: 4rem 0 2rem;
  border-bottom: 1px solid var(--color-border);
}

.services-intro h2,
.section-heading h2,
.process-copy h2 {
  max-width: 600px;
  color: #092a4a;
  margin-bottom: 0;
}

.services-intro > p {
  margin: 0;
  font-size: 1.15rem;
}

.services-section {
  padding: 4rem 0 2rem;
}

.section-heading {
  margin-bottom: 2rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 340px;
  padding: 2.2rem;
  border-top: 4px solid #f29f05;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.service-card h3 {
  color: #092a4a;
  margin-bottom: 1rem;
  font-size: 1.55rem;
}

.service-card p {
  line-height: 1.7;
}

.service-number {
  color: #f29f05;
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.service-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  color: #526274;
}

.service-card li {
  padding: 0.55rem 0 0.55rem 1.2rem;
  border-bottom: 1px solid var(--color-border);
  position: relative;
}

.service-card li::before {
  content: '\2192';
  position: absolute;
  left: 0;
  color: #f29f05;
}

.service-card li:last-child {
  border-bottom: none;
}

.service-link {
  color: var(--color-primary);
  font-weight: 700;
  text-decoration: none;
  margin-top: auto;
}

.service-link span {
  margin-left: 0.45rem;
  transition: margin-left 0.2s ease;
}

.service-link:hover span {
  margin-left: 0.75rem;
}

.process-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  padding: 4rem 0;
  border-top: 1px solid var(--color-border);
}

.process-copy > p:last-child {
  max-width: 470px;
  margin-top: 1.4rem;
}

.process-list {
  display: grid;
  gap: 1.4rem;
}

.process-list div {
  display: grid;
  grid-template-columns: 3rem 1fr;
  column-gap: 1rem;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 1.2rem;
}

.process-list span {
  color: #f29f05;
  font-weight: 700;
}

.process-list h3 {
  color: #092a4a;
  margin: 0;
}

.process-list p {
  grid-column: 2;
  margin: 0.25rem 0 0;
}

/* CTA Section */
.cta-section {
  background-color: #092a4a;
  padding: 4rem 2rem;
  border-radius: 8px;
  margin: 2rem 0 4rem;
  border: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-section:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(9, 42, 74, 0.2);
}

.cta-section h2 {
  color: var(--color-white);
}

.cta-section p {
  color: #dce8f3;
}

.cta-section .eyebrow {
  color: #f29f05;
}

/* Responsive */
@media (max-width: 768px) {
  .services-intro,
  .process-section {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 1.5rem;
    min-height: 0;
  }
}
