/* ============================= */
/* PAGE INTRO */
/* ============================= */

.page-intro {
  padding: 80px 0 40px;
  text-align: center;
}

.page-intro-title {
  margin: 0 0 24px;
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 500;
  line-height: 1.15;
  color: #111;
}

.page-intro-text {
  max-width: 760px;
  margin: 0 auto;
  font-family: "Inter", sans-serif;
  font-size: 1.05rem;
  line-height: 1.9;
  color: #5b6470;
}

/* ============================= */
/* FEATURE LIST SECTION */
/* ============================= */

.feature-list-section {
  padding: 100px 0 120px;
  background: #ffffff;
  padding-top: 15px;

}

.feature-list-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: stretch;
}

.feature-list-copy {
  max-width: 620px;
}

.feature-list-intro {
  margin: 0 0 34px;
  font-family: "Inter", sans-serif;
  font-size: 1.02rem;
  line-height: 1.85;
  color: #5b6470;
}

.feature-list {
  position: relative;
}

.feature-list::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: linear-gradient(
    to bottom,
    rgba(17,17,17,0.04),
    rgba(17,17,17,0.10),
    rgba(17,17,17,0.04)
  );
}

.benefit-card {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid rgba(17,17,17,0.06);
  transition: transform 0.25s ease, color 0.25s ease;
}

.benefit-card:hover {
  transform: translateX(6px);
}

.benefit-card:last-child {
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.benefit-card__icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(47, 87, 183, 0.10);
  color: #2f57b7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  margin-top: 2px;
  transition: background 0.25s ease, transform 0.25s ease;
}

.benefit-card:hover .benefit-card__icon {
  background: #2f57b7;
  color: #fff;
  transform: scale(1.05);
}

.benefit-card h3 {
  margin: 0 0 8px;
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.2;
  color: #111;
}

.benefit-card p {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 0.98rem;
  line-height: 1.75;
  color: #5b6470;
}

.service-media {
  display: flex;
  align-items: center;
}

.service-media img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  display: block;
  border-radius: 28px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.10);
}

/* .service-media--stacked {
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
}

.service-media--stacked img {
  width: 100%;
  display: block;
  border-radius: 28px;
} */

.benefits-cta {
  margin-top: 38px;
}

.benefits-cta-text {
  margin: 0 0 22px;
  font-family: "Inter", sans-serif;
  font-size: 1.02rem;
  line-height: 1.8;
  color: #4b5563;
}

.benefits-cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}


/* ============================= */
/* RETIREMENT HIGHLIGHTS SECTION */
/* ============================= */

.retirement-highlights-section {
  padding: 110px 0 120px;
  background: linear-gradient(to bottom, #f8f9fb 0%, #ffffff 100%);
  border-top: 1px solid rgba(17,17,17,0.05);
  border-bottom: 1px solid rgba(17,17,17,0.05);

}

.retirement-highlights__header {
  max-width: 820px;
  margin: 0 auto 64px;
  text-align: center;
}

.retirement-highlights__header h2 {
  margin: 0 0 24px;
  font-family: "Playfair Display", serif;
  font-size: clamp(2.4rem, 4vw, 4rem);
  font-weight: 500;
  line-height: 1.08;
  color: #111;
}

.retirement-highlights__intro {
  margin: 0 auto;
  max-width: 720px;
  font-family: "Inter", sans-serif;
  font-size: 1.04rem;
  line-height: 1.9;
  color: #5b6470;
}

.retirement-highlights__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.retirement-highlights__grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.retirement-highlight-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 30px 26px 28px;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.retirement-highlight-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.10);
}

.retirement-highlight-card:hover .retirement-highlight-card__icon {
  background: #2f57b7;
  color: #fff;
  transform: scale(1.05);
}

.retirement-highlight-card__icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  margin-bottom: 18px;
  background: rgba(47, 87, 183, 0.10);
  color: #2f57b7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.retirement-highlight-card h3 {
  margin: 0 0 12px;
  font-family: "Playfair Display", serif;
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1.2;
  color: #111;
}

.retirement-highlight-card p {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 0.97rem;
  line-height: 1.75;
  color: #5b6470;
  max-width: 260px;
}

.retirement-highlights__footer {
  max-width: 760px;
  margin: 42px auto 0;
  text-align: center;
}

.retirement-highlights__footer p {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  line-height: 1.85;
  color: #4b5563;
}

/* ============================= */
/* FINAL CTA */
/* ============================= */

.final-cta-section {
  padding: 110px 0 130px;
  background: linear-gradient(
    to bottom,
    #ffffff 0%,
    #f6f7f9 100%
  );
  text-align: center;
  border-top: 1px solid rgba(0,0,0,0.06);

}

.final-cta {
  max-width: 760px;
  margin: 0 auto;
}

.final-cta h2 {
  margin: 0 0 24px;
  font-family: "Playfair Display", serif;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 500;
  line-height: 1.1;
}

.final-cta-text {
  margin: 0 auto 34px;
  font-size: 1.05rem;
  line-height: 1.9;
  color: #5b6470;
}

.final-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================= */
/* RESPONSIVE - SERVICES PAGES */
/* ============================= */

@media (max-width: 1100px) {
  .page-intro {
    padding: 68px 0 34px;
  }

  .feature-list-section {
    padding: 84px 0 96px;
  }

  .feature-list-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .feature-list-copy {
    max-width: 100%;
  }

  .service-media--tall {
    height: auto;
  }

  .service-media--tall img {
    max-height: 560px;
    object-fit: cover;
  }

  .retirement-highlights-section {
    padding: 92px 0 100px;
  }

  .retirement-highlights__header {
    margin: 0 auto 48px;
  }

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

  .retirement-highlights__grid--three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .final-cta-section {
    padding: 92px 0 108px;
  }
}

@media (max-width: 768px) {
  .page-intro {
    padding: 56px 0 28px;
  }

  .page-intro-title {
    margin: 0 0 18px;
    font-size: clamp(1.9rem, 8vw, 2.5rem);
    line-height: 1.12;
  }

  .page-intro-text {
    font-size: 0.98rem;
    line-height: 1.75;
  }

  .feature-list-section {
    padding: 64px 0 76px;
  }

  .feature-list-grid {
    gap: 30px;
  }

  .feature-list-intro {
    margin: 0 0 24px;
    font-size: 0.98rem;
    line-height: 1.75;
  }

  .feature-list::before {
    left: 13px;
    top: 4px;
    bottom: 4px;
  }

  .benefit-card {
    grid-template-columns: 34px 1fr;
    gap: 14px;
    padding: 16px 0;
  }

  .benefit-card:hover {
    transform: none;
  }

  .benefit-card__icon {
    width: 28px;
    height: 28px;
    font-size: 0.85rem;
    margin-top: 1px;
  }

  .benefit-card h3 {
    margin: 0 0 6px;
    font-size: 1.15rem;
    line-height: 1.2;
  }

  .benefit-card p {
    font-size: 0.94rem;
    line-height: 1.65;
  }

  .service-media--tall img {
    border-radius: 22px;
    max-height: none;
  }

  .benefits-cta {
    margin-top: 28px;
  }

  .benefits-cta-text {
    margin: 0 0 18px;
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .benefits-cta-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .benefits-cta-buttons .hero-button,
  .benefits-cta-buttons .hero-button-outline {
    width: 100%;
    text-align: center;
  }

  .retirement-highlights-section {
    padding: 72px 0 82px;
  }

  .retirement-highlights__header {
    margin: 0 auto 36px;
  }

  .retirement-highlights__header h2 {
    margin: 0 0 18px;
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .retirement-highlights__intro {
    font-size: 0.98rem;
    line-height: 1.75;
  }

  .retirement-highlights__grid,
  .retirement-highlights__grid--three {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .retirement-highlight-card {
    border-radius: 20px;
    padding: 24px 20px 22px;
  }

  .retirement-highlight-card__icon {
    width: 42px;
    height: 42px;
    margin-bottom: 14px;
    font-size: 0.76rem;
  }

  .retirement-highlight-card h3 {
    margin: 0 0 10px;
    font-size: 1.22rem;
  }

  .retirement-highlight-card p {
    max-width: 100%;
    font-size: 0.94rem;
    line-height: 1.65;
  }

  .retirement-highlights__footer {
    margin: 28px auto 0;
  }

  .retirement-highlights__footer p {
    font-size: 0.96rem;
    line-height: 1.7;
  }

  .final-cta-section {
    padding: 74px 0 88px;
  }

  .final-cta h2 {
    margin: 0 0 18px;
    font-size: clamp(2rem, 8vw, 3rem);
    line-height: 1.08;
  }

  .final-cta-text {
    margin: 0 auto 24px;
    font-size: 0.98rem;
    line-height: 1.75;
  }

  .final-cta-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .final-cta-buttons .hero-button,
  .final-cta-buttons .hero-button-outline {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .page-intro {
    padding: 48px 0 24px;
  }

  .page-intro-title {
    font-size: clamp(1.75rem, 9vw, 2.2rem);
  }

  .feature-list-section {
    padding: 56px 0 66px;
    padding-top: 5px;
  }

  .feature-list::before {
    left: 11px;
  }

  .benefit-card {
    grid-template-columns: 30px 1fr;
    gap: 12px;
    padding: 14px 0;
  }

  .benefit-card__icon {
    width: 24px;
    height: 24px;
    font-size: 0.78rem;
  }

  .benefit-card h3 {
    font-size: 1.02rem;
  }

  .benefit-card p {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .benefits-cta-text {
    font-size: 0.94rem;
  }

  .retirement-highlights-section {
    padding: 64px 0 74px;
  }

  .retirement-highlight-card {
    padding: 22px 16px 20px;
  }

  .retirement-highlight-card h3 {
    font-size: 1.12rem;
  }

  .retirement-highlight-card p {
    font-size: 0.9rem;
  }

  .final-cta-section {
    padding: 66px 0 80px;
  }

  .final-cta-text {
    font-size: 0.94rem;
  }
}
