.hero {
  position: relative;
  display: grid;
  min-height: clamp(680px, 780px, 820px);
  align-items: center;
  padding-top: clamp(164px, 13vw, 190px);
  overflow: hidden;
  background: var(--color-white);
}

.hero::before {
  content: "";
  position: absolute;
  left: -14vw;
  bottom: -18vw;
  width: 42vw;
  min-width: 360px;
  aspect-ratio: 1;
  border: 1px solid var(--color-primary-soft);
  border-radius: 50%;
  background: rgba(232, 243, 247, 0.75);
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.99) 0%, rgba(245, 250, 253, 0.95) 30%, rgba(210, 230, 239, 0.5) 58%, rgba(3, 91, 127, 0.1) 100%);
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
}

.hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 1.2rem;
  align-content: center;
}

.hero__eyebrow {
  animation: heroFade 650ms ease 100ms both;
}

.hero h1 {
  animation: heroUp 780ms ease 180ms both;
}

.hero__lead {
  max-width: 610px;
  color: var(--color-text-muted);
  font-size: clamp(1.08rem, 1.08rem + 0.2rem, 1.3rem);
  animation: heroUp 780ms ease 280ms both;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  animation: heroUp 780ms ease 380ms both;
}

.hero__indicators {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
}

.hero__indicators li {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--color-text-muted);
  font-weight: 600;
}

.hero__indicators .icon {
  color: var(--color-primary);
}

.trust-strip {
  position: relative;
  z-index: 3;
  margin-top: -3rem;
}

.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 1.2rem;
  background: var(--color-white);
  box-shadow: 0 16px 42px rgba(41, 41, 41, 0.08);
}

.about-section {
  background: linear-gradient(180deg, var(--color-white), rgba(232, 243, 247, 0.42));
}

.about-section__image {
  position: relative;
  width: min(100%, 520px);
  justify-self: start;
}

.about-section__image::before {
  content: "";
  position: absolute;
  left: -1rem;
  top: 10%;
  width: 4px;
  height: 70%;
  border-radius: 999px;
  background: var(--color-primary);
}

.about-section__image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  max-height: 410px;
  border-radius: 10px;
  object-fit: cover;
  object-position: 52% center;
  box-shadow: 0 18px 46px rgba(41, 41, 41, 0.1);
}

.about-section__content {
  display: grid;
  gap: 0.75rem;
}

.about-section .split-layout {
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1fr);
  gap: clamp(1.1rem, 2.2vw, 2rem);
  align-items: center;
}

.about-section__content p:not(.eyebrow) {
  color: var(--color-text-muted);
}

.value-band {
  position: relative;
  overflow: hidden;
  color: var(--color-white);
  background: var(--color-primary-dark);
}

.value-band::after {
  content: "";
  position: absolute;
  right: -8rem;
  top: -8rem;
  width: 22rem;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
}

.value-band__inner {
  display: grid;
  grid-template-columns: 0.9fr 1.8fr;
  gap: 2rem;
  align-items: center;
  padding-block: clamp(2.5rem, 2.5rem + 1.8rem, 4.5rem);
}

.value-band h2,
.value-band h3 {
  color: var(--color-white);
}

.value-band p {
  color: rgba(255, 255, 255, 0.82);
}

.value-band__items {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.value-band .benefit-item {
  border-left: 1px solid rgba(255, 255, 255, 0.24);
  padding-left: 1.2rem;
  border-radius: 12px;
  padding-block: 0.75rem;
  padding-right: 0.8rem;
  transition: background 240ms ease, transform 240ms ease, box-shadow 240ms ease;
}

.value-band .benefit-item:hover {
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.12);
  transform: perspective(800px) translateY(-4px) rotateX(2deg);
}

.value-band .card-icon {
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

.needs-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.6fr);
  gap: 1.5rem;
  align-items: start;
}

.needs-card,
.sectors-panel,
.proof-card,
.values-card {
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: clamp(1.25rem, 1.25rem + 0.8rem, 2rem);
  background: var(--color-white);
  box-shadow: 0 12px 32px rgba(41, 41, 41, 0.05);
}

.needs-card p,
.proof-card p {
  color: var(--color-text-muted);
}

.process-section {
  background: rgba(232, 243, 247, 0.42);
}

.proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1.25rem;
}

.proof-card__highlight {
  margin-top: 1rem;
  color: var(--color-primary-dark);
  font-weight: 700;
}

.values-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.2rem;
}

.values-list span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  padding: 0.55rem 0.75rem;
  color: var(--color-primary-dark);
  background: var(--color-white);
  font-weight: 700;
}

.values-list .icon {
  width: 1rem;
  height: 1rem;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.4fr);
  gap: 2rem;
  align-items: start;
}

.contact-section {
  padding-top: 0;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding-block: 2rem;
  color: var(--color-white);
  background: var(--color-primary);
}

.final-cta::before,
.final-cta::after {
  content: "";
  position: absolute;
  width: 16rem;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
}

.final-cta::before {
  left: -6rem;
  bottom: -9rem;
}

.final-cta::after {
  right: -4rem;
  top: -10rem;
}

.final-cta__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.final-cta h2 {
  max-width: 760px;
  color: var(--color-white);
}

.final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

@keyframes heroFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes heroUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
