.apm-home-path-choice,
.apm-home-path-choice * {
  box-sizing: border-box;
  font-family: "Barlow", "Segoe UI", Arial, sans-serif;
}

.apm-home-path-choice {
  width: 100%;
  margin: 0;
  padding: 34px 24px 56px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.98) 0%, rgba(247, 250, 253, 0.96) 44%, rgba(244, 248, 252, 1) 100%);
  color: #001834;
}

.apm-home-path-choice-inner {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
}

/* HEADING */

.apm-home-path-choice-heading {
  text-align: center;
  margin-bottom: 28px;
}

.apm-home-path-choice-eyebrow {
  color: #001834;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.1px;
  line-height: 1.2;
  margin-bottom: 8px;
}

.apm-home-path-choice-title {
  margin: 0;
  color: #001834;
  font-size: 38px;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.8px;
}

/* GRID */

.apm-home-path-choice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */

.apm-home-path-card {
  min-height: 400px;
  padding: 32px 34px 28px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 24, 52, 0.09);
  border-radius: 12px;
  box-shadow:
    0 14px 35px rgba(0, 24, 52, 0.05),
    0 1px 2px rgba(0, 24, 52, 0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.apm-home-path-icon {
  width: 72px;
  height: 72px;
  margin-bottom: 25px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, rgba(18, 128, 143, 0.98), rgba(0, 104, 119, 1));
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 12px 26px rgba(0, 104, 119, 0.20),
    inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.apm-home-path-icon svg {
  width: 37px;
  height: 37px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.apm-home-path-card h3 {
  margin: 0 0 17px;
  color: #001834;
  font-size: 23px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.3px;
}

.apm-home-path-card p {
  margin: 0;
  color: #41516a;
  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;
}

/* LIST */

.apm-home-path-card ul {
  width: 100%;
  max-width: 225px;
  margin: 24px auto 28px;
  padding: 0;
  list-style: none;
  text-align: left;
}

.apm-home-path-card li {
  position: relative;
  margin: 0 0 12px;
  padding-left: 28px;
  color: #24344f;
  font-size: 15.5px;
  line-height: 1.3;
  font-weight: 500;
}

.apm-home-path-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  color: #006877;
  font-size: 15px;
  font-weight: 900;
}

/* BUTTON */

.apm-home-path-button {
  margin-top: auto;
  min-width: 210px;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 5px;
  background: linear-gradient(135deg, #007b8b 0%, #006877 100%);
  color: #ffffff !important;
  text-decoration: none !important;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  box-shadow:
    0 10px 24px rgba(0, 104, 119, 0.18),
    inset 0 0 0 1px rgba(255,255,255,0.08);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease;
}

.apm-home-path-button:hover {
  background: linear-gradient(135deg, #008b9d 0%, #007382 100%);
  transform: translateY(-1px);
  box-shadow:
    0 14px 28px rgba(0, 104, 119, 0.24),
    inset 0 0 0 1px rgba(255,255,255,0.10);
}

.apm-home-path-button span {
  font-size: 17px;
  line-height: 1;
}

/* RESPONSIVE */

@media (max-width: 1024px) {
  .apm-home-path-choice {
    padding: 34px 20px 48px;
  }

  .apm-home-path-choice-grid {
    gap: 22px;
  }

  .apm-home-path-card {
    padding: 30px 24px 26px;
  }

  .apm-home-path-choice-title {
    font-size: 34px;
  }

  .apm-home-path-card h3 {
    font-size: 21px;
  }
}

@media (max-width: 860px) {
  .apm-home-path-choice-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }

  .apm-home-path-card {
    min-height: auto;
  }
}

@media (max-width: 520px) {
  .apm-home-path-choice {
    padding: 30px 16px 42px;
  }

  .apm-home-path-choice-title {
    font-size: 30px;
  }

  .apm-home-path-choice-eyebrow {
    font-size: 12px;
  }

  .apm-home-path-icon {
    width: 64px;
    height: 64px;
  }

  .apm-home-path-icon svg {
    width: 32px;
    height: 32px;
  }

  .apm-home-path-button {
    width: 100%;
    min-width: 0;
  }
}